friendica/mod/poke.php

201 lines
5.6 KiB
PHP
Raw Normal View History

2017-04-30 06:01:26 +02:00
<?php
2015-10-24 19:51:58 +02:00
/**
* Poke, prod, finger, or otherwise do unspeakable things to somebody - who must be a connection in your address book
* This function can be invoked with the required arguments (verb and cid and private and possibly parent) silently via ajax or
* other web request. You must be logged in and connected to a profile.
2015-10-24 19:51:58 +02:00
* If the required arguments aren't present, we'll display a simple form to choose a recipient and a verb.
* parent is a special argument which let's you attach this activity as a comment to an existing conversation, which
* may have started with somebody else poking (etc.) somebody, but this isn't necessary. This can be used in the more pokes
* addon version to have entire conversations where Alice poked Bob, Bob fingered Alice, Alice hugged Bob, etc.
2015-10-24 19:51:58 +02:00
*
* private creates a private conversation with the recipient. Otherwise your profile's default post privacy is used.
*
2017-04-30 06:01:26 +02:00
* @file mod/poke.php
*/
use Friendica\App;
use Friendica\Core\Addon;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
2017-11-05 13:15:53 +01:00
use Friendica\Core\Worker;
use Friendica\Database\DBA;
use Friendica\Model\Item;
2018-01-21 19:33:59 +01:00
require_once 'include/security.php';
require_once 'include/items.php';
2012-07-20 03:17:16 +02:00
function poke_init(App $a)
{
2018-06-12 11:05:36 +02:00
if (!local_user()) {
2012-07-20 03:17:16 +02:00
return;
}
2012-07-20 03:17:16 +02:00
$uid = local_user();
if (empty($_GET['verb'])) {
2012-07-20 03:17:16 +02:00
return;
}
2012-07-20 03:17:16 +02:00
$verb = notags(trim($_GET['verb']));
2012-07-20 03:17:16 +02:00
$verbs = get_poke_verbs();
2018-06-12 11:05:36 +02:00
if (!array_key_exists($verb, $verbs)) {
2012-07-20 03:17:16 +02:00
return;
}
2012-07-20 03:17:16 +02:00
$activity = ACTIVITY_POKE . '#' . urlencode($verbs[$verb][0]);
$contact_id = intval($_GET['cid']);
2018-06-12 11:05:36 +02:00
if (!$contact_id) {
2012-07-20 03:17:16 +02:00
return;
}
2012-07-20 03:17:16 +02:00
2018-06-12 11:05:36 +02:00
$parent = (x($_GET,'parent') ? intval($_GET['parent']) : 0);
2012-07-20 03:17:16 +02:00
2012-07-20 13:03:32 +02:00
2012-07-20 03:17:16 +02:00
logger('poke: verb ' . $verb . ' contact ' . $contact_id, LOGGER_DEBUG);
2015-10-24 19:51:58 +02:00
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2012-07-20 03:17:16 +02:00
intval($contact_id),
intval($uid)
);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($r)) {
2012-07-20 03:17:16 +02:00
logger('poke: no contact ' . $contact_id);
return;
}
$target = $r[0];
2018-06-12 11:05:36 +02:00
if ($parent) {
$fields = ['uri', 'private', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
$condition = ['id' => $parent, 'parent' => $parent, 'uid' => $uid];
$item = Item::selectFirst($fields, $condition);
2018-06-12 11:05:36 +02:00
2018-07-21 14:46:04 +02:00
if (DBA::isResult($item)) {
2018-06-12 11:05:36 +02:00
$parent_uri = $item['uri'];
$private = $item['private'];
$allow_cid = $item['allow_cid'];
$allow_gid = $item['allow_gid'];
$deny_cid = $item['deny_cid'];
$deny_gid = $item['deny_gid'];
}
2018-06-12 11:05:36 +02:00
} else {
$private = (x($_GET,'private') ? intval($_GET['private']) : 0);
2018-06-12 11:05:36 +02:00
$allow_cid = ($private ? '<' . $target['id']. '>' : $a->user['allow_cid']);
$allow_gid = ($private ? '' : $a->user['allow_gid']);
$deny_cid = ($private ? '' : $a->user['deny_cid']);
$deny_gid = ($private ? '' : $a->user['deny_gid']);
}
2012-07-20 03:17:16 +02:00
$poster = $a->contact;
2018-06-16 08:44:19 +02:00
$uri = Item::newURI($uid);
2012-07-20 03:17:16 +02:00
$arr = [];
2012-07-20 03:17:16 +02:00
2018-09-27 13:52:15 +02:00
$arr['guid'] = System::createUUID();
2012-07-20 03:17:16 +02:00
$arr['uid'] = $uid;
$arr['uri'] = $uri;
$arr['parent-uri'] = (!empty($parent_uri) ? $parent_uri : $uri);
2012-07-20 03:17:16 +02:00
$arr['wall'] = 1;
2012-07-20 03:50:33 +02:00
$arr['contact-id'] = $poster['id'];
2012-07-20 03:17:16 +02:00
$arr['owner-name'] = $poster['name'];
$arr['owner-link'] = $poster['url'];
$arr['owner-avatar'] = $poster['thumb'];
$arr['author-name'] = $poster['name'];
$arr['author-link'] = $poster['url'];
$arr['author-avatar'] = $poster['thumb'];
$arr['title'] = '';
$arr['allow_cid'] = $allow_cid;
$arr['allow_gid'] = $allow_gid;
$arr['deny_cid'] = $deny_cid;
$arr['deny_gid'] = $deny_gid;
2012-07-20 03:17:16 +02:00
$arr['visible'] = 1;
$arr['verb'] = $activity;
2012-07-20 13:03:32 +02:00
$arr['private'] = $private;
2012-07-20 03:17:16 +02:00
$arr['object-type'] = ACTIVITY_OBJ_PERSON;
$arr['origin'] = 1;
2018-01-22 15:16:25 +01:00
$arr['body'] = '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' . ' ' . L10n::t($verbs[$verb][0]) . ' ' . '[url=' . $target['url'] . ']' . $target['name'] . '[/url]';
2012-07-20 03:17:16 +02:00
$arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $target['name'] . '</title><id>' . $target['url'] . '</id>';
2012-07-20 03:17:16 +02:00
$arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $target['url'] . '" />' . "\n");
$arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $target['photo'] . '" />' . "\n");
$arr['object'] .= '</link></object>' . "\n";
$item_id = Item::insert($arr);
2018-06-12 11:05:36 +02:00
if ($item_id) {
Worker::add(PRIORITY_HIGH, "Notifier", "tag", $item_id);
2012-07-20 03:17:16 +02:00
}
Addon::callHooks('post_local_end', $arr);
2012-07-20 03:17:16 +02:00
return;
}
function poke_content(App $a)
{
2018-06-12 11:05:36 +02:00
if (!local_user()) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2012-07-20 05:30:40 +02:00
return;
}
$name = '';
$id = '';
if (empty($_GET['c'])) {
return;
}
$contact = DBA::selectFirst('contact', ['id', 'name'], ['id' => $_GET['c'], 'uid' => local_user()]);
if (!DBA::isResult($contact)) {
return;
}
$name = $contact['name'];
$id = $contact['id'];
$base = System::baseUrl();
2012-07-20 03:17:16 +02:00
2015-10-24 19:51:58 +02:00
$head_tpl = get_markup_template('poke_head.tpl');
$a->page['htmlhead'] .= replace_macros($head_tpl,[
'$baseurl' => System::baseUrl(true),
2015-10-24 19:51:58 +02:00
'$base' => $base
]);
2012-07-20 03:17:16 +02:00
2018-06-12 11:05:36 +02:00
$parent = (x($_GET,'parent') ? intval($_GET['parent']) : '0');
2012-07-20 03:17:16 +02:00
$verbs = get_poke_verbs();
$shortlist = [];
2018-06-12 11:05:36 +02:00
foreach ($verbs as $k => $v) {
if ($v[1] !== 'NOTRANSLATION') {
$shortlist[] = [$k, $v[1]];
}
}
2012-07-20 03:17:16 +02:00
$tpl = get_markup_template('poke_content.tpl');
$o = replace_macros($tpl,[
2018-01-22 15:16:25 +01:00
'$title' => L10n::t('Poke/Prod'),
'$desc' => L10n::t('poke, prod or do other things to somebody'),
'$clabel' => L10n::t('Recipient'),
'$choice' => L10n::t('Choose what you wish to do to recipient'),
2012-07-20 03:17:16 +02:00
'$verbs' => $shortlist,
'$parent' => $parent,
2018-01-22 15:16:25 +01:00
'$prv_desc' => L10n::t('Make this post private'),
'$submit' => L10n::t('Submit'),
'$name' => $name,
'$id' => $id
]);
2012-07-20 03:17:16 +02:00
return $o;
}