Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'controller/utilityapicontroller.php')
-rw-r--r--controller/utilityapicontroller.php83
1 files changed, 0 insertions, 83 deletions
diff --git a/controller/utilityapicontroller.php b/controller/utilityapicontroller.php
deleted file mode 100644
index e613e70a5..000000000
--- a/controller/utilityapicontroller.php
+++ /dev/null
@@ -1,83 +0,0 @@
-<?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();
- }
-
-
-}