summaryrefslogtreecommitdiffstats
path: root/lib/Controller/UtilityApiController.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 21:24:54 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 21:24:54 +0200
commit004fcbbcc7609ca83807f2e38967ef54f469bf72 (patch)
tree49eb99b4ea92b2045793fc567f719b31ec7f9042 /lib/Controller/UtilityApiController.php
parent60abc0ed4438c9b6fda245b0dc33cb483bc2aeaf (diff)
Move to new directory structure
Diffstat (limited to 'lib/Controller/UtilityApiController.php')
-rw-r--r--lib/Controller/UtilityApiController.php83
1 files changed, 83 insertions, 0 deletions
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 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @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();
+ }
+
+
+}