2 require_once("include/diaspora.php");
5 * @brief add/remove activity to an item
7 * Toggle activities as like,dislike,attend of an item
9 * @param string $item_id
11 * Activity verb. One of
12 * like, unlike, dislike, undislike, attendyes, unattendyes,
13 * attendno, unattendno, attendmaybe, unattendmaybe
14 * @hook 'post_local_end'
16 * 'post_id' => ID of posted item
18 function do_like($item_id, $verb) {
21 if(! local_user() && ! remote_user()) {
28 $activity = ACTIVITY_LIKE;
32 $activity = ACTIVITY_DISLIKE;
36 $activity = ACTIVITY_ATTEND;
40 $activity = ACTIVITY_ATTENDNO;
44 $activity = ACTIVITY_ATTENDMAYBE;
51 logger('like: verb ' . $verb . ' item ' . $item_id);
53 $r = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
58 if(! $item_id || (! dbm::is_result($r))) {
59 logger('like: no item ' . $item_id);
65 $owner_uid = $item['uid'];
67 if (! can_write_wall($a,$owner_uid)) {
74 // The top level post may have been written by somebody on another system
75 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
76 intval($item['contact-id']),
79 if (! dbm::is_result($r)) {
82 if (! $r[0]['self']) {
83 $remote_owner = $r[0];
87 // this represents the post owner on this system.
89 $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
90 WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
93 if (dbm::is_result($r)) {
98 logger('like: no owner');
102 if (! $remote_owner) {
103 $remote_owner = $owner;
106 // This represents the person posting
108 if ((local_user()) && (local_user() == $owner_uid)) {
111 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
112 intval($_SESSION['visitor_id']),
115 if (dbm::is_result($r)) {
124 $verbs = " '".dbesc($activity)."' ";
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) . "' ";
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'])
139 if (dbm::is_result($r)) {
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'])
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'])
156 $like_item_id = $like_item['id'];
157 proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $like_item_id);
162 $uri = item_new_uri($a->get_hostname(),$owner_uid);
164 $post_type = (($item['resource-id']) ? t('photo') : t('status'));
165 if ($item['object-type'] === ACTIVITY_OBJ_EVENT) {
166 $post_type = t('event');
168 $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
169 $link = xmlify('<link rel="alternate" type="text/html" href="' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
170 $body = $item['body'];
175 <type>$objtype</type>
177 <id>{$item['uri']}</id>
180 <content>$body</content>
183 if ($verb === 'like') {
184 $bodyverb = t('%1$s likes %2$s\'s %3$s');
186 if ($verb === 'dislike') {
187 $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
189 if ($verb === 'attendyes') {
190 $bodyverb = t('%1$s is attending %2$s\'s %3$s');
192 if ($verb === 'attendno') {
193 $bodyverb = t('%1$s is not attending %2$s\'s %3$s');
195 if ($verb === 'attendmaybe') {
196 $bodyverb = t('%1$s may attend %2$s\'s %3$s');
199 if (! isset($bodyverb)) {
203 $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
204 $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
205 $plink = '[url=' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
207 /// @TODO Or rewrite this to multi-line initialization of the array?
210 $arr['guid'] = get_guid(32);
212 $arr['uid'] = $owner_uid;
213 $arr['contact-id'] = $contact['id'];
214 $arr['type'] = 'activity';
215 $arr['wall'] = $item['wall'];
217 $arr['gravity'] = GRAVITY_LIKE;
218 $arr['parent'] = $item['id'];
219 $arr['parent-uri'] = $item['uri'];
220 $arr['thr-parent'] = $item['uri'];
221 $arr['owner-name'] = $remote_owner['name'];
222 $arr['owner-link'] = $remote_owner['url'];
223 $arr['owner-avatar'] = $remote_owner['thumb'];
224 $arr['author-name'] = $contact['name'];
225 $arr['author-link'] = $contact['url'];
226 $arr['author-avatar'] = $contact['thumb'];
227 $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink );
228 $arr['verb'] = $activity;
229 $arr['object-type'] = $objtype;
230 $arr['object'] = $obj;
231 $arr['allow_cid'] = $item['allow_cid'];
232 $arr['allow_gid'] = $item['allow_gid'];
233 $arr['deny_cid'] = $item['deny_cid'];
234 $arr['deny_gid'] = $item['deny_gid'];
237 $arr['last-child'] = 0;
239 $post_id = item_store($arr);
241 if (! $item['visible']) {
242 $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
249 // Save the author information for the like in case we need to relay to Diaspora
250 Diaspora::store_like_signature($contact, $post_id);
252 $arr['id'] = $post_id;
254 call_hooks('post_local_end', $arr);
256 proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id);