2013-01-09 03:37:50 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Thomas Müller
|
|
|
|
* @copyright 2013 Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL3
|
|
|
|
*/
|
|
|
|
|
2014-01-09 17:25:48 +04:00
|
|
|
class OC_Connector_Sabre_MaintenancePlugin extends \Sabre\DAV\ServerPlugin
|
2013-01-09 03:37:50 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to main server object
|
|
|
|
*
|
2014-01-09 17:25:48 +04:00
|
|
|
* @var \Sabre\DAV\Server
|
2013-01-09 03:37:50 +04:00
|
|
|
*/
|
|
|
|
private $server;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This initializes the plugin.
|
|
|
|
*
|
2014-01-09 17:25:48 +04:00
|
|
|
* This function is called by \Sabre\DAV\Server, after
|
2013-01-09 03:37:50 +04:00
|
|
|
* addPlugin is called.
|
|
|
|
*
|
|
|
|
* This method should set up the required event subscriptions.
|
|
|
|
*
|
2014-01-09 17:25:48 +04:00
|
|
|
* @param \Sabre\DAV\Server $server
|
2013-01-09 03:37:50 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
2014-01-09 17:25:48 +04:00
|
|
|
public function initialize(\Sabre\DAV\Server $server) {
|
2013-01-09 03:37:50 +04:00
|
|
|
|
|
|
|
$this->server = $server;
|
|
|
|
$this->server->subscribeEvent('beforeMethod', array($this, 'checkMaintenanceMode'), 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called before any HTTP method and returns http status code 503
|
|
|
|
* in case the system is in maintenance mode.
|
|
|
|
*
|
2014-01-09 17:25:48 +04:00
|
|
|
* @throws \Sabre\DAV\Exception\ServiceUnavailable
|
2013-01-09 03:37:50 +04:00
|
|
|
* @internal param string $method
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function checkMaintenanceMode() {
|
|
|
|
if (OC_Config::getValue('maintenance', false)) {
|
2014-01-09 17:25:48 +04:00
|
|
|
throw new \Sabre\DAV\Exception\ServiceUnavailable();
|
2013-01-09 03:37:50 +04:00
|
|
|
}
|
2013-04-16 10:07:44 +04:00
|
|
|
if (OC::checkUpgrade(false)) {
|
2014-01-09 17:25:48 +04:00
|
|
|
throw new \Sabre\DAV\Exception\ServiceUnavailable('Upgrade needed');
|
2013-04-16 10:07:44 +04:00
|
|
|
}
|
2013-01-09 03:37:50 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|