diff options
author | friendica <info@friendica.com> | 2014-06-17 17:34:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-06-17 17:34:51 -0700 |
commit | dafd3a9e43dbcde07fb900c27cb7f386a40900ce (patch) | |
tree | 595ac46b93c05da7fd69040960f3c09645eccb41 /include/zot.php | |
parent | 70b99ee23bbe88f4ff1cc231a87f9e53d27ff6fb (diff) | |
download | volse-hubzilla-dafd3a9e43dbcde07fb900c27cb7f386a40900ce.tar.gz volse-hubzilla-dafd3a9e43dbcde07fb900c27cb7f386a40900ce.tar.bz2 volse-hubzilla-dafd3a9e43dbcde07fb900c27cb7f386a40900ce.zip |
sync profiles to nomadic clones
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/include/zot.php b/include/zot.php index 00cfa62a9..65d2a6f13 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2254,6 +2254,45 @@ function process_channel_sync_delivery($sender,$arr,$deliveries) { } } } + + if(array_key_exists('profile',$arr) && is_array($arr['profile']) && count($arr['profile'])) { + + $disallowed = array('id','aid','uid'); + + foreach($arr['profile'] as $profile) { + $x = q("select * from profile where profile_guid = '%s' and uid = %d limit 1", + dbesc($profile['profile_guid']), + intval($channel['channel_id']) + ); + if(! $x) { + q("insert into profile ( profile_guid, aid, uid ) values ('%s', %d, %d)", + dbesc($profile['profile_guid']), + intval($channel['channel_account_id']), + intval($channel['channel_id']) + ); + $x = q("select * from profile where profile_guid = '%s' and uid = %d limit 1", + dbesc($profile['profile_guid']), + intval($channel['channel_id']) + ); + if(! $x) + continue; + } + $clean = array(); + foreach($profile as $k => $v) { + if(in_array($k,$disallowed)) + continue; + $clean[$k] = $v; + // TODO - check if these are allowed, otherwise we'll error + } + if(count($clean)) { + foreach($clean as $k => $v) { + $r = dbq("UPDATE profile set " . dbesc($k) . " = '" . dbesc($v) + . "' where profile_guid = '" . dbesc($profile['profile_guid']) . "' and uid = " . intval($channel['channel_id']) + . " limit 1"); + } + } + } + } $result[] = array($d['hash'],'channel sync updated',$channel['channel_name'],''); |