]> git.mxchange.org Git - friendica.git/blob - src/Module/BaseApi.php
Merge remote-tracking branch 'upstream/develop' into api-again
[friendica.git] / src / Module / BaseApi.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;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Logger;
26 use Friendica\Core\System;
27 use Friendica\Database\Database;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Network\HTTPException;
31 use Friendica\Util\DateTimeFormat;
32
33 require_once __DIR__ . '/../../include/api.php';
34
35 class BaseApi extends BaseModule
36 {
37         /**
38          * @var string json|xml|rss|atom
39          */
40         protected static $format = 'json';
41         /**
42          * @var bool|int
43          */
44         protected static $current_user_id;
45
46         public static function init(array $parameters = [])
47         {
48                 $arguments = DI::args();
49
50                 if (substr($arguments->getCommand(), -4) === '.xml') {
51                         self::$format = 'xml';
52                 }
53                 if (substr($arguments->getCommand(), -4) === '.rss') {
54                         self::$format = 'rss';
55                 }
56                 if (substr($arguments->getCommand(), -4) === '.atom') {
57                         self::$format = 'atom';
58                 }
59         }
60
61         public static function delete(array $parameters = [])
62         {
63                 if (!api_user()) {
64                         throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
65                 }
66
67                 $a = DI::app();
68
69                 if (!empty($a->user['uid']) && $a->user['uid'] != api_user()) {
70                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
71                 }
72         }
73
74         public static function patch(array $parameters = [])
75         {
76                 if (!api_user()) {
77                         throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
78                 }
79
80                 $a = DI::app();
81
82                 if (!empty($a->user['uid']) && $a->user['uid'] != api_user()) {
83                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
84                 }
85         }
86
87         public static function post(array $parameters = [])
88         {
89                 if (!api_user()) {
90                         throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
91                 }
92
93                 $a = DI::app();
94
95                 if (!empty($a->user['uid']) && $a->user['uid'] != api_user()) {
96                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
97                 }
98         }
99
100         public static function put(array $parameters = [])
101         {
102                 if (!api_user()) {
103                         throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
104                 }
105
106                 $a = DI::app();
107
108                 if (!empty($a->user['uid']) && $a->user['uid'] != api_user()) {
109                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
110                 }
111         }
112
113         public static function unsupported(string $method = 'all')
114         {
115                 $path = DI::args()->getQueryString();
116                 Logger::info('Unimplemented API call', ['method' => $method, 'path' => $path, 'agent' => $_SERVER['HTTP_USER_AGENT'] ?? '', 'request' => $_REQUEST ?? []]);
117                 $error = DI::l10n()->t('API endpoint %s %s is not implemented', strtoupper($method), $path);
118                 $error_description = DI::l10n()->t('The API endpoint is currently not implemented but might be in the future.');;
119                 $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
120                 System::jsonError(501, $errorobj->toArray());
121         }
122
123         /**
124          * Log in user via OAuth1 or Simple HTTP Auth.
125          *
126          * Simple Auth allow username in form of <pre>user@server</pre>, ignoring server part
127          *
128          * @return bool Was a user authenticated?
129          * @throws HTTPException\ForbiddenException
130          * @throws HTTPException\UnauthorizedException
131          * @throws HTTPException\InternalServerErrorException
132          * @hook  'authenticate'
133          *               array $addon_auth
134          *               'username' => username from login form
135          *               'password' => password from login form
136          *               'authenticated' => return status,
137          *               'user_record' => return authenticated user record
138          */
139         protected static function login()
140         {
141                 if (empty(self::$current_user_id)) {
142                         self::$current_user_id = self::getUserByBearer();
143                 }
144
145                 if (empty(self::$current_user_id)) {
146                         api_login(DI::app());
147                 }
148
149                 self::$current_user_id = api_user();
150
151                 return (bool)self::$current_user_id;
152         }
153
154         /**
155          * Get current user id, returns 0 if not logged in
156          *
157          * @return int User ID
158          */
159         protected static function getCurrentUserID()
160         {
161                 if (empty(self::$current_user_id)) {
162                         self::$current_user_id = self::getUserByBearer();
163                 }
164
165                 if (empty(self::$current_user_id)) {
166                         api_login(DI::app(), false);
167
168                         self::$current_user_id = api_user();
169                 }
170
171                 return (int)self::$current_user_id;
172         }
173
174         private static function getUserByBearer()
175         {
176                 $authorization = $_SERVER['HTTP_AUTHORIZATION'] ?? '';
177                 $authorization = $_SERVER['AUTHORIZATION'] ?? $authorization;
178
179                 if (substr($authorization, 0, 7) != 'Bearer ') {
180                         return 0;
181                 }
182
183                 $bearer = trim(substr($authorization, 7));
184                 $condition = ['access_token' => $bearer];
185                 $token = DBA::selectFirst('application-token', ['uid'], $condition);
186                 if (!DBA::isResult($token)) {
187                         Logger::warning('Token not found', $condition);
188                         return 0;
189                 }
190                 Logger::info('Token found', $token);
191                 return $token['uid'];
192         }
193
194         public static function getApplication()
195         {
196                 $redirect_uri = !isset($_REQUEST['redirect_uri']) ? '' : $_REQUEST['redirect_uri'];
197                 $client_id    = !isset($_REQUEST['client_id']) ? '' : $_REQUEST['client_id'];
198
199                 if (empty($redirect_uri) || empty($client_id)) {
200                         Logger::warning('Incomplete request');
201                         return [];
202                 }
203
204                 $condition = ['redirect_uri' => $redirect_uri, 'client_id' => $client_id];
205                 $application = DBA::selectFirst('application', [], $condition);
206                 if (!DBA::isResult($application)) {
207                         Logger::warning('Application not found', $condition);
208                         return [];
209                 }
210                 return $application;
211         }
212
213         public static function getTokenForUser(array $application, int $uid)
214         {
215                 $code         = bin2hex(random_bytes(32));
216                 $access_token = bin2hex(random_bytes(32));
217
218                 $fields = ['application-id' => $application['id'], 'uid' => $uid, 'code' => $code, 'access_token' => $access_token, 'created_at' => DateTimeFormat::utcNow(DateTimeFormat::MYSQL)];
219                 if (!DBA::insert('application-token', $fields, Database::INSERT_UPDATE)) {
220                         return [];
221                 }
222
223                 return DBA::selectFirst('application-token', [], ['application-id' => $application['id'], 'uid' => $uid]);
224         }
225         /**
226          * Get user info array.
227          *
228          * @param int|string $contact_id Contact ID or URL
229          * @return array|bool
230          * @throws HTTPException\BadRequestException
231          * @throws HTTPException\InternalServerErrorException
232          * @throws HTTPException\UnauthorizedException
233          * @throws \ImagickException
234          */
235         protected static function getUser($contact_id = null)
236         {
237                 return api_get_user(DI::app(), $contact_id);
238         }
239
240         /**
241          * Formats the data according to the data type
242          *
243          * @param string $root_element
244          * @param array $data An array with a single element containing the returned result
245          * @return false|string
246          */
247         protected static function format(string $root_element, array $data)
248         {
249                 $return = api_format_data($root_element, self::$format, $data);
250
251                 switch (self::$format) {
252                         case "xml":
253                                 header("Content-Type: text/xml");
254                                 break;
255                         case "json":
256                                 header("Content-Type: application/json");
257                                 if (!empty($return)) {
258                                         $json = json_encode(end($return));
259                                         if (!empty($_GET['callback'])) {
260                                                 $json = $_GET['callback'] . "(" . $json . ")";
261                                         }
262                                         $return = $json;
263                                 }
264                                 break;
265                         case "rss":
266                                 header("Content-Type: application/rss+xml");
267                                 $return  = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $return;
268                                 break;
269                         case "atom":
270                                 header("Content-Type: application/atom+xml");
271                                 $return = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $return;
272                                 break;
273                 }
274
275                 return $return;
276         }
277
278         /**
279          * Creates the XML from a JSON style array
280          *
281          * @param $data
282          * @param $root_element
283          * @return string
284          */
285         protected static function createXml($data, $root_element)
286         {
287                 return api_create_xml($data, $root_element);
288         }
289 }