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
|
2020-08-05 17:20:08 +01:00
|
|
|
|
2020-05-11 19:15:08 +01:00
|
|
|
// 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-08-05 17:20:08 +01:00
|
|
|
|
2020-05-11 19:15:08 +01:00
|
|
|
// }}}
|
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-08-14 16:43:06 +01:00
|
|
|
use App\Core\Router\Router;
|
2020-07-24 00:33:00 +01:00
|
|
|
use App\Core\Security;
|
2020-08-13 02:23:22 +01:00
|
|
|
use App\Entity\GSActor;
|
2020-08-08 17:10:25 +01:00
|
|
|
use App\Entity\LocalUser;
|
2020-09-04 19:46:12 +01:00
|
|
|
use App\Util\Exception\NoLoggedInUser;
|
2020-08-14 01:19:26 +01:00
|
|
|
use Exception;
|
2020-07-30 23:48:24 +01:00
|
|
|
use Functional as F;
|
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-25 15:42:00 +01:00
|
|
|
*
|
|
|
|
* @param mixed $value
|
2020-05-15 16:24:24 +01:00
|
|
|
*/
|
2020-07-25 15:42:00 +01:00
|
|
|
public static function setConfig(string $section, string $setting, $value): void
|
2020-05-15 16:24:24 +01:00
|
|
|
{
|
2020-07-25 15:42:00 +01:00
|
|
|
$c = DB::getPartialReference('config', ['section' => $section, 'setting' => $setting]);
|
|
|
|
if ($c === null) {
|
|
|
|
throw new \Exception("The field section = {$section} and setting = {$setting} doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
$c->setValue(serialize($value));
|
2020-05-15 16:24:24 +01:00
|
|
|
DB::flush();
|
|
|
|
}
|
2020-05-16 21:42:31 +01:00
|
|
|
|
2020-08-09 13:44:47 +01:00
|
|
|
public static function user(): ?LocalUser
|
2020-07-24 00:33:00 +01:00
|
|
|
{
|
|
|
|
return Security::getUser();
|
|
|
|
}
|
|
|
|
|
2020-08-13 02:23:22 +01:00
|
|
|
public static function actor(): ?GSActor
|
2020-08-08 17:10:25 +01:00
|
|
|
{
|
2020-08-13 02:23:22 +01:00
|
|
|
return self::user()->getActor();
|
2020-08-08 17:10:25 +01:00
|
|
|
}
|
|
|
|
|
2020-08-28 21:16:26 +01:00
|
|
|
public static function ensureLoggedIn(): LocalUser
|
|
|
|
{
|
|
|
|
if (($user = self::user()) == null) {
|
|
|
|
throw new NoLoggedInUser();
|
|
|
|
// TODO Maybe redirect to login page and back
|
|
|
|
} else {
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-08-14 01:19:26 +01:00
|
|
|
try {
|
|
|
|
Router::match('/' . $str);
|
|
|
|
return true;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-07-21 22:35:10 +01:00
|
|
|
}
|
|
|
|
|
2020-07-30 23:48:24 +01:00
|
|
|
/**
|
|
|
|
* Remove keys from the _values_ of $keys from the array $from
|
|
|
|
*/
|
2020-08-05 17:20:08 +01:00
|
|
|
public static function arrayRemoveKeys(array $from, array $keys, bool $strict = false)
|
2020-07-30 23:48:24 +01:00
|
|
|
{
|
2020-08-05 17:20:08 +01:00
|
|
|
return F\filter($from, function ($_, $key) use ($keys, $strict) { return !in_array($key, $keys, $strict); });
|
2020-07-30 23:48:24 +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
|
|
|
}
|