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/userapicontroller.php')
-rw-r--r--controller/userapicontroller.php72
1 files changed, 0 insertions, 72 deletions
diff --git a/controller/userapicontroller.php b/controller/userapicontroller.php
deleted file mode 100644
index 8db2b6937..000000000
--- a/controller/userapicontroller.php
+++ /dev/null
@@ -1,72 +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\IUserSession;
-use \OCP\IURLGenerator;
-use \OCP\Files\IRootFolder;
-use \OCP\AppFramework\ApiController;
-use \OCP\AppFramework\Http;
-
-class UserApiController extends ApiController {
-
- private $userSession;
- private $rootFolder;
-
- public function __construct($AppName,
- IRequest $request,
- IUserSession $userSession,
- IRootFolder $rootFolder){
- parent::__construct($AppName, $request);
- $this->userSession = $userSession;
- $this->rootFolder = $rootFolder;
- }
-
- /**
- * @NoAdminRequired
- * @NoCSRFRequired
- * @CORS
- */
- public function index() {
- $user = $this->userSession->getUser();
-
- // find the avatar
- $jpgAvatar = '/' . $user->getUID() . '/avatar.jpg';
- $pngAvatar = '/' . $user->getUID() . '/avatar.png';
- $avatar = null;
-
- if ($this->rootFolder->nodeExists($jpgAvatar)) {
- $file = $this->rootFolder->get($jpgAvatar);
- $avatar = [
- 'data' => base64_encode($file->getContent()),
- 'mime' => 'image/jpeg'
- ];
- } elseif ($this->rootFolder->nodeExists($pngAvatar)) {
- $file = $this->rootFolder->get($pngAvatar);
- $avatar = [
- 'data' => base64_encode($file->getContent()),
- 'mime' => 'image/png'
- ];
- }
-
- return [
- 'userId' => $user->getUID(),
- 'displayName' => $user->getDisplayName(),
- 'lastLoginTimestamp' => $user->getLastLogin(),
- 'avatar' => $avatar
- ];
- }
-
-}