friendica/src/App/Mode.php

150 lines
3.5 KiB
PHP
Raw Normal View History

<?php
namespace Friendica\App;
use Friendica\Core\Config\Cache\ConfigCache;
use Friendica\Database\Database;
use Friendica\Util\BasePath;
/**
* Mode of the current Friendica Node
*
* @package Friendica\App
*/
class Mode
{
2019-07-21 14:40:50 +02:00
const LOCALCONFIGPRESENT = 1;
const DBAVAILABLE = 2;
const DBCONFIGAVAILABLE = 4;
const MAINTENANCEDISABLED = 8;
/***
2019-08-15 15:51:15 +02:00
* @var int The mode of this Application
*
*/
private $mode;
2019-08-15 15:51:15 +02:00
/**
* @var bool True, if the call is a backend call
*/
private $isBackend;
public function __construct(int $mode = 0, bool $isBackend = false)
{
2019-08-15 15:51:15 +02:00
$this->mode = $mode;
$this->isBackend = $isBackend;
}
/**
* Sets the App mode
*
* - App::MODE_INSTALL : Either the database connection can't be established or the config table doesn't exist
* - App::MODE_MAINTENANCE: The maintenance mode has been set
* - App::MODE_NORMAL : Normal run with all features enabled
*
2019-08-12 18:13:58 +02:00
* @return Mode returns the determined mode
*
2019-07-21 14:40:50 +02:00
* @throws \Exception
*/
2019-08-12 18:13:58 +02:00
public function determine(BasePath $basepath, Database $database, ConfigCache $configCache)
{
2019-08-12 18:13:58 +02:00
$mode = 0;
2019-08-12 18:13:58 +02:00
$basepathName = $basepath->getPath();
2019-08-12 18:13:58 +02:00
if (!file_exists($basepathName . '/config/local.config.php')
&& !file_exists($basepathName . '/config/local.ini.php')
&& !file_exists($basepathName . '/.htconfig.php')) {
return new Mode($mode);
}
2019-08-12 18:13:58 +02:00
$mode |= Mode::LOCALCONFIGPRESENT;
2019-08-12 18:13:58 +02:00
if (!$database->connected()) {
return new Mode($mode);
}
2019-08-12 18:13:58 +02:00
$mode |= Mode::DBAVAILABLE;
2019-08-12 18:13:58 +02:00
if ($database->fetchFirst("SHOW TABLES LIKE 'config'") === false) {
return new Mode($mode);
}
2019-08-12 18:13:58 +02:00
$mode |= Mode::DBCONFIGAVAILABLE;
2019-08-12 18:13:58 +02:00
if (!empty($configCache->get('system', 'maintenance')) ||
2019-07-21 14:40:50 +02:00
// Don't use Config or Configuration here because we're possibly BEFORE initializing the Configuration,
// so this could lead to a dependency circle
2019-08-12 18:13:58 +02:00
!empty($database->selectFirst('config', ['v'], ['cat' => 'system', 'k' => 'maintenance'])['v'])) {
return new Mode($mode);
}
2019-08-12 18:13:58 +02:00
$mode |= Mode::MAINTENANCEDISABLED;
2019-08-15 15:51:15 +02:00
return new Mode($mode, $this->isBackend);
}
/**
* Checks if the site is called via a backend process
*
* @param Module $module The pre-loaded module (just name, not class!)
* @param array $server The $_SERVER variable
*
* @return Mode returns the determined mode
*/
public function determineBackend(Module $module, array $server)
{
$isBackend = basename(($server['PHP_SELF'] ?? ''), '.php') !== 'index' ||
$module->isBackend();
return new Mode($this->mode, $isBackend);
}
/**
* Checks, if the Friendica Node has the given mode
*
* @param int $mode A mode to test
*
* @return bool returns true, if the mode is set
*/
public function has($mode)
{
return ($this->mode & $mode) > 0;
}
/**
* Install mode is when the local config file is missing or the DB schema hasn't been installed yet.
*
* @return bool
*/
public function isInstall()
{
return !$this->has(Mode::LOCALCONFIGPRESENT) ||
!$this->has(MODE::DBCONFIGAVAILABLE);
}
/**
* Normal mode is when the local config file is set, the DB schema is installed and the maintenance mode is off.
*
* @return bool
*/
public function isNormal()
{
return $this->has(Mode::LOCALCONFIGPRESENT) &&
$this->has(Mode::DBAVAILABLE) &&
$this->has(Mode::DBCONFIGAVAILABLE) &&
$this->has(Mode::MAINTENANCEDISABLED);
}
2019-08-15 15:51:15 +02:00
/**
* Returns true, if the call is from a backend node (f.e. from a worker)
*
* @return bool Is it a backend call
*/
public function isBackend()
{
return $this->isBackend;
}
2019-07-21 14:40:50 +02:00
}