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!'
|
|
|
|
));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$appId = $_POST['appid'];
|
|
|
|
|
|
|
|
if (!is_numeric($appId)) {
|
|
|
|
$appId = OC_Appconfig::getValue($appId, 'ocsid', null);
|
2014-06-13 23:45:31 +04:00
|
|
|
$isShipped = OC_App::isShipped($appId);
|
2014-05-21 14:14:10 +04:00
|
|
|
|
|
|
|
if ($appId === null) {
|
|
|
|
OCP\JSON::error(array(
|
|
|
|
'message' => 'No OCS-ID found for app!'
|
|
|
|
));
|
|
|
|
exit;
|
|
|
|
}
|
2014-06-13 23:45:31 +04:00
|
|
|
} else {
|
|
|
|
$isShipped = false;
|
2014-05-21 14:14:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$appId = OC_App::cleanAppId($appId);
|
2013-01-21 23:40:23 +04:00
|
|
|
|
2014-06-13 23:45:31 +04:00
|
|
|
$result = OC_Installer::updateAppByOCSId($appId, $isShipped);
|
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-05-21 14:14:10 +04:00
|
|
|
$l = OC_L10N::get('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
|
|
|
}
|