3 * @file mod/subthread.php
6 use Friendica\Core\Addon;
7 use Friendica\Core\L10n;
8 use Friendica\Core\System;
9 use Friendica\Database\DBM;
10 use Friendica\Model\Item;
12 require_once 'include/security.php';
13 require_once 'include/items.php';
15 function subthread_content(App $a) {
17 if(! local_user() && ! remote_user()) {
21 $activity = ACTIVITY_FOLLOW;
23 $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
25 $r = q("SELECT * FROM `item` WHERE `parent` = '%s' OR `parent-uri` = '%s' and parent = id LIMIT 1",
30 if(! $item_id || (! DBM::is_result($r))) {
31 logger('subthread: no item ' . $item_id);
37 $owner_uid = $item['uid'];
39 if(! can_write_wall($owner_uid)) {
46 // The top level post may have been written by somebody on another system
47 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
48 intval($item['contact-id']),
51 if (! DBM::is_result($r)) {
54 if (! $r[0]['self']) {
55 $remote_owner = $r[0];
60 // this represents the post owner on this system.
62 $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
63 WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
66 if (DBM::is_result($r))
70 logger('like: no owner');
75 $remote_owner = $owner;
79 // This represents the person posting
81 if ((local_user()) && (local_user() == $owner_uid)) {
84 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
85 intval($_SESSION['visitor_id']),
88 if (DBM::is_result($r))
95 $uri = item_new_uri($a->get_hostname(),$owner_uid);
97 $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status'));
98 $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
99 $link = xmlify('<link rel="alternate" type="text/html" href="' . System::baseUrl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
100 $body = $item['body'];
105 <type>$objtype</type>
107 <id>{$item['uri']}</id>
110 <content>$body</content>
113 $bodyverb = L10n::t('%1$s is following %2$s\'s %3$s');
115 if (! isset($bodyverb)) {
121 $arr['guid'] = get_guid(32);
123 $arr['uid'] = $owner_uid;
124 $arr['contact-id'] = $contact['id'];
125 $arr['type'] = 'activity';
126 $arr['wall'] = $item['wall'];
128 $arr['gravity'] = GRAVITY_LIKE;
129 $arr['parent'] = $item['id'];
130 $arr['parent-uri'] = $item['uri'];
131 $arr['thr-parent'] = $item['uri'];
132 $arr['owner-name'] = $remote_owner['name'];
133 $arr['owner-link'] = $remote_owner['url'];
134 $arr['owner-avatar'] = $remote_owner['thumb'];
135 $arr['author-name'] = $contact['name'];
136 $arr['author-link'] = $contact['url'];
137 $arr['author-avatar'] = $contact['thumb'];
139 $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
140 $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
141 $plink = '[url=' . System::baseUrl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
142 $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink );
144 $arr['verb'] = $activity;
145 $arr['object-type'] = $objtype;
146 $arr['object'] = $obj;
147 $arr['allow_cid'] = $item['allow_cid'];
148 $arr['allow_gid'] = $item['allow_gid'];
149 $arr['deny_cid'] = $item['deny_cid'];
150 $arr['deny_gid'] = $item['deny_gid'];
154 $post_id = Item::insert($arr);
156 if (!$item['visible']) {
157 Item::update(['visible' => true], ['id' => $item['id']]);
160 $arr['id'] = $post_id;
162 Addon::callHooks('post_local_end', $arr);