diff options
author | friendica <info@friendica.com> | 2014-10-03 16:51:22 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-03 16:51:22 -0700 |
commit | ec604a41582d9bd8b659d690c895eb6271b09310 (patch) | |
tree | 0b25a6cabc023c61bda56a5ad53fab10e4f5a906 /mod | |
parent | e2f45a76b1e63152c80601daeae9782fac858fcb (diff) | |
download | volse-hubzilla-ec604a41582d9bd8b659d690c895eb6271b09310.tar.gz volse-hubzilla-ec604a41582d9bd8b659d690c895eb6271b09310.tar.bz2 volse-hubzilla-ec604a41582d9bd8b659d690c895eb6271b09310.zip |
more infrastructure for sharing page design elements
Diffstat (limited to 'mod')
-rw-r--r-- | mod/impel.php | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/mod/impel.php b/mod/impel.php index 360f994fc..3c29d7cdb 100644 --- a/mod/impel.php +++ b/mod/impel.php @@ -27,12 +27,15 @@ function impel_init(&$a) { switch($j['type']) { case 'webpage': $arr['item_restrict'] = ITEM_WEBPAGE; + $namespace = 'WEBPAGE'; break; case 'block': $arr['item_restrict'] = ITEM_BUILDBLOCK; + $namespace = 'BUILDBLOCK'; break; case 'layout': $arr['item_restrict'] = ITEM_PDL; + $namespace = 'PDL'; break; default: logger('mod_impel: unrecognised element type' . print_r($j,true)); @@ -47,6 +50,19 @@ function impel_init(&$a) { $arr['author_xchan'] = (($j['author_xchan']) ? $j['author_xchan'] : $get_observer_hash()); $arr['mimetype'] = (($j['mimetype']) ? $j['mimetype'] : 'text/bbcode'); + if(! $j['mid']) + $j['mid'] = item_message_id(); + + $arr['mid'] = $arr['parent_mid'] = $j['mid']; + + + if($j['pagetitle']) { + require_once('library/urlify/URLify.php'); + $pagetitle = strtolower(URLify::transliterate($j['pagetitle'])); + } + + + $channel = get_channel(); @@ -64,7 +80,33 @@ function impel_init(&$a) { } } - $x = item_store($arr,$execflag); + $remote_id = 0; + + $z = q("select * from item_id where $sid = '%s' and service = '%s' and uid = %d limit 1", + dbesc($pagetitle), + dbesc($namespace), + intval(local_user()) + ); + $i = q("select id from item where mid = '%s' and $uid = %d limit 1", + dbesc($arr['mid']), + intval(local_user()) + ); + if($z && $i) { + $remote_id = $z[0]['id']; + $arr['id'] = $i[0]['id']; + $x = item_store_update($arr,$execflag); + } + else { + $x = item_store($arr,$execflag); + } + if($x['success']) + $item_id = $x['item_id']; + + $channel = get_channel(); + + update_remote_id($channel,$item_id,$arr['item_restrict'],$pagetitle,$namespace,$remote_id,$arr['mid']); + + $ret['success'] = true; json_return_and_die(true); |