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