]> git.mxchange.org Git - friendica.git/blob - mod/subthread.php
Docs: add a note on adding `use` on theme.php
[friendica.git] / mod / subthread.php
1 <?php
2 /**
3  * @file mod/subthread.php
4  */
5 use Friendica\App;
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;
11
12 require_once 'include/security.php';
13 require_once 'include/items.php';
14
15 function subthread_content(App $a) {
16
17         if(! local_user() && ! remote_user()) {
18                 return;
19         }
20
21         $activity = ACTIVITY_FOLLOW;
22
23         $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0);
24
25         $r = q("SELECT * FROM `item` WHERE `parent` = '%s' OR `parent-uri` = '%s' and parent = id LIMIT 1",
26                 dbesc($item_id),
27                 dbesc($item_id)
28         );
29
30         if(! $item_id || (! DBM::is_result($r))) {
31                 logger('subthread: no item ' . $item_id);
32                 return;
33         }
34
35         $item = $r[0];
36
37         $owner_uid = $item['uid'];
38
39         if(! can_write_wall($owner_uid)) {
40                 return;
41         }
42
43         $remote_owner = null;
44
45         if(! $item['wall']) {
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']),
49                         intval($item['uid'])
50                 );
51                 if (! DBM::is_result($r)) {
52                         return;
53                 }
54                 if (! $r[0]['self']) {
55                         $remote_owner = $r[0];
56                 }
57         }
58
59         $owner = null;
60         // this represents the post owner on this system.
61
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",
64                 intval($owner_uid)
65         );
66         if (DBM::is_result($r))
67                 $owner = $r[0];
68
69         if (! $owner) {
70                 logger('like: no owner');
71                 return;
72         }
73
74         if (! $remote_owner)
75                 $remote_owner = $owner;
76
77
78         $contact = null;
79         // This represents the person posting
80
81         if ((local_user()) && (local_user() == $owner_uid)) {
82                 $contact = $owner;
83         } else {
84                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
85                         intval($_SESSION['visitor_id']),
86                         intval($owner_uid)
87                 );
88                 if (DBM::is_result($r))
89                         $contact = $r[0];
90         }
91         if (! $contact) {
92                 return;
93         }
94
95         $uri = item_new_uri($a->get_hostname(),$owner_uid);
96
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'];
101
102         $obj = <<< EOT
103
104         <object>
105                 <type>$objtype</type>
106                 <local>1</local>
107                 <id>{$item['uri']}</id>
108                 <link>$link</link>
109                 <title></title>
110                 <content>$body</content>
111         </object>
112 EOT;
113         $bodyverb = L10n::t('%1$s is following %2$s\'s %3$s');
114
115         if (! isset($bodyverb)) {
116                 return;
117         }
118
119         $arr = [];
120
121         $arr['guid'] = get_guid(32);
122         $arr['uri'] = $uri;
123         $arr['uid'] = $owner_uid;
124         $arr['contact-id'] = $contact['id'];
125         $arr['type'] = 'activity';
126         $arr['wall'] = $item['wall'];
127         $arr['origin'] = 1;
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'];
138
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 );
143
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'];
151         $arr['visible'] = 1;
152         $arr['unseen'] = 1;
153
154         $post_id = Item::insert($arr);
155
156         if (!$item['visible']) {
157                 Item::update(['visible' => true], ['id' => $item['id']]);
158         }
159
160         $arr['id'] = $post_id;
161
162         Addon::callHooks('post_local_end', $arr);
163
164         killme();
165
166 }
167
168