summaryrefslogtreecommitdiffstats
path: root/core/Controller
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-30 09:58:02 +0200
committerJoas Schilling <coding@schilljs.com>2016-09-30 10:21:08 +0200
commita1e4b17ff44cc4476574b8d335ac3fdf2c2dc561 (patch)
tree04629eb4b3a036b7e2a55a58f1bafd571ec6b50c /core/Controller
parent877cb06bfed4524beb62e4cc52f946406ef7d5ea (diff)
downloadnextcloud-server-a1e4b17ff44cc4476574b8d335ac3fdf2c2dc561.tar.gz
nextcloud-server-a1e4b17ff44cc4476574b8d335ac3fdf2c2dc561.zip
Remove unused endpoint
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/TokenController.php105
1 files changed, 0 insertions, 105 deletions
diff --git a/core/Controller/TokenController.php b/core/Controller/TokenController.php
deleted file mode 100644
index 865bae9665c..00000000000
--- a/core/Controller/TokenController.php
+++ /dev/null
@@ -1,105 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@owncloud.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
-
-namespace OC\Core\Controller;
-
-use OC\AppFramework\Http;
-use OC\Authentication\Token\IProvider;
-use OC\Authentication\Token\IToken;
-use OC\Authentication\TwoFactorAuth\Manager as TwoFactorAuthManager;
-use OCP\AppFramework\Controller;
-use OCP\AppFramework\Http\JSONResponse;
-use OCP\IRequest;
-use OCP\IUserManager;
-use OCP\Security\ISecureRandom;
-
-class TokenController extends Controller {
- /** @var IUserManager */
- private $userManager;
- /** @var IProvider */
- private $tokenProvider;
- /** @var TwoFactorAuthManager */
- private $twoFactorAuthManager;
- /** @var ISecureRandom */
- private $secureRandom;
-
- /**
- * @param string $appName
- * @param IRequest $request
- * @param IUserManager $userManager
- * @param IProvider $tokenProvider
- * @param TwoFactorAuthManager $twoFactorAuthManager
- * @param ISecureRandom $secureRandom
- */
- public function __construct($appName,
- IRequest $request,
- IUserManager $userManager,
- IProvider $tokenProvider,
- TwoFactorAuthManager $twoFactorAuthManager,
- ISecureRandom $secureRandom) {
- parent::__construct($appName, $request);
- $this->userManager = $userManager;
- $this->tokenProvider = $tokenProvider;
- $this->secureRandom = $secureRandom;
- $this->twoFactorAuthManager = $twoFactorAuthManager;
- }
-
- /**
- * Generate a new access token clients can authenticate with
- *
- * @PublicPage
- * @NoCSRFRequired
- *
- * @param string $user
- * @param string $password
- * @param string $name the name of the client
- * @return JSONResponse
- */
- public function generateToken($user, $password, $name = 'unknown client') {
- if (is_null($user) || is_null($password)) {
- $response = new JSONResponse();
- $response->setStatus(Http::STATUS_UNPROCESSABLE_ENTITY);
- return $response;
- }
- $loginName = $user;
- $user = $this->userManager->checkPassword($loginName, $password);
- if ($user === false) {
- $response = new JSONResponse();
- $response->setStatus(Http::STATUS_UNAUTHORIZED);
- return $response;
- }
-
- if ($this->twoFactorAuthManager->isTwoFactorAuthenticated($user)) {
- $resp = new JSONResponse();
- $resp->setStatus(Http::STATUS_UNAUTHORIZED);
- return $resp;
- }
-
- $token = $this->secureRandom->generate(128);
- $this->tokenProvider->generateToken($token, $user->getUID(), $loginName, $password, $name, IToken::PERMANENT_TOKEN);
- return new JSONResponse([
- 'token' => $token,
- ]);
- }
-
-}