src/Tweeper.php: allow overriding the User-Agent in cURL requests
[tweeper.git] / autoload.php
1 <?php
2
3 /**
4  * @file
5  * Tweeper - some logic to allow tweeper to run with or without composer.
6  *
7  * Copyright (C) 2016-2018  Antonio Ospite <ao2@ao2.it>
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23 $package_name = 'ao2/tweeper';
24
25 if (file_exists(__DIR__ . '/vendor/autoload.php')) {
26   /*
27    * If "composer install" has been executed, use the composer autoloader.
28    *
29    * Using __DIR__ is OK as long as this file is on the same level of the
30    * project "vendor/" directory (usually the project root directory).
31    */
32   require __DIR__ . '/vendor/autoload.php';
33 }
34 elseif (preg_match('/' . preg_quote('/vendor/' . $package_name, '/') . '$/', __DIR__)) {
35   /*
36    * If running from a "vendor/" directory of another project use the
37    * autoloader of the parent project.
38    *
39    * This covers the case of running from a symlink in ./vendor/bin/ because
40    * __DIR__ contains the *real path* of this file.
41    *
42    * Note that using __DIR__ here and going back two levels is OK under the
43    * assumptions that this file is in the project root directory, and that the
44    * package name has the structure VENDOR/PROJECT_NAME.
45    */
46   require __DIR__ . '/../../autoload.php';
47 }
48 else {
49   /*
50    * Otherwise, run without composer:
51    *
52    *  1. register our own autoloader function for the Tweeper class
53    *
54    * The implementation follows the one suggested in:
55    * http://www.php-fig.org/psr/psr-4/
56    */
57   spl_autoload_register(function ($fully_qualified_class_name) {
58     /* This matches the data defined for the PSR-4 autoloader in composer.json */
59     $namespace_prefix = 'Tweeper\\';
60     $base_directory = 'src/';
61
62     $len = strlen($namespace_prefix);
63     if (strncmp($namespace_prefix, $fully_qualified_class_name, $len) !== 0) {
64       return;
65     }
66
67     $class_relative = substr($fully_qualified_class_name, $len);
68
69     $file_path = $base_directory . str_replace('\\', '/', $class_relative) . '.php';
70
71     require_once $file_path;
72   });
73
74   /*
75    *  2. load the system-wide autoloader from php-symphony-serializer
76    *
77    * This allows to run tweeper without composer, as long as the Symphony
78    * dependencies are available system-wide.
79    *
80    * For example, the Debian package takes care of that.
81    */
82   require_once 'Symfony/Component/Serializer/autoload.php';
83 }