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",
67 if (DBM::is_result($r)) {
72 logger('like: no owner');
76 if (! $remote_owner) {
77 $remote_owner = $owner;
81 // This represents the person posting
83 if ((local_user()) && (local_user() == $owner_uid)) {
86 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
87 intval($_SESSION['visitor_id']),
91 if (DBM::is_result($r)) {
99 $uri = item_new_uri($a->get_hostname(),$owner_uid);
101 $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status'));
102 $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
103 $link = xmlify('<link rel="alternate" type="text/html" href="' . System::baseUrl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
104 $body = $item['body'];
109 <type>$objtype</type>
111 <id>{$item['uri']}</id>
114 <content>$body</content>
117 $bodyverb = L10n::t('%1$s is following %2$s\'s %3$s');
119 if (! isset($bodyverb)) {
125 $arr['guid'] = get_guid(32);
127 $arr['uid'] = $owner_uid;
128 $arr['contact-id'] = $contact['id'];
129 $arr['type'] = 'activity';
130 $arr['wall'] = $item['wall'];
132 $arr['gravity'] = GRAVITY_LIKE;
133 $arr['parent'] = $item['id'];
134 $arr['parent-uri'] = $item['uri'];
135 $arr['thr-parent'] = $item['uri'];
136 $arr['owner-name'] = $remote_owner['name'];
137 $arr['owner-link'] = $remote_owner['url'];
138 $arr['owner-avatar'] = $remote_owner['thumb'];
139 $arr['author-name'] = $contact['name'];
140 $arr['author-link'] = $contact['url'];
141 $arr['author-avatar'] = $contact['thumb'];
143 $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
144 $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
145 $plink = '[url=' . System::baseUrl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
146 $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink );
148 $arr['verb'] = $activity;
149 $arr['object-type'] = $objtype;
150 $arr['object'] = $obj;
151 $arr['allow_cid'] = $item['allow_cid'];
152 $arr['allow_gid'] = $item['allow_gid'];
153 $arr['deny_cid'] = $item['deny_cid'];
154 $arr['deny_gid'] = $item['deny_gid'];
158 $post_id = Item::insert($arr);
160 if (!$item['visible']) {
161 Item::update(['visible' => true], ['id' => $item['id']]);
164 $arr['id'] = $post_id;
166 Addon::callHooks('post_local_end', $arr);