]> git.mxchange.org Git - friendica.git/blob - include/like.php
Continued a bit:
[friendica.git] / include / like.php
1 <?php
2 require_once("include/diaspora.php");
3
4 /**
5  * @brief add/remove activity to an item
6  *
7  * Toggle activities as like,dislike,attend of an item
8  *
9  * @param string $item_id
10  * @param string $verb
11  *              Activity verb. One of
12  *                      like, unlike, dislike, undislike, attendyes, unattendyes,
13  *                      attendno, unattendno, attendmaybe, unattendmaybe
14  * @hook 'post_local_end'
15  *              array $arr
16  *                      'post_id' => ID of posted item
17  */
18 function do_like($item_id, $verb) {
19         $a = get_app();
20
21         if(! local_user() && ! remote_user()) {
22                 return false;
23         }
24
25         switch($verb) {
26                 case 'like':
27                 case 'unlike':
28                         $activity = ACTIVITY_LIKE;
29                         break;
30                 case 'dislike':
31                 case 'undislike':
32                         $activity = ACTIVITY_DISLIKE;
33                         break;
34                 case 'attendyes':
35                 case 'unattendyes':
36                         $activity = ACTIVITY_ATTEND;
37                         break;
38                 case 'attendno':
39                 case 'unattendno':
40                         $activity = ACTIVITY_ATTENDNO;
41                         break;
42                 case 'attendmaybe':
43                 case 'unattendmaybe':
44                         $activity = ACTIVITY_ATTENDMAYBE;
45                         break;
46                 default:
47                         return false;
48                         break;
49         }
50
51
52         logger('like: verb ' . $verb . ' item ' . $item_id);
53
54
55         $r = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
56                 dbesc($item_id),
57                 dbesc($item_id)
58         );
59
60         if(! $item_id || (! dbm::is_result($r))) {
61                 logger('like: no item ' . $item_id);
62                 return false;
63         }
64
65         $item = $r[0];
66
67         $owner_uid = $item['uid'];
68
69         if(! can_write_wall($a,$owner_uid)) {
70                 return false;
71         }
72
73         $remote_owner = null;
74
75         if(! $item['wall']) {
76                 // The top level post may have been written by somebody on another system
77                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
78                         intval($item['contact-id']),
79                         intval($item['uid'])
80                 );
81                 if (! dbm::is_result($r)) {
82                         return false;
83                 }
84                 if(! $r[0]['self'])
85                         $remote_owner = $r[0];
86         }
87
88         // this represents the post owner on this system.
89
90         $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
91                 WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
92                 intval($owner_uid)
93         );
94         if (dbm::is_result($r))
95                 $owner = $r[0];
96
97         if(! $owner) {
98                 logger('like: no owner');
99                 return false;
100         }
101
102         if(! $remote_owner)
103                 $remote_owner = $owner;
104
105
106         // This represents the person posting
107
108         if((local_user()) && (local_user() == $owner_uid)) {
109                 $contact = $owner;
110         }
111         else {
112                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
113                         intval($_SESSION['visitor_id']),
114                         intval($owner_uid)
115                 );
116                 if (dbm::is_result($r))
117                         $contact = $r[0];
118         }
119         if(! $contact) {
120                 return false;
121         }
122
123
124         $verbs = " '".dbesc($activity)."' ";
125
126         // event participation are essentially radio toggles. If you make a subsequent choice,
127         // we need to eradicate your first choice.
128         if($activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE) {
129                 $verbs = " '" . dbesc(ACTIVITY_ATTEND) . "','" . dbesc(ACTIVITY_ATTENDNO) . "','" . dbesc(ACTIVITY_ATTENDMAYBE) . "' ";
130         }
131
132         $r = q("SELECT `id`, `guid` FROM `item` WHERE `verb` IN ( $verbs ) AND `deleted` = 0
133                 AND `contact-id` = %d AND `uid` = %d
134                 AND (`parent` = '%s' OR `parent-uri` = '%s' OR `thr-parent` = '%s') LIMIT 1",
135                 intval($contact['id']), intval($owner_uid),
136                 dbesc($item_id), dbesc($item_id), dbesc($item['uri'])
137         );
138
139         if (dbm::is_result($r)) {
140                 $like_item = $r[0];
141
142                 // Already voted, undo it
143                 $r = q("UPDATE `item` SET `deleted` = 1, `unseen` = 1, `changed` = '%s' WHERE `id` = %d",
144                         dbesc(datetime_convert()),
145                         intval($like_item['id'])
146                 );
147
148
149                 // Clean up the Diaspora signatures for this like
150                 // Go ahead and do it even if Diaspora support is disabled. We still want to clean up
151                 // if it had been enabled in the past
152                 $r = q("DELETE FROM `sign` WHERE `iid` = %d",
153                         intval($like_item['id'])
154                 );
155
156                 $like_item_id = $like_item['id'];
157                 proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $like_item_id);
158
159                 return true;
160         }
161
162         $uri = item_new_uri($a->get_hostname(),$owner_uid);
163
164         $post_type = (($item['resource-id']) ? t('photo') : t('status'));
165         if($item['object-type'] === ACTIVITY_OBJ_EVENT)
166                 $post_type = t('event');
167         $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
168         $link = xmlify('<link rel="alternate" type="text/html" href="' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
169         $body = $item['body'];
170
171         $obj = <<< EOT
172
173         <object>
174                 <type>$objtype</type>
175                 <local>1</local>
176                 <id>{$item['uri']}</id>
177                 <link>$link</link>
178                 <title></title>
179                 <content>$body</content>
180         </object>
181 EOT;
182         if($verb === 'like')
183                 $bodyverb = t('%1$s likes %2$s\'s %3$s');
184         if($verb === 'dislike')
185                 $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
186         if($verb === 'attendyes')
187                 $bodyverb = t('%1$s is attending %2$s\'s %3$s');
188         if($verb === 'attendno')
189                 $bodyverb = t('%1$s is not attending %2$s\'s %3$s');
190         if($verb === 'attendmaybe')
191                 $bodyverb = t('%1$s may attend %2$s\'s %3$s');
192
193         if(! isset($bodyverb))
194                         return false;
195
196         $arr = array();
197
198         $arr['guid'] = get_guid(32);
199         $arr['uri'] = $uri;
200         $arr['uid'] = $owner_uid;
201         $arr['contact-id'] = $contact['id'];
202         $arr['type'] = 'activity';
203         $arr['wall'] = $item['wall'];
204         $arr['origin'] = 1;
205         $arr['gravity'] = GRAVITY_LIKE;
206         $arr['parent'] = $item['id'];
207         $arr['parent-uri'] = $item['uri'];
208         $arr['thr-parent'] = $item['uri'];
209         $arr['owner-name'] = $remote_owner['name'];
210         $arr['owner-link'] = $remote_owner['url'];
211         $arr['owner-avatar'] = $remote_owner['thumb'];
212         $arr['author-name'] = $contact['name'];
213         $arr['author-link'] = $contact['url'];
214         $arr['author-avatar'] = $contact['thumb'];
215
216         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
217         $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
218         $plink = '[url=' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
219         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
220
221         $arr['verb'] = $activity;
222         $arr['object-type'] = $objtype;
223         $arr['object'] = $obj;
224         $arr['allow_cid'] = $item['allow_cid'];
225         $arr['allow_gid'] = $item['allow_gid'];
226         $arr['deny_cid'] = $item['deny_cid'];
227         $arr['deny_gid'] = $item['deny_gid'];
228         $arr['visible'] = 1;
229         $arr['unseen'] = 1;
230         $arr['last-child'] = 0;
231
232         $post_id = item_store($arr);
233
234         if(! $item['visible']) {
235                 $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
236                         intval($item['id']),
237                         intval($owner_uid)
238                 );
239         }
240
241
242         // Save the author information for the like in case we need to relay to Diaspora
243         diaspora::store_like_signature($contact, $post_id);
244
245         $arr['id'] = $post_id;
246
247         call_hooks('post_local_end', $arr);
248
249         proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id);
250
251         return true;
252 }