]> git.mxchange.org Git - friendica.git/blob - src/App/Router.php
Add OPTIONS endpoint
[friendica.git] / src / App / Router.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\App;
23
24 use Dice\Dice;
25 use FastRoute\DataGenerator\GroupCountBased;
26 use FastRoute\Dispatcher;
27 use FastRoute\RouteCollector;
28 use FastRoute\RouteParser\Std;
29 use Friendica\Capabilities\ICanHandleRequests;
30 use Friendica\Core\Addon;
31 use Friendica\Core\Cache\Enum\Duration;
32 use Friendica\Core\Cache\Capability\ICanCache;
33 use Friendica\Core\Config\Capability\IManageConfigValues;
34 use Friendica\Core\Hook;
35 use Friendica\Core\L10n;
36 use Friendica\Core\Lock\Capability\ICanLock;
37 use Friendica\LegacyModule;
38 use Friendica\Module\HTTPException\MethodNotAllowed;
39 use Friendica\Module\HTTPException\PageNotFound;
40 use Friendica\Module\Special\Options;
41 use Friendica\Network\HTTPException;
42 use Friendica\Network\HTTPException\MethodNotAllowedException;
43 use Friendica\Network\HTTPException\NotFoundException;
44 use Psr\Log\LoggerInterface;
45
46 /**
47  * Wrapper for FastRoute\Router
48  *
49  * This wrapper only makes use of a subset of the router features, mainly parses a route rule to return the relevant
50  * module class.
51  *
52  * Actual routes are defined in App->collectRoutes.
53  *
54  * @package Friendica\App
55  */
56 class Router
57 {
58         const DELETE  = 'DELETE';
59         const GET     = 'GET';
60         const PATCH   = 'PATCH';
61         const POST    = 'POST';
62         const PUT     = 'PUT';
63         const OPTIONS = 'OPTIONS';
64
65         const ALLOWED_METHODS = [
66                 self::DELETE,
67                 self::GET,
68                 self::PATCH,
69                 self::POST,
70                 self::PUT,
71                 self::OPTIONS
72         ];
73
74         /** @var RouteCollector */
75         protected $routeCollector;
76
77         /**
78          * @var string The HTTP method
79          */
80         private $httpMethod;
81
82         /**
83          * @var array Module parameters
84          */
85         private $parameters = [];
86
87         /** @var L10n */
88         private $l10n;
89
90         /** @var ICanCache */
91         private $cache;
92
93         /** @var ICanLock */
94         private $lock;
95
96         /** @var Arguments */
97         private $args;
98
99         /** @var IManageConfigValues */
100         private $config;
101
102         /** @var LoggerInterface */
103         private $logger;
104
105         /** @var float */
106         private $dice_profiler_threshold;
107
108         /** @var Dice */
109         private $dice;
110
111         /** @var string */
112         private $baseRoutesFilepath;
113
114         /** @var array */
115         private $server;
116
117         /**
118          * @param array               $server             The $_SERVER variable
119          * @param string              $baseRoutesFilepath The path to a base routes file to leverage cache, can be empty
120          * @param L10n                $l10n
121          * @param ICanCache           $cache
122          * @param ICanLock            $lock
123          * @param IManageConfigValues $config
124          * @param Arguments           $args
125          * @param LoggerInterface     $logger
126          * @param Dice                $dice
127          * @param RouteCollector|null $routeCollector
128          */
129         public function __construct(array $server, string $baseRoutesFilepath, L10n $l10n, ICanCache $cache, ICanLock $lock, IManageConfigValues $config, Arguments $args, LoggerInterface $logger, Dice $dice, RouteCollector $routeCollector = null)
130         {
131                 $this->baseRoutesFilepath = $baseRoutesFilepath;
132                 $this->l10n = $l10n;
133                 $this->cache = $cache;
134                 $this->lock = $lock;
135                 $this->args = $args;
136                 $this->config = $config;
137                 $this->dice = $dice;
138                 $this->server = $server;
139                 $this->logger = $logger;
140                 $this->dice_profiler_threshold = $config->get('system', 'dice_profiler_threshold', 0);
141
142                 $httpMethod = $this->server['REQUEST_METHOD'] ?? self::GET;
143
144                 $this->httpMethod = in_array($httpMethod, self::ALLOWED_METHODS) ? $httpMethod : self::GET;
145
146                 $this->routeCollector = isset($routeCollector) ?
147                         $routeCollector :
148                         new RouteCollector(new Std(), new GroupCountBased());
149
150                 if ($this->baseRoutesFilepath && !file_exists($this->baseRoutesFilepath)) {
151                         throw new HTTPException\InternalServerErrorException('Routes file path does\'n exist.');
152                 }
153         }
154
155         /**
156          * This will be called either automatically if a base routes file path was submitted,
157          * or can be called manually with a custom route array.
158          *
159          * @param array $routes The routes to add to the Router
160          *
161          * @return self The router instance with the loaded routes
162          *
163          * @throws HTTPException\InternalServerErrorException In case of invalid configs
164          */
165         public function loadRoutes(array $routes)
166         {
167                 $routeCollector = (isset($this->routeCollector) ?
168                         $this->routeCollector :
169                         new RouteCollector(new Std(), new GroupCountBased()));
170
171                 $this->addRoutes($routeCollector, $routes);
172
173                 $this->routeCollector = $routeCollector;
174
175                 // Add routes from addons
176                 Hook::callAll('route_collection', $this->routeCollector);
177
178                 return $this;
179         }
180
181         private function addRoutes(RouteCollector $routeCollector, array $routes)
182         {
183                 foreach ($routes as $route => $config) {
184                         if ($this->isGroup($config)) {
185                                 $this->addGroup($route, $config, $routeCollector);
186                         } elseif ($this->isRoute($config)) {
187                                 $routeCollector->addRoute($config[1], $route, $config[0]);
188                         } else {
189                                 throw new HTTPException\InternalServerErrorException("Wrong route config for route '" . print_r($route, true) . "'");
190                         }
191                 }
192         }
193
194         /**
195          * Adds a group of routes to a given group
196          *
197          * @param string         $groupRoute     The route of the group
198          * @param array          $routes         The routes of the group
199          * @param RouteCollector $routeCollector The route collector to add this group
200          */
201         private function addGroup(string $groupRoute, array $routes, RouteCollector $routeCollector)
202         {
203                 $routeCollector->addGroup($groupRoute, function (RouteCollector $routeCollector) use ($routes) {
204                         $this->addRoutes($routeCollector, $routes);
205                 });
206         }
207
208         /**
209          * Returns true in case the config is a group config
210          *
211          * @param array $config
212          *
213          * @return bool
214          */
215         private function isGroup(array $config)
216         {
217                 return
218                         is_array($config) &&
219                         is_string(array_keys($config)[0]) &&
220                         // This entry should NOT be a BaseModule
221                         (substr(array_keys($config)[0], 0, strlen('Friendica\Module')) !== 'Friendica\Module') &&
222                         // The second argument is an array (another routes)
223                         is_array(array_values($config)[0]);
224         }
225
226         /**
227          * Returns true in case the config is a route config
228          *
229          * @param array $config
230          *
231          * @return bool
232          */
233         private function isRoute(array $config)
234         {
235                 return
236                         // The config array should at least have one entry
237                         !empty($config[0]) &&
238                         // This entry should be a BaseModule
239                         (substr($config[0], 0, strlen('Friendica\Module')) === 'Friendica\Module') &&
240                         // Either there is no other argument
241                         (empty($config[1]) ||
242                          // Or the second argument is an array (HTTP-Methods)
243                          is_array($config[1]));
244         }
245
246         /**
247          * The current route collector
248          *
249          * @return RouteCollector|null
250          */
251         public function getRouteCollector()
252         {
253                 return $this->routeCollector;
254         }
255
256         /**
257          * Returns the relevant module class name for the given page URI or NULL if no route rule matched.
258          *
259          * @return string A Friendica\BaseModule-extending class name if a route rule matched
260          *
261          * @throws HTTPException\InternalServerErrorException
262          * @throws HTTPException\MethodNotAllowedException    If a rule matched but the method didn't
263          * @throws HTTPException\NotFoundException            If no rule matched
264          */
265         private function getModuleClass()
266         {
267                 $cmd = $this->args->getCommand();
268                 $cmd = '/' . ltrim($cmd, '/');
269
270                 $dispatcher = new Dispatcher\GroupCountBased($this->getCachedDispatchData());
271
272                 $this->parameters = [];
273
274                 $routeInfo  = $dispatcher->dispatch($this->httpMethod, $cmd);
275                 if ($routeInfo[0] === Dispatcher::FOUND) {
276                         $moduleClass = $routeInfo[1];
277                         $this->parameters = $routeInfo[2];
278                 } elseif ($routeInfo[0] === Dispatcher::METHOD_NOT_ALLOWED) {
279                         if ($this->httpMethod === static::OPTIONS) {
280                                 // Default response for HTTP OPTIONS requests in case there is no special treatment
281                                 $moduleClass = Options::class;
282                         } else {
283                                 throw new HTTPException\MethodNotAllowedException($this->l10n->t('Method not allowed for this module. Allowed method(s): %s', implode(', ', $routeInfo[1])));
284                         }
285                 } else {
286                         throw new HTTPException\NotFoundException($this->l10n->t('Page not found.'));
287                 }
288
289                 return $moduleClass;
290         }
291
292         public function getModule(?string $module_class = null): ICanHandleRequests
293         {
294                 $module_parameters = [$this->server];
295                 /**
296                  * ROUTING
297                  *
298                  * From the request URL, routing consists of obtaining the name of a BaseModule-extending class of which the
299                  * post() and/or content() static methods can be respectively called to produce a data change or an output.
300                  **/
301                 try {
302                         $module_class        = $module_class ?? $this->getModuleClass();
303                         $module_parameters[] = $this->parameters;
304                 } catch (MethodNotAllowedException $e) {
305                         $module_class = MethodNotAllowed::class;
306                 } catch (NotFoundException $e) {
307                         $moduleName = $this->args->getModuleName();
308                         // Then we try addon-provided modules that we wrap in the LegacyModule class
309                         if (Addon::isEnabled($moduleName) && file_exists("addon/{$moduleName}/{$moduleName}.php")) {
310                                 //Check if module is an app and if public access to apps is allowed or not
311                                 $privateapps = $this->config->get('config', 'private_addons', false);
312                                 if ((!local_user()) && Hook::isAddonApp($moduleName) && $privateapps) {
313                                         throw new MethodNotAllowedException($this->l10n->t("You must be logged in to use addons. "));
314                                 } else {
315                                         include_once "addon/{$moduleName}/{$moduleName}.php";
316                                         if (function_exists($moduleName . '_module')) {
317                                                 $module_parameters[] = "addon/{$moduleName}/{$moduleName}.php";
318                                                 $module_class        = LegacyModule::class;
319                                         }
320                                 }
321                         }
322
323                         /* Finally, we look for a 'standard' program module in the 'mod' directory
324                          * We emulate a Module class through the LegacyModule class
325                          */
326                         if (!$module_class && file_exists("mod/{$moduleName}.php")) {
327                                 $module_parameters[] = "mod/{$moduleName}.php";
328                                 $module_class        = LegacyModule::class;
329                         }
330
331                         $module_class = $module_class ?: PageNotFound::class;
332                 }
333
334                 $stamp = microtime(true);
335
336                 try {
337                         /** @var ICanHandleRequests $module */
338                         return $this->dice->create($module_class, $module_parameters);
339                 } finally {
340                         if ($this->dice_profiler_threshold > 0) {
341                                 $dur = floatval(microtime(true) - $stamp);
342                                 if ($dur >= $this->dice_profiler_threshold) {
343                                         $this->logger->warning('Dice module creation lasts too long.', ['duration' => round($dur, 3), 'module' => $module_class, 'parameters' => $module_parameters]);
344                                 }
345                         }
346                 }
347         }
348
349         /**
350          * If a base routes file path has been provided, we can load routes from it if the cache misses.
351          *
352          * @return array
353          * @throws HTTPException\InternalServerErrorException
354          */
355         private function getDispatchData()
356         {
357                 $dispatchData = [];
358
359                 if ($this->baseRoutesFilepath) {
360                         $dispatchData = require $this->baseRoutesFilepath;
361                         if (!is_array($dispatchData)) {
362                                 throw new HTTPException\InternalServerErrorException('Invalid base routes file');
363                         }
364                 }
365
366                 $this->loadRoutes($dispatchData);
367
368                 return $this->routeCollector->getData();
369         }
370
371         /**
372          * We cache the dispatch data for speed, as computing the current routes (version 2020.09)
373          * takes about 850ms for each requests.
374          *
375          * The cached "routerDispatchData" lasts for a day, and must be cleared manually when there
376          * is any changes in the enabled addons list.
377          *
378          * Additionally, we check for the base routes file last modification time to automatically
379          * trigger re-computing the dispatch data.
380          *
381          * @return array|mixed
382          * @throws HTTPException\InternalServerErrorException
383          */
384         private function getCachedDispatchData()
385         {
386                 $routerDispatchData = $this->cache->get('routerDispatchData');
387                 $lastRoutesFileModifiedTime = $this->cache->get('lastRoutesFileModifiedTime');
388                 $forceRecompute = false;
389
390                 if ($this->baseRoutesFilepath) {
391                         $routesFileModifiedTime = filemtime($this->baseRoutesFilepath);
392                         $forceRecompute = $lastRoutesFileModifiedTime != $routesFileModifiedTime;
393                 }
394
395                 if (!$forceRecompute && $routerDispatchData) {
396                         return $routerDispatchData;
397                 }
398
399                 if (!$this->lock->acquire('getCachedDispatchData', 0)) {
400                         // Immediately return uncached data when we can't aquire a lock
401                         return $this->getDispatchData();
402                 }
403
404                 $routerDispatchData = $this->getDispatchData();
405
406                 $this->cache->set('routerDispatchData', $routerDispatchData, Duration::DAY);
407                 if (!empty($routesFileModifiedTime)) {
408                         $this->cache->set('lastRoutesFileModifiedTime', $routesFileModifiedTime, Duration::MONTH);
409                 }
410
411                 if ($this->lock->isLocked('getCachedDispatchData')) {
412                         $this->lock->release('getCachedDispatchData');
413                 }
414
415                 return $routerDispatchData;
416         }
417 }