2018-10-05 16:36:09 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\App;
|
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mode of the current Friendica Node
|
|
|
|
*
|
|
|
|
* @package Friendica\App
|
|
|
|
*/
|
|
|
|
class Mode
|
|
|
|
{
|
|
|
|
const LOCALCONFIGPRESENT = 1;
|
|
|
|
const DBAVAILABLE = 2;
|
|
|
|
const DBCONFIGAVAILABLE = 4;
|
|
|
|
const MAINTENANCEDISABLED = 8;
|
|
|
|
|
|
|
|
/***
|
|
|
|
* @var int the mode of this Application
|
|
|
|
*
|
|
|
|
*/
|
2018-10-06 10:27:20 -04:00
|
|
|
private $mode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string the basepath of the application
|
|
|
|
*/
|
|
|
|
private $basepath;
|
|
|
|
|
|
|
|
public function __construct($basepath = '')
|
|
|
|
{
|
|
|
|
$this->basepath = $basepath;
|
|
|
|
$this->mode = 0;
|
|
|
|
}
|
2018-10-05 16:36:09 -04: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
|
|
|
|
*
|
|
|
|
* @param string $basepath the Basepath of the Application
|
|
|
|
*
|
|
|
|
*/
|
2018-10-06 10:27:20 -04:00
|
|
|
public function determine($basepath = null)
|
2018-10-05 16:36:09 -04:00
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
if (!empty($basepath)) {
|
|
|
|
$this->basepath = $basepath;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->mode = 0;
|
2018-10-05 16:36:09 -04:00
|
|
|
|
2018-11-25 01:44:09 -05:00
|
|
|
if (!file_exists($this->basepath . '/config/local.config.php')
|
|
|
|
&& !file_exists($this->basepath . '/config/local.ini.php')
|
|
|
|
&& !file_exists($this->basepath . '/.htconfig.php')) {
|
2018-10-05 16:36:09 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-06 10:27:20 -04:00
|
|
|
$this->mode |= Mode::LOCALCONFIGPRESENT;
|
2018-10-05 16:36:09 -04:00
|
|
|
|
|
|
|
if (!DBA::connected()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-06 10:27:20 -04:00
|
|
|
$this->mode |= Mode::DBAVAILABLE;
|
2018-10-05 16:36:09 -04:00
|
|
|
|
|
|
|
if (DBA::fetchFirst("SHOW TABLES LIKE 'config'") === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-06 10:27:20 -04:00
|
|
|
$this->mode |= Mode::DBCONFIGAVAILABLE;
|
2018-10-05 16:36:09 -04:00
|
|
|
|
|
|
|
if (Config::get('system', 'maintenance')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-06 10:27:20 -04:00
|
|
|
$this->mode |= Mode::MAINTENANCEDISABLED;
|
2018-10-05 16:36:09 -04: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 10:27:20 -04:00
|
|
|
public function has($mode)
|
2018-10-05 16:36:09 -04:00
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
return ($this->mode & $mode) > 0;
|
2018-10-05 16:36:09 -04: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 10:27:20 -04:00
|
|
|
public function isInstall()
|
2018-10-05 16:36:09 -04:00
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
return !$this->has(Mode::LOCALCONFIGPRESENT) ||
|
|
|
|
!$this->has(MODE::DBCONFIGAVAILABLE);
|
2018-10-05 16:36:09 -04: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 10:27:20 -04:00
|
|
|
public function isNormal()
|
2018-10-05 16:36:09 -04:00
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
return $this->has(Mode::LOCALCONFIGPRESENT) &&
|
|
|
|
$this->has(Mode::DBAVAILABLE) &&
|
|
|
|
$this->has(Mode::DBCONFIGAVAILABLE) &&
|
|
|
|
$this->has(Mode::MAINTENANCEDISABLED);
|
2018-10-05 16:36:09 -04:00
|
|
|
}
|
|
|
|
}
|