]> git.mxchange.org Git - friendica.git/blob - src/Module/Item/Activity.php
Further unused tables to be dropped
[friendica.git] / src / Module / Item / Activity.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 namespace Friendica\Module\Item;
23
24 use Friendica\BaseModule;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Core\Protocol;
27 use Friendica\Core\System;
28 use Friendica\DI;
29 use Friendica\Model\Item;
30 use Friendica\Core\Session;
31 use Friendica\Database\DBA;
32 use Friendica\Model\Post;
33 use Friendica\Network\HTTPException;
34 use Friendica\Util\Strings;
35
36 /**
37  * Performs an activity (like, dislike, announce, attendyes, attendno, attendmaybe)
38  * and optionally redirects to a return path
39  */
40 class Activity extends BaseModule
41 {
42         public static function rawContent(array $parameters = [])
43         {
44                 if (!Session::isAuthenticated()) {
45                         throw new HTTPException\ForbiddenException();
46                 }
47
48                 if (empty($parameters['id']) || empty($parameters['verb'])) {
49                         throw new HTTPException\BadRequestException();
50                 }
51
52                 $verb = $parameters['verb'];
53                 $itemId =  $parameters['id'];
54
55                 if (in_array($verb, ['announce', 'unannounce'])) {
56                         $item = Post::selectFirst(['network'], ['id' => $itemId]);
57                         if ($item['network'] == Protocol::DIASPORA) {
58                                 self::performDiasporaReshare($itemId);
59                         }
60                 }
61
62                 if (!Item::performActivity($itemId, $verb, local_user())) {
63                         throw new HTTPException\BadRequestException();
64                 }
65
66                 // See if we've been passed a return path to redirect to
67                 $return_path = $_REQUEST['return'] ?? '';
68                 if (!empty($return_path)) {
69                         $rand = '_=' . time();
70                         if (strpos($return_path, '?')) {
71                                 $rand = "&$rand";
72                         } else {
73                                 $rand = "?$rand";
74                         }
75
76                         DI::baseUrl()->redirect($return_path . $rand);
77                 }
78
79                 $return = [
80                         'status' => 'ok',
81                         'item_id' => $itemId,
82                         'verb' => $verb,
83                         'state' => 1,
84                 ];
85
86                 System::jsonExit($return);
87         }
88
89         private static function performDiasporaReshare(int $itemId)
90         {
91                 $fields = ['uri-id', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
92                 $item = Post::selectFirst($fields, ['id' => $itemId, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
93                 if (!DBA::isResult($item) || ($item['body'] == '')) {
94                         return;
95                 }
96
97                 if (strpos($item['body'], '[/share]') !== false) {
98                         $pos = strpos($item['body'], '[share');
99                         $post = substr($item['body'], $pos);
100                 } else {
101                         $post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
102
103                         if (!empty($item['title'])) {
104                                 $post .= '[h3]' . $item['title'] . "[/h3]\n";
105                         }
106
107                         $post .= $item['body'];
108                         $post .= '[/share]';
109                 }
110                 $_REQUEST['body'] = $post;
111                 $_REQUEST['profile_uid'] = local_user();
112
113                 require_once 'mod/item.php';
114                 item_post(DI::app());
115         }
116 }