diff options
author | zotlabs <mike@macgirvin.com> | 2017-04-12 17:32:28 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-04-12 18:46:15 -0700 |
commit | 1c32564536cbfa12bd21a1c8161921b13d7dcc66 (patch) | |
tree | dd861e977bdf5883f952699e84e2b74b9d79f7cb /include | |
parent | 63dd6ad01a173d640e5c49dede1246dba840aa74 (diff) | |
download | volse-hubzilla-1c32564536cbfa12bd21a1c8161921b13d7dcc66.tar.gz volse-hubzilla-1c32564536cbfa12bd21a1c8161921b13d7dcc66.tar.bz2 volse-hubzilla-1c32564536cbfa12bd21a1c8161921b13d7dcc66.zip |
backend infrastructure for 'channel protection password'; which will be used to optionally encrypt export files and resolve channel/identity ownership/hijacking disputes
Diffstat (limited to 'include')
-rw-r--r-- | include/channel.php | 7 | ||||
-rw-r--r-- | include/import.php | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/channel.php b/include/channel.php index 7394b1308..890bb8bd6 100644 --- a/include/channel.php +++ b/include/channel.php @@ -538,6 +538,8 @@ function identity_basic_export($channel_id, $sections = null) { $ret['relocate'] = [ 'channel_address' => $r[0]['channel_address'], 'url' => z_root()]; if(in_array('channel',$sections)) { $ret['channel'] = $r[0]; + unset($ret['channel']['channel_password']); + unset($ret['channel']['channel_salt']); } } @@ -1999,7 +2001,10 @@ function channel_store_lowlevel($arr) { 'channel_deny_gid' => ((array_key_exists('channel_deny_gid',$arr)) ? $arr['channel_deny_gid'] : ''), 'channel_removed' => ((array_key_exists('channel_removed',$arr)) ? $arr['channel_removed'] : '0'), 'channel_system' => ((array_key_exists('channel_system',$arr)) ? $arr['channel_system'] : '0'), - 'channel_moved' => ((array_key_exists('channel_moved',$arr)) ? $arr['channel_moved'] : '') + + 'channel_moved' => ((array_key_exists('channel_moved',$arr)) ? $arr['channel_moved'] : ''), + 'channel_password' => ((array_key_exists('channel_password',$arr)) ? $arr['channel_password'] : ''), + 'channel_salt' => ((array_key_exists('channel_salt',$arr)) ? $arr['channel_salt'] : '') ]; diff --git a/include/import.php b/include/import.php index 9007dbe74..224bb1803 100644 --- a/include/import.php +++ b/include/import.php @@ -82,7 +82,7 @@ function import_channel($channel, $account_id, $seize) { 'channel_r_storage', 'channel_r_pages', 'channel_w_stream', 'channel_w_wall', 'channel_w_comment', 'channel_w_mail', 'channel_w_like', 'channel_w_tagwall', 'channel_w_chat', 'channel_w_storage', 'channel_w_pages', 'channel_a_republish', - 'channel_a_delegate', 'perm_limits' + 'channel_a_delegate', 'perm_limits', 'channel_password', 'channel_salt' ]; $clean = array(); |