]> git.mxchange.org Git - friendica.git/blob - src/Module/Contact/Poke.php
Make BaseModule methods dynamic
[friendica.git] / src / Module / Contact / Poke.php
1 <?php
2
3 namespace Friendica\Module\Contact;
4
5 use Friendica\BaseModule;
6 use Friendica\Content\Widget;
7 use Friendica\Core\Hook;
8 use Friendica\Core\Logger;
9 use Friendica\Core\Renderer;
10 use Friendica\Core\System;
11 use Friendica\Database\DBA;
12 use Friendica\DI;
13 use Friendica\Model;
14 use Friendica\Model\Contact;
15 use Friendica\Network\HTTPException;
16 use Friendica\Protocol\Activity;
17 use Friendica\Util\XML;
18
19 class Poke extends BaseModule
20 {
21         public function post()
22         {
23                 if (!local_user() || empty(static::$parameters['id'])) {
24                         return self::postReturn(false);
25                 }
26
27                 $uid = local_user();
28
29                 if (empty($_POST['verb'])) {
30                         return self::postReturn(false);
31                 }
32
33                 $verb = $_POST['verb'];
34
35                 $verbs = DI::l10n()->getPokeVerbs();
36                 if (!array_key_exists($verb, $verbs)) {
37                         return self::postReturn(false);
38                 }
39
40                 $activity = Activity::POKE . '#' . urlencode($verbs[$verb][0]);
41
42                 $contact_id = intval(static::$parameters['id']);
43                 if (!$contact_id) {
44                         return self::postReturn(false);
45                 }
46
47                 Logger::info('verb ' . $verb . ' contact ' . $contact_id);
48
49                 $contact = DBA::selectFirst('contact', ['id', 'name', 'url', 'photo'], ['id' => static::$parameters['id'], 'uid' => local_user()]);
50                 if (!DBA::isResult($contact)) {
51                         return self::postReturn(false);
52                 }
53
54                 $a = DI::app();
55
56                 $private = !empty($_POST['private']) ? Model\Item::PRIVATE : Model\Item::PUBLIC;
57
58                 $user = Model\User::getById($a->getLoggedInUserId());
59                 $allow_cid     = ($private ? '<' . $contact['id']. '>' : $user['allow_cid']);
60                 $allow_gid     = ($private ? '' : $user['allow_gid']);
61                 $deny_cid      = ($private ? '' : $user['deny_cid']);
62                 $deny_gid      = ($private ? '' : $user['deny_gid']);
63
64                 $actor = Contact::getById($a->getContactId());
65
66                 $uri = Model\Item::newURI($uid);
67
68                 $arr = [];
69
70                 $arr['guid']          = System::createUUID();
71                 $arr['uid']           = $uid;
72                 $arr['uri']           = $uri;
73                 $arr['wall']          = 1;
74                 $arr['contact-id']    = $actor['id'];
75                 $arr['owner-name']    = $actor['name'];
76                 $arr['owner-link']    = $actor['url'];
77                 $arr['owner-avatar']  = $actor['thumb'];
78                 $arr['author-name']   = $actor['name'];
79                 $arr['author-link']   = $actor['url'];
80                 $arr['author-avatar'] = $actor['thumb'];
81                 $arr['title']         = '';
82                 $arr['allow_cid']     = $allow_cid;
83                 $arr['allow_gid']     = $allow_gid;
84                 $arr['deny_cid']      = $deny_cid;
85                 $arr['deny_gid']      = $deny_gid;
86                 $arr['visible']       = 1;
87                 $arr['verb']          = $activity;
88                 $arr['private']       = $private;
89                 $arr['object-type']   = Activity\ObjectType::PERSON;
90
91                 $arr['origin']        = 1;
92                 $arr['body']          = '@[url=' . $actor['url'] . ']' . $actor['name'] . '[/url]' . ' ' . $verbs[$verb][2] . ' ' . '@[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
93
94                 $arr['object'] = '<object><type>' . Activity\ObjectType::PERSON . '</type><title>' . XML::escape($contact['name']) . '</title><id>' . XML::escape($contact['url']) . '</id>';
95                 $arr['object'] .= '<link>' . XML::escape('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />') . "\n";
96
97                 $arr['object'] .= XML::escape('<link rel="photo" type="image/jpeg" href="' . $contact['photo'] . '" />') . "\n";
98                 $arr['object'] .= '</link></object>' . "\n";
99
100                 $result = Model\Item::insert($arr);
101
102                 Hook::callAll('post_local_end', $arr);
103
104                 return self::postReturn($result);
105         }
106
107         /**
108          * Since post() is called before rawContent(), we need to be able to return a JSON response in post() directly.
109          *
110          * @param bool $success
111          * @return bool
112          */
113         private static function postReturn(bool $success)
114         {
115                 if (!$success) {
116                         notice(DI::l10n()->t('Error while sending poke, please retry.'));
117                 }
118
119                 if (DI::mode()->isAjax()) {
120                         System::jsonExit(['success' => $success]);
121                 }
122
123                 return $success;
124         }
125
126         public function content(): string
127         {
128                 if (!local_user()) {
129                         throw new HTTPException\UnauthorizedException(DI::l10n()->t('You must be logged in to use this module.'));
130                 }
131
132                 if (empty(static::$parameters['id'])) {
133                         throw new HTTPException\BadRequestException();
134                 }
135
136                 $contact = DBA::selectFirst('contact', ['id', 'url', 'name'], ['id' => static::$parameters['id'], 'uid' => local_user()]);
137                 if (!DBA::isResult($contact)) {
138                         throw new HTTPException\NotFoundException();
139                 }
140
141                 DI::page()['aside'] = Widget\VCard::getHTML(Model\Contact::getByURL($contact["url"], false));
142
143                 $verbs = [];
144                 foreach (DI::l10n()->getPokeVerbs() as $verb => $translations) {
145                         if ($translations[1] !== 'NOTRANSLATION') {
146                                 $verbs[$verb] = $translations[1];
147                         }
148                 }
149
150                 $tpl = Renderer::getMarkupTemplate('contact/poke.tpl');
151                 $o = Renderer::replaceMacros($tpl,[
152                         '$title'    => DI::l10n()->t('Poke/Prod'),
153                         '$desc'     => DI::l10n()->t('poke, prod or do other things to somebody'),
154                         '$id'       => $contact['id'],
155                         '$verb'     => ['verb', DI::l10n()->t('Choose what you wish to do to recipient'), '', '', $verbs],
156                         '$private'  => ['private', DI::l10n()->t('Make this post private')],
157                         '$loading'  => DI::l10n()->t('Loading...'),
158                         '$submit'   => DI::l10n()->t('Submit'),
159
160                 ]);
161
162                 return $o;
163         }
164 }