2013-01-21 23:40:23 +04:00
|
|
|
<?php
|
2014-05-21 14:14:10 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
OCP\JSON::checkAdminUser();
|
2013-01-21 23:40:23 +04:00
|
|
|
OCP\JSON::callCheck();
|
|
|
|
|
2014-05-21 14:14:10 +04:00
|
|
|
if (!array_key_exists('appid', $_POST)) {
|
|
|
|
OCP\JSON::error(array(
|
|
|
|
'message' => 'No AppId given!'
|
|
|
|
));
|
2014-08-14 17:48:38 +04:00
|
|
|
return;
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$appId = $_POST['appid'];
|
|
|
|
|
|
|
|
if (!is_numeric($appId)) {
|
2014-08-14 17:48:38 +04:00
|
|
|
$appId = \OC::$server->getAppConfig()->getValue($appId, 'ocsid', null);
|
2014-05-21 14:14:10 +04:00
|
|
|
if ($appId === null) {
|
|
|
|
OCP\JSON::error(array(
|
|
|
|
'message' => 'No OCS-ID found for app!'
|
|
|
|
));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$appId = OC_App::cleanAppId($appId);
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2014-08-14 17:48:38 +04:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$config->setSystemValue('maintenance', true);
|
|
|
|
try {
|
|
|
|
$result = OC_Installer::updateAppByOCSId($appId);
|
|
|
|
$config->setSystemValue('maintenance', false);
|
|
|
|
} catch(Exception $ex) {
|
|
|
|
$config->setSystemValue('maintenance', false);
|
|
|
|
OC_JSON::error(array("data" => array( "message" => $ex->getMessage() )));
|
|
|
|
return;
|
|
|
|
}
|
2014-07-25 15:40:51 +04:00
|
|
|
|
2013-01-21 23:40:23 +04:00
|
|
|
if($result !== false) {
|
2014-05-21 14:14:10 +04:00
|
|
|
OC_JSON::success(array('data' => array('appid' => $appId)));
|
2013-01-21 23:40:23 +04:00
|
|
|
} else {
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('settings');
|
2013-01-31 13:34:54 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't update app.") )));
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|