2020-03-11 20:29:08 +00:00
|
|
|
<?php
|
2020-03-15 21:21:11 +00:00
|
|
|
|
2020-05-11 19:15:08 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
2020-03-21 20:18:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Common utility functions
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category Util
|
|
|
|
*
|
|
|
|
* @author Hugo Sales <hugo@fc.up.pt>
|
|
|
|
* @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2020-03-11 20:29:08 +00:00
|
|
|
|
|
|
|
namespace App\Util;
|
|
|
|
|
2020-06-04 22:00:05 +01:00
|
|
|
use App\Core\DB\DB;
|
2020-07-21 22:35:10 +01:00
|
|
|
use App\Core\Router;
|
2020-07-24 00:33:00 +01:00
|
|
|
use App\Core\Security;
|
|
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
2020-05-13 13:10:24 +01:00
|
|
|
|
2020-03-13 22:31:56 +00:00
|
|
|
abstract class Common
|
2020-03-11 20:29:08 +00:00
|
|
|
{
|
2020-05-10 21:43:15 +01:00
|
|
|
/**
|
|
|
|
* Access sysadmin's configuration preferences for GNU social
|
|
|
|
*/
|
2020-05-13 13:10:24 +01:00
|
|
|
public static function config(string $section, string $setting)
|
2020-03-13 22:31:56 +00:00
|
|
|
{
|
2020-07-22 10:41:09 +01:00
|
|
|
$c = DB::find('config', ['section' => $section, 'setting' => $setting]);
|
|
|
|
if ($c === null) {
|
2020-07-22 12:45:03 +01:00
|
|
|
throw new \Exception("The field section = {$section} and setting = {$setting} doesn't exist");
|
2020-07-22 10:41:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return unserialize($c->getValue());
|
2020-03-13 22:31:56 +00:00
|
|
|
}
|
2020-05-15 16:24:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set sysadmin's configuration preferences for GNU social
|
|
|
|
*/
|
2020-07-21 22:35:10 +01:00
|
|
|
public static function setConfig(string $section, string $setting, mixed $value): void
|
2020-05-15 16:24:24 +01:00
|
|
|
{
|
2020-07-18 03:16:18 +01:00
|
|
|
$ojb = DB::getPartialReference('config', ['section' => $section, 'setting' => $setting]);
|
2020-05-15 16:24:24 +01:00
|
|
|
$obj->setValue(serialize($value));
|
|
|
|
DB::persist($obj);
|
|
|
|
DB::flush();
|
|
|
|
}
|
2020-05-16 21:42:31 +01:00
|
|
|
|
2020-07-24 00:33:00 +01:00
|
|
|
public static function user(): UserInterface
|
|
|
|
{
|
|
|
|
return Security::getUser();
|
|
|
|
}
|
|
|
|
|
2020-07-21 22:35:10 +01:00
|
|
|
/**
|
|
|
|
* Is the given string identical to a system path or route?
|
|
|
|
* This could probably be put in some other class, but at
|
|
|
|
* at the moment, only Nickname requires this functionality.
|
|
|
|
*/
|
|
|
|
public static function isSystemPath(string $str): bool
|
|
|
|
{
|
2020-07-22 02:56:12 +01:00
|
|
|
// TODO Implement
|
|
|
|
return false;
|
2020-07-21 22:35:10 +01:00
|
|
|
|
2020-07-22 02:56:12 +01:00
|
|
|
// $paths = [];
|
2020-07-21 22:35:10 +01:00
|
|
|
|
2020-07-22 02:56:12 +01:00
|
|
|
// // All directory and file names in site root should be blacklisted
|
|
|
|
// $d = dir(PUBLICDIR);
|
|
|
|
// while (false !== ($entry = $d->read())) {
|
|
|
|
// $paths[$entry] = true;
|
|
|
|
// }
|
|
|
|
// $d->close();
|
2020-07-21 22:35:10 +01:00
|
|
|
|
2020-07-22 02:56:12 +01:00
|
|
|
// // All top level names in the router should be blocked
|
|
|
|
// $router = Router::get();
|
|
|
|
// foreach ($router->m->getPaths() as $path) {
|
|
|
|
// if (preg_match('/^([^\/\?]+)[\/\?]/', $path, $matches) && isset($matches[1])) {
|
|
|
|
// $paths[$matches[1]] = true;
|
|
|
|
// }
|
|
|
|
// }
|
2020-07-21 22:35:10 +01:00
|
|
|
|
2020-07-22 02:56:12 +01:00
|
|
|
// // FIXME: this assumes the 'path' is in the first-level directory, though common it's not certain
|
|
|
|
// foreach (['avatar', 'attachments'] as $cat) {
|
|
|
|
// $paths[basename(common_config($cat, 'path'))] = true;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return in_array($str, array_keys($paths));
|
2020-07-21 22:35:10 +01:00
|
|
|
}
|
|
|
|
|
2020-05-16 21:42:31 +01:00
|
|
|
/**
|
|
|
|
* An internal helper function that converts a $size from php.ini for
|
|
|
|
* file size limit from the 'human-readable' shorthand into a int. If
|
|
|
|
* $size is empty (the value is not set in php.ini), returns a default
|
2020-06-23 22:22:27 +01:00
|
|
|
* value (3M)
|
2020-06-04 22:00:05 +01:00
|
|
|
*
|
2020-05-16 21:42:31 +01:00
|
|
|
* @return int the php.ini upload limit in machine-readable format
|
|
|
|
*/
|
2020-07-21 22:35:10 +01:00
|
|
|
public static function sizeStrToInt(string $size): int
|
2020-05-16 21:42:31 +01:00
|
|
|
{
|
|
|
|
// `memory_limit` can be -1 and `post_max_size` can be 0
|
|
|
|
// for unlimited. Consistency.
|
|
|
|
if (empty($size) || $size === '-1' || $size === '0') {
|
|
|
|
$size = '3M';
|
|
|
|
}
|
|
|
|
|
|
|
|
$suffix = substr($size, -1);
|
|
|
|
$size = (int) substr($size, 0, -1);
|
|
|
|
switch (strtoupper($suffix)) {
|
|
|
|
case 'P':
|
|
|
|
$size *= 1024;
|
|
|
|
// no break
|
|
|
|
case 'T':
|
|
|
|
$size *= 1024;
|
|
|
|
// no break
|
|
|
|
case 'G':
|
|
|
|
$size *= 1024;
|
|
|
|
// no break
|
|
|
|
case 'M':
|
|
|
|
$size *= 1024;
|
|
|
|
// no break
|
|
|
|
case 'K':
|
|
|
|
$size *= 1024;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Uses `size_str_to_int()` to find the smallest value for uploads in php.ini
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2020-07-21 22:35:10 +01:00
|
|
|
public static function getPreferredPhpUploadLimit(): int
|
2020-05-16 21:42:31 +01:00
|
|
|
{
|
|
|
|
return min(
|
2020-07-21 22:35:10 +01:00
|
|
|
self::sizeStrToInt(ini_get('post_max_size')),
|
|
|
|
self::sizeStrToInt(ini_get('upload_max_filesize')),
|
|
|
|
self::sizeStrToInt(ini_get('memory_limit'))
|
2020-05-16 21:42:31 +01:00
|
|
|
);
|
|
|
|
}
|
2020-03-11 20:29:08 +00:00
|
|
|
}
|