]> git.mxchange.org Git - friendica.git/blob - mod/tagger.php
Merge pull request #10969 from MrPetovan/task/remove-private-contacts
[friendica.git] / mod / tagger.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\Core\Hook;
24 use Friendica\Core\Logger;
25 use Friendica\Core\Session;
26 use Friendica\Core\System;
27 use Friendica\Core\Worker;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Item;
32 use Friendica\Model\Post;
33 use Friendica\Model\Tag;
34 use Friendica\Protocol\Activity;
35 use Friendica\Util\XML;
36 use Friendica\Worker\Delivery;
37
38 function tagger_content(App $a) {
39
40         if (!Session::isAuthenticated()) {
41                 return;
42         }
43
44         $term = trim($_GET['term'] ?? '');
45         // no commas allowed
46         $term = str_replace([',',' ', '<', '>'],['','_', '', ''], $term);
47
48         if (!$term) {
49                 return;
50         }
51
52         $item_id = ((DI::args()->getArgc() > 1) ? trim(DI::args()->getArgv()[1]) : 0);
53
54         Logger::notice('tagger: tag ' . $term . ' item ' . $item_id);
55
56
57         $item = Post::selectFirst([], ['id' => $item_id]);
58
59         if (!$item_id || !DBA::isResult($item)) {
60                 Logger::notice('tagger: no item ' . $item_id);
61                 return;
62         }
63
64         $owner_uid = $item['uid'];
65
66         if (local_user() != $owner_uid) {
67                 return;
68         }
69
70         $contact = Contact::selectFirst([], ['self' => true, 'uid' => local_user()]);
71         if (!DBA::isResult($contact)) {
72                 Logger::notice('tagger: no contact_id');
73                 return;
74         }
75
76         $uri = Item::newURI($owner_uid);
77         $xterm = XML::escape($term);
78         $post_type = (($item['resource-id']) ? DI::l10n()->t('photo') : DI::l10n()->t('status'));
79         $targettype = (($item['resource-id']) ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE );
80         $href = DI::baseUrl() . '/display/' . $item['guid'];
81
82         $link = XML::escape('<link rel="alternate" type="text/html" href="'. $href . '" />' . "\n");
83
84         $body = XML::escape($item['body']);
85
86         $target = <<< EOT
87         <target>
88                 <type>$targettype</type>
89                 <local>1</local>
90                 <id>{$item['uri']}</id>
91                 <link>$link</link>
92                 <title></title>
93                 <content>$body</content>
94         </target>
95 EOT;
96
97         $tagid = DI::baseUrl() . '/search?tag=' . $xterm;
98         $objtype = Activity\ObjectType::TAGTERM;
99
100         $obj = <<< EOT
101         <object>
102                 <type>$objtype</type>
103                 <local>1</local>
104                 <id>$tagid</id>
105                 <link>$tagid</link>
106                 <title>$xterm</title>
107                 <content>$xterm</content>
108         </object>
109 EOT;
110
111         $bodyverb = DI::l10n()->t('%1$s tagged %2$s\'s %3$s with %4$s');
112
113         if (!isset($bodyverb)) {
114                 return;
115         }
116
117         $termlink = html_entity_decode('&#x2317;') . '[url=' . DI::baseUrl() . '/search?tag=' . $term . ']'. $term . '[/url]';
118
119         $arr = [];
120
121         $arr['guid'] = System::createUUID();
122         $arr['uri'] = $uri;
123         $arr['uid'] = $owner_uid;
124         $arr['contact-id'] = $contact['id'];
125         $arr['wall'] = $item['wall'];
126         $arr['gravity'] = GRAVITY_COMMENT;
127         $arr['parent'] = $item['id'];
128         $arr['thr-parent'] = $item['uri'];
129         $arr['owner-name'] = $item['author-name'];
130         $arr['owner-link'] = $item['author-link'];
131         $arr['owner-avatar'] = $item['author-avatar'];
132         $arr['author-name'] = $contact['name'];
133         $arr['author-link'] = $contact['url'];
134         $arr['author-avatar'] = $contact['thumb'];
135
136         $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
137         $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
138         $plink = '[url=' . $item['plink'] . ']' . $post_type . '[/url]';
139         $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink, $termlink );
140
141         $arr['verb'] = Activity::TAG;
142         $arr['target-type'] = $targettype;
143         $arr['target'] = $target;
144         $arr['object-type'] = $objtype;
145         $arr['object'] = $obj;
146         $arr['private'] = $item['private'];
147         $arr['allow_cid'] = $item['allow_cid'];
148         $arr['allow_gid'] = $item['allow_gid'];
149         $arr['deny_cid'] = $item['deny_cid'];
150         $arr['deny_gid'] = $item['deny_gid'];
151         $arr['visible'] = 1;
152         $arr['unseen'] = 1;
153         $arr['origin'] = 1;
154
155         $post_id = Item::insert($arr);
156
157         if (!$item['visible']) {
158                 Item::update(['visible' => true], ['id' => $item['id']]);
159         }
160
161         Tag::store($item['uri-id'], Tag::HASHTAG, $term);
162
163         $arr['id'] = $post_id;
164
165         Hook::callAll('post_local_end', $arr);
166
167         $post = Post::selectFirst(['uri-id', 'uid'], ['id' => $post_id]);
168
169         Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $post['uri-id'], $post['uid']);
170
171         exit();
172 }