. // }}} /** * Common utility functions * * @package GNUsocial * @category Util * * @author Hugo Sales * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Util; use App\Core\DB\DB; use App\Core\Router\Router; use App\Core\Security; use App\Entity\GSActor; use App\Entity\LocalUser; use App\Util\Exception\NoLoggedInUser; use Exception; use Functional as F; use Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface; abstract class Common { private static ?array $config = null; public static function setConfigBag(ContainerBagInterface $config) { self::$config = $config->get('gnusocial'); } /** * Access sysadmin's configuration preferences for GNU social */ public static function config(string $section, string $setting) { return $config[$section][$setting]; } /** * Set sysadmin's configuration preferences for GNU social * * @param mixed $value */ public static function setConfig(string $section, string $setting, $value): void { throw new Exception('Implement this, ya dingus'); $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)); DB::flush(); } public static function user(): ?LocalUser { return Security::getUser(); } public static function actor(): ?GSActor { return self::user()->getActor(); } public static function ensureLoggedIn(): LocalUser { if (($user = self::user()) == null) { throw new NoLoggedInUser(); // TODO Maybe redirect to login page and back } else { return $user; } } /** * 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 { try { Router::match('/' . $str); return true; } catch (Exception $e) { return false; } } /** * Remove keys from the _values_ of $keys from the array $from */ public static function arrayRemoveKeys(array $from, array $keys, bool $strict = false) { return F\filter($from, function ($_, $key) use ($keys, $strict) { return !in_array($key, $keys, $strict); }); } /** * 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 * value (3M) * * @return int the php.ini upload limit in machine-readable format */ public static function sizeStrToInt(string $size): int { // `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 */ public static function getPreferredPhpUploadLimit(): int { return min( self::sizeStrToInt(ini_get('post_max_size')), self::sizeStrToInt(ini_get('upload_max_filesize')), self::sizeStrToInt(ini_get('memory_limit')) ); } }