2018-10-05 20:36:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\App;
|
|
|
|
|
2019-07-20 23:22:10 +00:00
|
|
|
use Friendica\Core\Config\Cache\ConfigCache;
|
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Util\BasePath;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mode of the current Friendica Node
|
|
|
|
*
|
|
|
|
* @package Friendica\App
|
|
|
|
*/
|
|
|
|
class Mode
|
|
|
|
{
|
2019-07-21 12:40:50 +00:00
|
|
|
const LOCALCONFIGPRESENT = 1;
|
|
|
|
const DBAVAILABLE = 2;
|
|
|
|
const DBCONFIGAVAILABLE = 4;
|
2018-10-05 20:36:09 +00:00
|
|
|
const MAINTENANCEDISABLED = 8;
|
|
|
|
|
|
|
|
/***
|
|
|
|
* @var int the mode of this Application
|
|
|
|
*
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
private $mode;
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
public function __construct(int $mode = 0)
|
2018-10-06 14:27:20 +00:00
|
|
|
{
|
2019-08-12 16:13:58 +00:00
|
|
|
$this->mode = $mode;
|
2018-10-06 14:27:20 +00:00
|
|
|
}
|
2018-10-05 20:36:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 16:13:58 +00:00
|
|
|
* @return Mode returns the determined mode
|
2019-07-20 23:22:10 +00:00
|
|
|
*
|
2019-07-21 12:40:50 +00:00
|
|
|
* @throws \Exception
|
2018-10-05 20:36:09 +00:00
|
|
|
*/
|
2019-08-12 16:13:58 +00:00
|
|
|
public function determine(BasePath $basepath, Database $database, ConfigCache $configCache)
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode = 0;
|
2018-10-06 14:27:20 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$basepathName = $basepath->getPath();
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00: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);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::LOCALCONFIGPRESENT;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if (!$database->connected()) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::DBAVAILABLE;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if ($database->fetchFirst("SHOW TABLES LIKE 'config'") === false) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::DBCONFIGAVAILABLE;
|
2018-10-05 20:36:09 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
if (!empty($configCache->get('system', 'maintenance')) ||
|
2019-07-21 12:40:50 +00: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 16:13:58 +00:00
|
|
|
!empty($database->selectFirst('config', ['v'], ['cat' => 'system', 'k' => 'maintenance'])['v'])) {
|
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
$mode |= Mode::MAINTENANCEDISABLED;
|
2019-07-20 23:22:10 +00:00
|
|
|
|
2019-08-12 16:13:58 +00:00
|
|
|
return new Mode($mode);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
public function has($mode)
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2018-10-06 14:27:20 +00:00
|
|
|
return ($this->mode & $mode) > 0;
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Install mode is when the local config file is missing or the DB schema hasn't been installed yet.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
public function isInstall()
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2018-10-06 14:27:20 +00:00
|
|
|
return !$this->has(Mode::LOCALCONFIGPRESENT) ||
|
2019-07-20 23:22:10 +00:00
|
|
|
!$this->has(MODE::DBCONFIGAVAILABLE);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normal mode is when the local config file is set, the DB schema is installed and the maintenance mode is off.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-06 14:27:20 +00:00
|
|
|
public function isNormal()
|
2018-10-05 20:36:09 +00:00
|
|
|
{
|
2018-10-06 14:27:20 +00:00
|
|
|
return $this->has(Mode::LOCALCONFIGPRESENT) &&
|
2019-07-20 23:22:10 +00:00
|
|
|
$this->has(Mode::DBAVAILABLE) &&
|
|
|
|
$this->has(Mode::DBCONFIGAVAILABLE) &&
|
|
|
|
$this->has(Mode::MAINTENANCEDISABLED);
|
2018-10-05 20:36:09 +00:00
|
|
|
}
|
2019-07-21 12:40:50 +00:00
|
|
|
}
|