From 004fcbbcc7609ca83807f2e38967ef54f469bf72 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 23 Jul 2016 21:24:54 +0200 Subject: Move to new directory structure --- lib/Controller/UtilityApiController.php | 83 +++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 lib/Controller/UtilityApiController.php (limited to 'lib/Controller/UtilityApiController.php') diff --git a/lib/Controller/UtilityApiController.php b/lib/Controller/UtilityApiController.php new file mode 100644 index 000000000..e613e70a5 --- /dev/null +++ b/lib/Controller/UtilityApiController.php @@ -0,0 +1,83 @@ + + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ + +namespace OCA\News\Controller; + +use \OCP\IRequest; +use \OCP\IConfig; +use \OCP\AppFramework\ApiController; +use \OCP\AppFramework\Http; + +use \OCA\News\Utility\Updater; +use \OCA\News\Service\StatusService; + + +class UtilityApiController extends ApiController { + + private $updater; + private $settings; + private $statusService; + + public function __construct($AppName, + IRequest $request, + Updater $updater, + IConfig $settings, + StatusService $statusService){ + parent::__construct($AppName, $request); + $this->updater = $updater; + $this->settings = $settings; + $this->statusService = $statusService; + } + + + /** + * @NoAdminRequired + * @NoCSRFRequired + * @CORS + */ + public function version() { + $version = $this->settings->getAppValue($this->appName, + 'installed_version'); + return ['version' => $version]; + } + + + /** + * @NoCSRFRequired + * @CORS + */ + public function beforeUpdate() { + $this->updater->beforeUpdate(); + } + + + /** + * @NoCSRFRequired + * @CORS + */ + public function afterUpdate() { + $this->updater->afterUpdate(); + } + + + /** + * @CORS + * @NoCSRFRequired + * @NoAdminRequired + */ + public function status() { + return $this->statusService->getStatus(); + } + + +} -- cgit v1.2.3