2015-12-27 13:52:46 +01:00
|
|
|
<?php
|
2016-03-19 15:49:47 +01:00
|
|
|
require_once("include/diaspora.php");
|
2015-12-27 13:52:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief add/remove activity to an item
|
|
|
|
*
|
|
|
|
* Toggle activities as like,dislike,attend of an item
|
|
|
|
*
|
|
|
|
* @param string $item_id
|
|
|
|
* @param string $verb
|
|
|
|
* Activity verb. One of
|
|
|
|
* like, unlike, dislike, undislike, attendyes, unattendyes,
|
|
|
|
* attendno, unattendno, attendmaybe, unattendmaybe
|
|
|
|
* @hook 'post_local_end'
|
|
|
|
* array $arr
|
|
|
|
* 'post_id' => ID of posted item
|
|
|
|
*/
|
|
|
|
function do_like($item_id, $verb) {
|
|
|
|
$a = get_app();
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
if (! local_user() && ! remote_user()) {
|
2015-12-27 13:52:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
switch ($verb) {
|
2015-12-27 13:52:46 +01:00
|
|
|
case 'like':
|
2017-03-06 11:28:01 +01:00
|
|
|
$bodyverb = t('%1$s likes %2$s\'s %3$s');
|
|
|
|
$activity = ACTIVITY_LIKE;
|
|
|
|
break;
|
2015-12-27 13:52:46 +01:00
|
|
|
case 'unlike':
|
2017-03-06 11:28:01 +01:00
|
|
|
$bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
|
2015-12-27 13:52:46 +01:00
|
|
|
$activity = ACTIVITY_LIKE;
|
|
|
|
break;
|
|
|
|
case 'dislike':
|
|
|
|
case 'undislike':
|
2017-03-06 11:28:01 +01:00
|
|
|
$bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
|
2015-12-27 13:52:46 +01:00
|
|
|
$activity = ACTIVITY_DISLIKE;
|
|
|
|
break;
|
|
|
|
case 'attendyes':
|
|
|
|
case 'unattendyes':
|
2017-03-06 11:28:01 +01:00
|
|
|
$bodyverb = t('%1$s is attending %2$s\'s %3$s');
|
2015-12-27 13:52:46 +01:00
|
|
|
$activity = ACTIVITY_ATTEND;
|
|
|
|
break;
|
|
|
|
case 'attendno':
|
|
|
|
case 'unattendno':
|
2017-03-06 11:28:01 +01:00
|
|
|
$bodyverb = t('%1$s is not attending %2$s\'s %3$s');
|
2015-12-27 13:52:46 +01:00
|
|
|
$activity = ACTIVITY_ATTENDNO;
|
|
|
|
break;
|
|
|
|
case 'attendmaybe':
|
|
|
|
case 'unattendmaybe':
|
2017-03-06 11:28:01 +01:00
|
|
|
$bodyverb = t('%1$s may attend %2$s\'s %3$s');
|
2015-12-27 13:52:46 +01:00
|
|
|
$activity = ACTIVITY_ATTENDMAYBE;
|
|
|
|
break;
|
|
|
|
default:
|
2017-03-06 11:28:01 +01:00
|
|
|
logger('like: unknown verb ' . $verb . ' for item ' . $item_id);
|
2015-12-27 17:31:34 +01:00
|
|
|
return false;
|
2015-12-27 13:52:46 +01:00
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Enable activity toggling instead of on/off
|
|
|
|
$event_verb_flag = $activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE;
|
|
|
|
|
2015-12-27 13:52:46 +01:00
|
|
|
logger('like: verb ' . $verb . ' item ' . $item_id);
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Retrieve item
|
|
|
|
$items = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
|
2015-12-27 13:52:46 +01:00
|
|
|
dbesc($item_id),
|
|
|
|
dbesc($item_id)
|
|
|
|
);
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
if (! $item_id || ! dbm::is_result($items)) {
|
|
|
|
logger('like: unknown item ' . $item_id);
|
2015-12-27 13:52:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
$item = $items[0];
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
if (! can_write_wall($a, $item['uid'])) {
|
|
|
|
logger('like: unable to write on wall ' . $item['uid']);
|
2015-12-27 13:52:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Retrieves the local post owner
|
|
|
|
$owners = q("SELECT `contact`.* FROM `contact`
|
|
|
|
WHERE `contact`.`self` = 1
|
|
|
|
AND `contact`.`uid` = %d",
|
|
|
|
intval($item['uid'])
|
|
|
|
);
|
|
|
|
if (dbm::is_result($owners)) {
|
|
|
|
$owner_self_contact = $owners[0];
|
|
|
|
} else {
|
|
|
|
logger('like: unknown owner ' . $item['uid']);
|
|
|
|
return false;
|
2015-12-27 13:52:46 +01:00
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Retrieve the current logged in user's public contact
|
|
|
|
$author_id = public_contact();
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
$contacts = q("SELECT * FROM `contact` WHERE `id` = %d",
|
|
|
|
intval($author_id)
|
2015-12-27 13:52:46 +01:00
|
|
|
);
|
2017-03-06 11:28:01 +01:00
|
|
|
if (dbm::is_result($contacts)) {
|
|
|
|
$author_contact = $contacts[0];
|
|
|
|
} else {
|
|
|
|
logger('like: unknown author ' . $author_id);
|
2015-12-27 13:52:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Contact-id is the uid-dependant author contact
|
|
|
|
if (local_user() == $item['uid']) {
|
|
|
|
$item_contact_id = $owner_self_contact['id'];
|
|
|
|
$item_contact = $owner_self_contact;
|
2016-12-22 09:09:27 +01:00
|
|
|
} else {
|
2017-03-06 11:28:01 +01:00
|
|
|
$item_contact_id = get_contact($author_contact['url'], $item['uid']);
|
|
|
|
|
|
|
|
$contacts = q("SELECT * FROM `contact` WHERE `id` = %d",
|
|
|
|
intval($item_contact_id)
|
2015-12-27 13:52:46 +01:00
|
|
|
);
|
2017-03-06 11:28:01 +01:00
|
|
|
if (dbm::is_result($contacts)) {
|
|
|
|
$item_contact = $contacts[0];
|
|
|
|
} else {
|
|
|
|
logger('like: unknown item contact ' . $item_contact_id);
|
|
|
|
return false;
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2015-12-27 13:52:46 +01:00
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Look for an existing verb row
|
2015-12-27 13:52:46 +01:00
|
|
|
// event participation are essentially radio toggles. If you make a subsequent choice,
|
|
|
|
// we need to eradicate your first choice.
|
2017-03-06 11:28:01 +01:00
|
|
|
if ($event_verb_flag) {
|
|
|
|
$verbs = "'" . dbesc(ACTIVITY_ATTEND) . "', '" . dbesc(ACTIVITY_ATTENDNO) . "', '" . dbesc(ACTIVITY_ATTENDMAYBE) . "'";
|
|
|
|
} else {
|
|
|
|
$verbs = "'".dbesc($activity)."'";
|
|
|
|
}
|
|
|
|
|
|
|
|
$existing_like = q("SELECT `id`, `guid`, `verb` FROM `item`
|
|
|
|
WHERE `verb` IN ($verbs)
|
|
|
|
AND `deleted` = 0
|
|
|
|
AND `author-id` = %d
|
|
|
|
AND `uid` = %d
|
|
|
|
AND (`parent` = '%s' OR `parent-uri` = '%s' OR `thr-parent` = '%s')
|
|
|
|
LIMIT 1",
|
|
|
|
intval($author_contact['id']),
|
|
|
|
intval($item['uid']),
|
2015-12-27 13:52:46 +01:00
|
|
|
dbesc($item_id), dbesc($item_id), dbesc($item['uri'])
|
|
|
|
);
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// If it exists, mark it as deleted
|
|
|
|
if (dbm::is_result($existing_like)) {
|
|
|
|
$like_item = $existing_like[0];
|
2015-12-27 13:52:46 +01:00
|
|
|
|
|
|
|
// Already voted, undo it
|
2017-03-06 11:28:01 +01:00
|
|
|
q("UPDATE `item` SET `deleted` = 1, `unseen` = 1, `changed` = '%s' WHERE `id` = %d",
|
2015-12-27 13:52:46 +01:00
|
|
|
dbesc(datetime_convert()),
|
|
|
|
intval($like_item['id'])
|
|
|
|
);
|
|
|
|
|
|
|
|
// Clean up the Diaspora signatures for this like
|
|
|
|
// Go ahead and do it even if Diaspora support is disabled. We still want to clean up
|
|
|
|
// if it had been enabled in the past
|
2017-03-06 11:28:01 +01:00
|
|
|
q("DELETE FROM `sign` WHERE `iid` = %d",
|
2015-12-27 13:52:46 +01:00
|
|
|
intval($like_item['id'])
|
|
|
|
);
|
|
|
|
|
|
|
|
$like_item_id = $like_item['id'];
|
2016-08-01 07:48:43 +02:00
|
|
|
proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $like_item_id);
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
if (!$event_verb_flag || $like_item['verb'] == $activity) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-12-27 13:52:46 +01:00
|
|
|
}
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Verb is "un-something", just trying to delete existing entries
|
|
|
|
if (strpos($verb, 'un') === 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// Else or if event verb different from existing row, create a new item row
|
2015-12-27 13:52:46 +01:00
|
|
|
$post_type = (($item['resource-id']) ? t('photo') : t('status'));
|
2016-12-20 21:31:05 +01:00
|
|
|
if ($item['object-type'] === ACTIVITY_OBJ_EVENT) {
|
2015-12-27 13:52:46 +01:00
|
|
|
$post_type = t('event');
|
2016-12-20 21:31:05 +01:00
|
|
|
}
|
2017-03-06 11:28:01 +01:00
|
|
|
$objtype = $item['resource-id'] ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ;
|
|
|
|
$link = xmlify('<link rel="alternate" type="text/html" href="' . App::get_baseurl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . '" />' . "\n") ;
|
2015-12-27 13:52:46 +01:00
|
|
|
$body = $item['body'];
|
|
|
|
|
|
|
|
$obj = <<< EOT
|
|
|
|
|
|
|
|
<object>
|
|
|
|
<type>$objtype</type>
|
|
|
|
<local>1</local>
|
|
|
|
<id>{$item['uri']}</id>
|
|
|
|
<link>$link</link>
|
|
|
|
<title></title>
|
|
|
|
<content>$body</content>
|
|
|
|
</object>
|
|
|
|
EOT;
|
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
$ulink = '[url=' . $author_contact['url'] . ']' . $author_contact['name'] . '[/url]';
|
2016-12-20 21:31:05 +01:00
|
|
|
$alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
|
2017-03-06 11:28:01 +01:00
|
|
|
$plink = '[url=' . App::get_baseurl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
|
|
|
|
|
|
|
|
$new_item = array(
|
|
|
|
'guid' => get_guid(32),
|
|
|
|
'uri' => item_new_uri($a->get_hostname(), $item['uid']),
|
|
|
|
'uid' => $item['uid'],
|
|
|
|
'contact-id' => $item_contact_id,
|
|
|
|
'type' => 'activity',
|
|
|
|
'wall' => $item['wall'],
|
|
|
|
'origin' => 1,
|
|
|
|
'gravity' => GRAVITY_LIKE,
|
|
|
|
'parent' => $item['id'],
|
|
|
|
'parent-uri' => $item['uri'],
|
|
|
|
'thr-parent' => $item['uri'],
|
|
|
|
'owner-id' => $item['owner-id'],
|
|
|
|
'owner-name' => $item['owner-name'],
|
|
|
|
'owner-link' => $item['owner-link'],
|
|
|
|
'owner-avatar' => $item['owner-avatar'],
|
|
|
|
'author-id' => $author_contact['id'],
|
|
|
|
'author-name' => $author_contact['name'],
|
|
|
|
'author-link' => $author_contact['url'],
|
|
|
|
'author-avatar' => $author_contact['thumb'],
|
|
|
|
'body' => sprintf($bodyverb, $ulink, $alink, $plink),
|
|
|
|
'verb' => $activity,
|
|
|
|
'object-type' => $objtype,
|
|
|
|
'object' => $obj,
|
|
|
|
'allow_cid' => $item['allow_cid'],
|
|
|
|
'allow_gid' => $item['allow_gid'],
|
|
|
|
'deny_cid' => $item['deny_cid'],
|
|
|
|
'deny_gid' => $item['deny_gid'],
|
|
|
|
'visible' => 1,
|
|
|
|
'unseen' => 1,
|
|
|
|
'last-child' => 0
|
|
|
|
);
|
|
|
|
|
|
|
|
$new_item_id = item_store($new_item);
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
// @todo: Explain this block
|
2016-12-20 21:31:05 +01:00
|
|
|
if (! $item['visible']) {
|
2017-03-06 11:28:01 +01:00
|
|
|
q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
|
2015-12-27 13:52:46 +01:00
|
|
|
intval($item['id']),
|
2017-03-06 11:28:01 +01:00
|
|
|
intval($item['uid'])
|
2015-12-27 13:52:46 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save the author information for the like in case we need to relay to Diaspora
|
2017-03-06 11:28:01 +01:00
|
|
|
Diaspora::store_like_signature($item_contact, $new_item_id);
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
$new_item['id'] = $new_item_id;
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
call_hooks('post_local_end', $new_item);
|
2015-12-27 13:52:46 +01:00
|
|
|
|
2017-03-06 11:28:01 +01:00
|
|
|
proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $new_item_id);
|
2015-12-27 13:52:46 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|