3 * Poke, prod, finger, or otherwise do unspeakable things to somebody - who must be a connection in your address book
4 * This function can be invoked with the required arguments (verb and cid and private and possibly parent) silently via ajax or
5 * other web request. You must be logged in and connected to a profile.
6 * If the required arguments aren't present, we'll display a simple form to choose a recipient and a verb.
7 * parent is a special argument which let's you attach this activity as a comment to an existing conversation, which
8 * may have started with somebody else poking (etc.) somebody, but this isn't necessary. This can be used in the more pokes
9 * addon version to have entire conversations where Alice poked Bob, Bob fingered Alice, Alice hugged Bob, etc.
11 * private creates a private conversation with the recipient. Otherwise your profile's default post privacy is used.
17 use Friendica\Core\Addon;
18 use Friendica\Core\L10n;
19 use Friendica\Core\System;
20 use Friendica\Core\Worker;
21 use Friendica\Database\DBM;
22 use Friendica\Model\Item;
24 require_once 'include/security.php';
25 require_once 'include/items.php';
27 function poke_init(App $a) {
34 $verb = notags(trim($_GET['verb']));
40 $verbs = get_poke_verbs();
42 if (! array_key_exists($verb,$verbs)) {
46 $activity = ACTIVITY_POKE . '#' . urlencode($verbs[$verb][0]);
48 $contact_id = intval($_GET['cid']);
53 $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : 0);
56 logger('poke: verb ' . $verb . ' contact ' . $contact_id, LOGGER_DEBUG);
59 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
64 if (! DBM::is_result($r)) {
65 logger('poke: no contact ' . $contact_id);
72 $r = q("SELECT `uri`, `private`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`
73 FROM `item` WHERE `id` = %d AND `parent` = %d AND `uid` = %d LIMIT 1",
78 if (DBM::is_result($r)) {
79 $parent_uri = $r[0]['uri'];
80 $private = $r[0]['private'];
81 $allow_cid = $r[0]['allow_cid'];
82 $allow_gid = $r[0]['allow_gid'];
83 $deny_cid = $r[0]['deny_cid'];
84 $deny_gid = $r[0]['deny_gid'];
89 $private = ((x($_GET,'private')) ? intval($_GET['private']) : 0);
91 $allow_cid = (($private) ? '<' . $target['id']. '>' : $a->user['allow_cid']);
92 $allow_gid = (($private) ? '' : $a->user['allow_gid']);
93 $deny_cid = (($private) ? '' : $a->user['deny_cid']);
94 $deny_gid = (($private) ? '' : $a->user['deny_gid']);
97 $poster = $a->contact;
99 $uri = item_new_uri($a->get_hostname(),$uid);
103 $arr['guid'] = get_guid(32);
106 $arr['parent-uri'] = (($parent_uri) ? $parent_uri : $uri);
107 $arr['type'] = 'activity';
109 $arr['contact-id'] = $poster['id'];
110 $arr['owner-name'] = $poster['name'];
111 $arr['owner-link'] = $poster['url'];
112 $arr['owner-avatar'] = $poster['thumb'];
113 $arr['author-name'] = $poster['name'];
114 $arr['author-link'] = $poster['url'];
115 $arr['author-avatar'] = $poster['thumb'];
117 $arr['allow_cid'] = $allow_cid;
118 $arr['allow_gid'] = $allow_gid;
119 $arr['deny_cid'] = $deny_cid;
120 $arr['deny_gid'] = $deny_gid;
122 $arr['verb'] = $activity;
123 $arr['private'] = $private;
124 $arr['object-type'] = ACTIVITY_OBJ_PERSON;
127 $arr['body'] = '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' . ' ' . L10n::t($verbs[$verb][0]) . ' ' . '[url=' . $target['url'] . ']' . $target['name'] . '[/url]';
129 $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $target['name'] . '</title><id>' . System::baseUrl() . '/contact/' . $target['id'] . '</id>';
130 $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $target['url'] . '" />' . "\n");
132 $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $target['photo'] . '" />' . "\n");
133 $arr['object'] .= '</link></object>' . "\n";
135 $item_id = Item::insert($arr);
137 Worker::add(PRIORITY_HIGH, "Notifier", "tag", $item_id);
140 Addon::callHooks('post_local_end', $arr);
147 function poke_content(App $a) {
149 if (! local_user()) {
150 notice(L10n::t('Permission denied.') . EOL);
157 if(intval($_GET['c'])) {
158 $r = q("SELECT `id`,`name` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
162 if (DBM::is_result($r)) {
163 $name = $r[0]['name'];
169 $base = System::baseUrl();
171 $head_tpl = get_markup_template('poke_head.tpl');
172 $a->page['htmlhead'] .= replace_macros($head_tpl,[
173 '$baseurl' => System::baseUrl(true),
178 $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0');
181 $verbs = get_poke_verbs();
184 foreach($verbs as $k => $v)
185 if($v[1] !== 'NOTRANSLATION')
186 $shortlist[] = [$k,$v[1]];
189 $tpl = get_markup_template('poke_content.tpl');
191 $o = replace_macros($tpl,[
192 '$title' => L10n::t('Poke/Prod'),
193 '$desc' => L10n::t('poke, prod or do other things to somebody'),
194 '$clabel' => L10n::t('Recipient'),
195 '$choice' => L10n::t('Choose what you wish to do to recipient'),
196 '$verbs' => $shortlist,
197 '$parent' => $parent,
198 '$prv_desc' => L10n::t('Make this post private'),
199 '$submit' => L10n::t('Submit'),