2020-03-10 19:04:22 +00:00
|
|
|
<?php
|
|
|
|
|
2020-09-22 23:13:36 +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
|
|
|
|
|
|
|
/**
|
|
|
|
* Symfony Kernel, which is responsible for configuring the whole application
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category Kernel
|
|
|
|
*
|
2021-02-19 23:02:40 +00:00
|
|
|
* @author Hugo Sales <hugo@hsal.es>
|
|
|
|
* @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org
|
2020-03-21 20:18:05 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2020-03-10 19:04:22 +00:00
|
|
|
namespace App;
|
|
|
|
|
2020-08-03 21:52:47 +01:00
|
|
|
use App\DependencyInjection\Compiler\ModuleManagerPass;
|
2021-02-19 23:02:40 +00:00
|
|
|
use App\DependencyInjection\Compiler\SchemaDefDriver;
|
2020-03-15 21:21:11 +00:00
|
|
|
use const PHP_VERSION_ID;
|
2020-03-10 19:04:22 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
|
|
use Symfony\Component\Config\Resource\FileResource;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
|
2020-06-23 13:43:19 +01:00
|
|
|
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
2020-03-10 19:04:22 +00:00
|
|
|
|
|
|
|
class Kernel extends BaseKernel
|
|
|
|
{
|
|
|
|
use MicroKernelTrait;
|
|
|
|
|
|
|
|
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';
|
|
|
|
|
2020-03-20 22:10:01 +00:00
|
|
|
public function __construct(string $environment, bool $debug)
|
|
|
|
{
|
|
|
|
parent::__construct($environment, $debug);
|
|
|
|
|
2020-03-28 14:39:48 +00:00
|
|
|
if (!defined('INSTALLDIR')) {
|
2020-03-20 22:10:01 +00:00
|
|
|
define('INSTALLDIR', dirname(__DIR__));
|
|
|
|
define('SRCDIR', INSTALLDIR . '/src');
|
|
|
|
define('PUBLICDIR', INSTALLDIR . '/public');
|
2020-05-09 17:50:41 +01:00
|
|
|
define('GNUSOCIAL_ENGINE_NAME', 'GNU social');
|
2020-03-20 22:10:01 +00:00
|
|
|
// MERGE Change to https://gnu.io/social/
|
2021-07-19 13:50:40 +01:00
|
|
|
define('GNUSOCIAL_PROJECT_URL', 'https://gnusocial.rocks/');
|
2020-03-20 22:10:01 +00:00
|
|
|
// MERGE Change to https://git.gnu.io/gnu/gnu-social
|
2021-07-19 13:50:40 +01:00
|
|
|
define('GNUSOCIAL_REPOSITORY_URL', 'https://code.undefinedhackers.net/GNUsocial/gnu-social');
|
2020-03-20 22:10:01 +00:00
|
|
|
// Current base version, major.minor.patch
|
2020-05-09 17:50:41 +01:00
|
|
|
define('GNUSOCIAL_BASE_VERSION', '3.0.0');
|
2020-03-20 22:10:01 +00:00
|
|
|
// 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
|
2020-05-09 17:50:41 +01:00
|
|
|
define('GNUSOCIAL_LIFECYCLE', 'dev');
|
|
|
|
define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE);
|
|
|
|
define('GNUSOCIAL_CODENAME', 'Big bang');
|
2020-07-21 22:33:50 +01:00
|
|
|
define('URL_REGEX_DOMAIN_NAME', '(?:(?!-)[A-Za-z0-9\-]{1,63}(?<!-)\.)+[A-Za-z]{2,10}');
|
2020-03-20 22:10:01 +00:00
|
|
|
|
|
|
|
// Work internally in UTC
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
|
|
|
|
// Work internally with UTF-8
|
|
|
|
mb_internal_encoding('UTF-8');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-06 19:47:15 +00:00
|
|
|
/**
|
|
|
|
* Symfony framework function override responsible for registering
|
|
|
|
* bundles (similar to our modules)
|
|
|
|
*/
|
2020-03-10 19:04:22 +00:00
|
|
|
public function registerBundles(): iterable
|
|
|
|
{
|
2020-03-15 21:21:11 +00:00
|
|
|
$contents = require $this->getProjectDir() . '/config/bundles.php';
|
2020-03-10 19:04:22 +00:00
|
|
|
foreach ($contents as $class => $envs) {
|
|
|
|
if ($envs[$this->environment] ?? $envs['all'] ?? false) {
|
|
|
|
yield new $class();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProjectDir(): string
|
|
|
|
{
|
2020-03-11 20:29:08 +00:00
|
|
|
return dirname(__DIR__);
|
2020-03-10 19:04:22 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 19:47:15 +00:00
|
|
|
/**
|
|
|
|
* Configure the container. A 'compile-time' step in the Symfony
|
|
|
|
* framework that allows caching of the initialization of all
|
|
|
|
* services and modules
|
|
|
|
*/
|
2020-03-10 19:04:22 +00:00
|
|
|
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
|
|
|
|
{
|
2020-03-15 21:21:11 +00:00
|
|
|
$container->addResource(new FileResource($this->getProjectDir() . '/config/bundles.php'));
|
2020-03-11 20:29:08 +00:00
|
|
|
$container->setParameter('container.dumper.inline_class_loader', PHP_VERSION_ID < 70400 || $this->debug);
|
2020-03-10 19:04:22 +00:00
|
|
|
$container->setParameter('container.dumper.inline_factories', true);
|
2020-03-20 22:10:01 +00:00
|
|
|
|
2020-03-15 21:21:11 +00:00
|
|
|
$confDir = $this->getProjectDir() . '/config';
|
2020-03-10 19:04:22 +00:00
|
|
|
|
2020-03-15 21:21:11 +00:00
|
|
|
$loader->load($confDir . '/{packages}/*' . self::CONFIG_EXTS, 'glob');
|
|
|
|
$loader->load($confDir . '/{packages}/' . $this->environment . '/*' . self::CONFIG_EXTS, 'glob');
|
|
|
|
$loader->load($confDir . '/{services}' . self::CONFIG_EXTS, 'glob');
|
|
|
|
$loader->load($confDir . '/{services}_' . $this->environment . self::CONFIG_EXTS, 'glob');
|
2020-09-22 23:13:36 +01:00
|
|
|
|
2021-04-15 12:42:45 +01:00
|
|
|
$module_templates = array_merge(glob(INSTALLDIR . '/components/*/templates'), glob(INSTALLDIR . '/plugins/*/templates'));
|
|
|
|
$templates = ['%kernel.project_dir%/templates' => 'default_path', '%kernel.project_dir%/public' => 'public_path'];
|
|
|
|
foreach ($module_templates as $t) {
|
|
|
|
$templates[$t] = null;
|
|
|
|
}
|
|
|
|
$container->loadFromExtension('twig', ['paths' => $templates]);
|
|
|
|
|
2020-09-22 23:13:36 +01:00
|
|
|
// Overriding doesn't work as we want, overrides the top-most key, do it manually
|
2020-09-30 23:52:01 +01:00
|
|
|
$local_file = INSTALLDIR . '/social.local.yaml';
|
|
|
|
if (!file_exists($local_file)) {
|
|
|
|
file_put_contents($local_file, "parameters:\n gnusocial:\n");
|
|
|
|
}
|
|
|
|
$loader->load($local_file);
|
2020-09-22 23:13:36 +01:00
|
|
|
$locals = $container->getParameter('gnusocial');
|
|
|
|
$loader->load(INSTALLDIR . '/social' . self::CONFIG_EXTS, 'glob');
|
2020-09-30 23:52:01 +01:00
|
|
|
$container->setParameter('gnusocial_defaults', $defaults = $container->getParameter('gnusocial'));
|
|
|
|
if (is_array($locals)) {
|
|
|
|
$configs = array_replace_recursive($defaults, $locals);
|
|
|
|
$container->setParameter('gnusocial', $configs);
|
|
|
|
}
|
2020-03-10 19:04:22 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 19:47:15 +00:00
|
|
|
/**
|
|
|
|
* Configure HTTP(S) route to controller mapping
|
|
|
|
*/
|
2020-06-23 13:43:19 +01:00
|
|
|
protected function configureRoutes(RoutingConfigurator $routes): void
|
2020-03-10 19:04:22 +00:00
|
|
|
{
|
2020-06-23 13:43:19 +01:00
|
|
|
$config = \dirname(__DIR__) . '/config';
|
|
|
|
$routes->import($config . '/{routes}/' . $this->environment . '/*.yaml');
|
|
|
|
$routes->import($config . '/{routes}/*.yaml');
|
|
|
|
|
|
|
|
if (is_file($config . '/routes.yaml')) {
|
|
|
|
$routes->import($config . '/{routes}.yaml');
|
|
|
|
} elseif (is_file($path = $config . '/routes.php')) {
|
|
|
|
(require $path)($routes->withPath($path), $this);
|
|
|
|
}
|
2020-03-15 21:21:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 19:47:15 +00:00
|
|
|
/**
|
|
|
|
* 'Compile-time' step that builds the container, allowing us to
|
|
|
|
* define compiler passes
|
|
|
|
*/
|
2020-03-15 21:21:11 +00:00
|
|
|
protected function build(ContainerBuilder $container): void
|
|
|
|
{
|
|
|
|
parent::build($container);
|
2020-03-10 19:04:22 +00:00
|
|
|
|
2020-08-03 21:52:47 +01:00
|
|
|
$container->addCompilerPass(new ModuleManagerPass());
|
2021-02-19 23:02:40 +00:00
|
|
|
$container->addCompilerPass(new SchemaDefDriver(SRCDIR . '/Entity'));
|
2020-03-10 19:04:22 +00:00
|
|
|
}
|
|
|
|
}
|