]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/helper/ApplicationUtils.php
Coding style: switch PHPCS to PSR12
[github/shaarli/Shaarli.git] / application / helper / ApplicationUtils.php
CommitLineData
2e28269b 1<?php
c2cd15da 2namespace Shaarli\Helper;
9778a155
V
3
4use Exception;
5use Shaarli\Config\ConfigManager;
6
2e28269b
V
7/**
8 * Shaarli (application) utilities
9 */
10class ApplicationUtils
11{
b786c883
A
12 /**
13 * @var string File containing the current version
14 */
15 public static $VERSION_FILE = 'shaarli_version.php';
16
0cf76ccb
A
17 public static $GITHUB_URL = 'https://github.com/shaarli/Shaarli';
18 public static $GIT_RAW_URL = 'https://raw.githubusercontent.com/shaarli/Shaarli';
19 public static $GIT_BRANCHES = array('latest', 'stable');
4bf35ba5
V
20 private static $VERSION_START_TAG = '<?php /* ';
21 private static $VERSION_END_TAG = ' */ ?>';
22
23 /**
24 * Gets the latest version code from the Git repository
25 *
26 * The code is read from the raw content of the version file on the Git server.
27 *
7af9a418
A
28 * @param string $url URL to reach to get the latest version.
29 * @param int $timeout Timeout to check the URL (in seconds).
30 *
4bf35ba5
V
31 * @return mixed the version code from the repository if available, else 'false'
32 */
f211e417 33 public static function getLatestGitVersionCode($url, $timeout = 2)
4bf35ba5 34 {
1557cefb 35 list($headers, $data) = get_http_response($url, $timeout);
4bf35ba5
V
36
37 if (strpos($headers[0], '200 OK') === false) {
38 error_log('Failed to retrieve ' . $url);
39 return false;
40 }
41
b786c883
A
42 return $data;
43 }
44
45 /**
46 * Retrieve the version from a remote URL or a file.
47 *
48 * @param string $remote URL or file to fetch.
49 * @param int $timeout For URLs fetching.
50 *
51 * @return bool|string The version or false if it couldn't be retrieved.
52 */
53 public static function getVersion($remote, $timeout = 2)
54 {
55 if (startsWith($remote, 'http')) {
56 if (($data = static::getLatestGitVersionCode($remote, $timeout)) === false) {
57 return false;
58 }
59 } else {
9778a155 60 if (!is_file($remote)) {
b786c883
A
61 return false;
62 }
63 $data = file_get_contents($remote);
64 }
65
4bf35ba5
V
66 return str_replace(
67 array(self::$VERSION_START_TAG, self::$VERSION_END_TAG, PHP_EOL),
68 array('', '', ''),
69 $data
70 );
71 }
72
73 /**
74 * Checks if a new Shaarli version has been published on the Git repository
75 *
76 * Updates checks are run periodically, according to the following criteria:
77 * - the update checks are enabled (install, global config);
78 * - the user is logged in (or this is an open instance);
79 * - the last check is older than a given interval;
80 * - the check is non-blocking if the HTTPS connection to Git fails;
81 * - in case of failure, the update file's modification date is updated,
82 * to avoid intempestive connection attempts.
83 *
84 * @param string $currentVersion the current version code
85 * @param string $updateFile the file where to store the latest version code
86 * @param int $checkInterval the minimum interval between update checks (in seconds
87 * @param bool $enableCheck whether to check for new versions
88 * @param bool $isLoggedIn whether the user is logged in
7af9a418 89 * @param string $branch check update for the given branch
4bf35ba5 90 *
4a7af975
V
91 * @throws Exception an invalid branch has been set for update checks
92 *
4bf35ba5
V
93 * @return mixed the new version code if available and greater, else 'false'
94 */
f211e417
V
95 public static function checkUpdate(
96 $currentVersion,
97 $updateFile,
98 $checkInterval,
99 $enableCheck,
100 $isLoggedIn,
101 $branch = 'stable'
102 ) {
b897c81f
A
103 // Do not check versions for visitors
104 // Do not check if the user doesn't want to
105 // Do not check with dev version
9778a155 106 if (!$isLoggedIn || empty($enableCheck) || $currentVersion === 'dev') {
4bf35ba5
V
107 return false;
108 }
109
110 if (is_file($updateFile) && (filemtime($updateFile) > time() - $checkInterval)) {
111 // Shaarli has checked for updates recently - skip HTTP query
112 $latestKnownVersion = file_get_contents($updateFile);
113
114 if (version_compare($latestKnownVersion, $currentVersion) == 1) {
115 return $latestKnownVersion;
116 }
117 return false;
118 }
119
9778a155 120 if (!in_array($branch, self::$GIT_BRANCHES)) {
4407b45f
V
121 throw new Exception(
122 'Invalid branch selected for updates: "' . $branch . '"'
123 );
124 }
125
4bf35ba5
V
126 // Late Static Binding allows overriding within tests
127 // See http://php.net/manual/en/language.oop5.late-static-bindings.php
b786c883 128 $latestVersion = static::getVersion(
0cf76ccb 129 self::$GIT_RAW_URL . '/' . $branch . '/' . self::$VERSION_FILE
4bf35ba5
V
130 );
131
9778a155 132 if (!$latestVersion) {
4bf35ba5
V
133 // Only update the file's modification date
134 file_put_contents($updateFile, $currentVersion);
135 return false;
136 }
137
138 // Update the file's content and modification date
139 file_put_contents($updateFile, $latestVersion);
140
141 if (version_compare($latestVersion, $currentVersion) == 1) {
142 return $latestVersion;
143 }
144
145 return false;
146 }
2e28269b 147
c9cf2715
V
148 /**
149 * Checks the PHP version to ensure Shaarli can run
150 *
151 * @param string $minVersion minimum PHP required version
152 * @param string $curVersion current PHP version (use PHP_VERSION)
153 *
def39d0d
A
154 * @return bool true on success
155 *
c9cf2715
V
156 * @throws Exception the PHP version is not supported
157 */
158 public static function checkPHPVersion($minVersion, $curVersion)
159 {
160 if (version_compare($curVersion, $minVersion) < 0) {
12266213 161 $msg = t(
c9cf2715 162 'Your PHP version is obsolete!'
9778a155
V
163 . ' Shaarli requires at least PHP %s, and thus cannot run.'
164 . ' Your PHP version has known security vulnerabilities and should be'
165 . ' updated as soon as possible.'
c9cf2715 166 );
12266213 167 throw new Exception(sprintf($msg, $minVersion));
c9cf2715 168 }
def39d0d 169 return true;
c9cf2715
V
170 }
171
2e28269b
V
172 /**
173 * Checks Shaarli has the proper access permissions to its resources
174 *
0cf76ccb
A
175 * @param ConfigManager $conf Configuration Manager instance.
176 * @param bool $minimalMode In minimal mode we only check permissions to be able to display a template.
177 * Currently we only need to be able to read the theme and write in raintpl cache.
278d9ee2 178 *
2e28269b
V
179 * @return array A list of the detected configuration issues
180 */
0cf76ccb 181 public static function checkResourcePermissions(ConfigManager $conf, bool $minimalMode = false): array
2e28269b 182 {
0cf76ccb 183 $errors = [];
e4325b15 184 $rainTplDir = rtrim($conf->get('resource.raintpl_tpl'), '/');
2e28269b
V
185
186 // Check script and template directories are readable
0cf76ccb 187 foreach ([
9778a155
V
188 'application',
189 'inc',
190 'plugins',
191 $rainTplDir,
192 $rainTplDir . '/' . $conf->get('resource.theme'),
0cf76ccb 193 ] as $path) {
9778a155
V
194 if (!is_readable(realpath($path))) {
195 $errors[] = '"' . $path . '" ' . t('directory is not readable');
2e28269b
V
196 }
197 }
198
7af9a418 199 // Check cache and data directories are readable and writable
0cf76ccb
A
200 if ($minimalMode) {
201 $folders = [
202 $conf->get('resource.raintpl_tmp'),
203 ];
204 } else {
205 $folders = [
206 $conf->get('resource.thumbnails_cache'),
207 $conf->get('resource.data_dir'),
208 $conf->get('resource.page_cache'),
209 $conf->get('resource.raintpl_tmp'),
210 ];
211 }
212
213 foreach ($folders as $path) {
9778a155
V
214 if (!is_readable(realpath($path))) {
215 $errors[] = '"' . $path . '" ' . t('directory is not readable');
2e28269b 216 }
9778a155
V
217 if (!is_writable(realpath($path))) {
218 $errors[] = '"' . $path . '" ' . t('directory is not writable');
2e28269b
V
219 }
220 }
221
0cf76ccb
A
222 if ($minimalMode) {
223 return $errors;
224 }
225
7af9a418 226 // Check configuration files are readable and writable
2e28269b 227 foreach (array(
9778a155
V
228 $conf->getConfigFileExt(),
229 $conf->get('resource.datastore'),
230 $conf->get('resource.ban_file'),
231 $conf->get('resource.log'),
232 $conf->get('resource.update_check'),
233 ) as $path) {
234 if (!is_file(realpath($path))) {
2e28269b
V
235 # the file may not exist yet
236 continue;
237 }
238
9778a155
V
239 if (!is_readable(realpath($path))) {
240 $errors[] = '"' . $path . '" ' . t('file is not readable');
2e28269b 241 }
9778a155
V
242 if (!is_writable(realpath($path))) {
243 $errors[] = '"' . $path . '" ' . t('file is not writable');
2e28269b
V
244 }
245 }
246
247 return $errors;
248 }
bfe4f536
A
249
250 /**
251 * Returns a salted hash representing the current Shaarli version.
252 *
253 * Useful for assets browser cache.
254 *
255 * @param string $currentVersion of Shaarli
256 * @param string $salt User personal salt, also used for the authentication
257 *
258 * @return string version hash
259 */
260 public static function getVersionHash($currentVersion, $salt)
261 {
262 return hash_hmac('sha256', $currentVersion, $salt);
263 }
0cf76ccb
A
264
265 /**
266 * Get a list of PHP extensions used by Shaarli.
267 *
268 * @return array[] List of extension with following keys:
269 * - name: extension name
270 * - required: whether the extension is required to use Shaarli
271 * - desc: short description of extension usage in Shaarli
272 * - loaded: whether the extension is properly loaded or not
273 */
274 public static function getPhpExtensionsRequirement(): array
275 {
276 $extensions = [
277 ['name' => 'json', 'required' => true, 'desc' => t('Configuration parsing')],
278 ['name' => 'simplexml', 'required' => true, 'desc' => t('Slim Framework (routing, etc.)')],
279 ['name' => 'mbstring', 'required' => true, 'desc' => t('Multibyte (Unicode) string support')],
280 ['name' => 'gd', 'required' => false, 'desc' => t('Required to use thumbnails')],
281 ['name' => 'intl', 'required' => false, 'desc' => t('Localized text sorting (e.g. e->รจ->f)')],
282 ['name' => 'curl', 'required' => false, 'desc' => t('Better retrieval of bookmark metadata and thumbnail')],
283 ['name' => 'gettext', 'required' => false, 'desc' => t('Use the translation system in gettext mode')],
284 ['name' => 'ldap', 'required' => false, 'desc' => t('Login using LDAP server')],
285 ];
286
287 foreach ($extensions as &$extension) {
288 $extension['loaded'] = extension_loaded($extension['name']);
289 }
290
291 return $extensions;
292 }
293
294 /**
295 * Return the EOL date of given PHP version. If the version is unknown,
296 * we return today + 2 years.
297 *
298 * @param string $fullVersion PHP version, e.g. 7.4.7
299 *
300 * @return string Date format: YYYY-MM-DD
301 */
302 public static function getPhpEol(string $fullVersion): string
303 {
304 preg_match('/(\d+\.\d+)\.\d+/', $fullVersion, $matches);
305
306 return [
307 '7.1' => '2019-12-01',
308 '7.2' => '2020-11-30',
309 '7.3' => '2021-12-06',
310 '7.4' => '2022-11-28',
311 '8.0' => '2023-12-01',
312 ][$matches[1]] ?? (new \DateTime('+2 year'))->format('Y-m-d');
313 }
2e28269b 314}