]> git.mxchange.org Git - friendica.git/blob - src/Module/Like.php
Merge pull request #9488 from annando/profile-query
[friendica.git] / src / Module / Like.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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;
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\Network\HTTPException;
33 use Friendica\Util\Strings;
34
35 /**
36  * Performs a like and optionally redirects to a return path
37  */
38 class Like extends BaseModule
39 {
40         public static function rawContent(array $parameters = [])
41         {
42                 if (!Session::isAuthenticated()) {
43                         throw new HTTPException\ForbiddenException();
44                 }
45
46                 $verb = Strings::escapeTags(trim($_GET['verb']));
47
48                 if (!$verb) {
49                         $verb = 'like';
50                 }
51
52                 $app = DI::app();
53
54                 // @TODO: Replace with parameter from router
55                 $itemId = (($app->argc > 1) ? Strings::escapeTags(trim($app->argv[1])) : 0);
56
57                 if (in_array($verb, [ 'announce', 'unannounce'])) {
58                         $item = Item::selectFirst(['network'], ['id' => $itemId]);
59                         if ($item['network'] == Protocol::DIASPORA) {
60                                 self::performDiasporaReshare($itemId);
61                         }
62                 }
63
64                 if (!Item::performActivity($itemId, $verb, local_user())) {
65                         throw new HTTPException\BadRequestException();
66                 }
67
68                 // Decide how to return. If we were called with a 'return' argument,
69                 // then redirect back to the calling page. If not, just quietly end
70                 $returnPath = $_REQUEST['return'] ?? '';
71
72                 if (!empty($returnPath)) {
73                         $rand = '_=' . time();
74                         if (strpos($returnPath, '?')) {
75                                 $rand = "&$rand";
76                         } else {
77                                 $rand = "?$rand";
78                         }
79
80                         DI::baseUrl()->redirect($returnPath . $rand);
81                 }
82
83                 System::jsonExit(['status' => 'OK']);
84         }
85
86         private static function performDiasporaReshare(int $itemId)
87         {
88                 $fields = ['uri-id', 'body', 'title', 'attach', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
89                 $item = Item::selectFirst($fields, ['id' => $itemId, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
90                 if (!DBA::isResult($item) || ($item['body'] == '')) {
91                         return;
92                 }
93
94                 if (strpos($item['body'], '[/share]') !== false) {
95                         $pos = strpos($item['body'], '[share');
96                         $post = substr($item['body'], $pos);
97                 } else {
98                         $post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
99
100                         if (!empty($item['title'])) {
101                                 $post .= '[h3]' . $item['title'] . "[/h3]\n";
102                         }
103
104                         $post .= $item['body'];
105                         $post .= '[/share]';
106                 }
107                 $_REQUEST['body'] = $post;
108                 $_REQUEST['attach'] = $item['attach'];
109                 $_REQUEST['profile_uid'] = local_user();
110
111                 require_once 'mod/item.php';
112                 item_post(DI::app());
113         }
114 }