123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @author Fabrizio Steiner <fabrizio.steiner@gmail.com>
- * @author Greta Doci <gretadoci@gmail.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Marcel Waldvogel <marcel.waldvogel@uni-konstanz.de>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Sergej Nikolaev <kinolaev@gmail.com>
- *
- * @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 OCA\Settings\Controller;
- use BadMethodCallException;
- use OC\Authentication\Exceptions\InvalidTokenException as OcInvalidTokenException;
- use OC\Authentication\Exceptions\PasswordlessTokenException;
- use OC\Authentication\Token\INamedToken;
- use OC\Authentication\Token\IProvider;
- use OC\Authentication\Token\RemoteWipe;
- use OCA\Settings\Activity\Provider;
- use OCP\Activity\IManager;
- use OCP\AppFramework\Controller;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\JSONResponse;
- use OCP\Authentication\Exceptions\ExpiredTokenException;
- use OCP\Authentication\Exceptions\InvalidTokenException;
- use OCP\Authentication\Exceptions\WipeTokenException;
- use OCP\Authentication\Token\IToken;
- use OCP\IRequest;
- use OCP\ISession;
- use OCP\IUserSession;
- use OCP\Security\ISecureRandom;
- use OCP\Session\Exceptions\SessionNotAvailableException;
- use Psr\Log\LoggerInterface;
- class AuthSettingsController extends Controller {
- /** @var IProvider */
- private $tokenProvider;
- /** @var ISession */
- private $session;
- /** @var IUserSession */
- private $userSession;
- /** @var string */
- private $uid;
- /** @var ISecureRandom */
- private $random;
- /** @var IManager */
- private $activityManager;
- /** @var RemoteWipe */
- private $remoteWipe;
- /** @var LoggerInterface */
- private $logger;
- /**
- * @param string $appName
- * @param IRequest $request
- * @param IProvider $tokenProvider
- * @param ISession $session
- * @param ISecureRandom $random
- * @param string|null $userId
- * @param IUserSession $userSession
- * @param IManager $activityManager
- * @param RemoteWipe $remoteWipe
- * @param LoggerInterface $logger
- */
- public function __construct(string $appName,
- IRequest $request,
- IProvider $tokenProvider,
- ISession $session,
- ISecureRandom $random,
- ?string $userId,
- IUserSession $userSession,
- IManager $activityManager,
- RemoteWipe $remoteWipe,
- LoggerInterface $logger) {
- parent::__construct($appName, $request);
- $this->tokenProvider = $tokenProvider;
- $this->uid = $userId;
- $this->userSession = $userSession;
- $this->session = $session;
- $this->random = $random;
- $this->activityManager = $activityManager;
- $this->remoteWipe = $remoteWipe;
- $this->logger = $logger;
- }
- /**
- * @NoAdminRequired
- * @NoSubAdminRequired
- * @PasswordConfirmationRequired
- *
- * @param string $name
- * @return JSONResponse
- */
- public function create($name) {
- if ($this->checkAppToken()) {
- return $this->getServiceNotAvailableResponse();
- }
- try {
- $sessionId = $this->session->getId();
- } catch (SessionNotAvailableException $ex) {
- return $this->getServiceNotAvailableResponse();
- }
- if ($this->userSession->getImpersonatingUserID() !== null) {
- return $this->getServiceNotAvailableResponse();
- }
- try {
- $sessionToken = $this->tokenProvider->getToken($sessionId);
- $loginName = $sessionToken->getLoginName();
- try {
- $password = $this->tokenProvider->getPassword($sessionToken, $sessionId);
- } catch (PasswordlessTokenException $ex) {
- $password = null;
- }
- } catch (InvalidTokenException $ex) {
- return $this->getServiceNotAvailableResponse();
- }
- if (mb_strlen($name) > 128) {
- $name = mb_substr($name, 0, 120) . '…';
- }
- $token = $this->generateRandomDeviceToken();
- $deviceToken = $this->tokenProvider->generateToken($token, $this->uid, $loginName, $password, $name, IToken::PERMANENT_TOKEN);
- $tokenData = $deviceToken->jsonSerialize();
- $tokenData['canDelete'] = true;
- $tokenData['canRename'] = true;
- $this->publishActivity(Provider::APP_TOKEN_CREATED, $deviceToken->getId(), ['name' => $deviceToken->getName()]);
- return new JSONResponse([
- 'token' => $token,
- 'loginName' => $loginName,
- 'deviceToken' => $tokenData,
- ]);
- }
- /**
- * @return JSONResponse
- */
- private function getServiceNotAvailableResponse() {
- $resp = new JSONResponse();
- $resp->setStatus(Http::STATUS_SERVICE_UNAVAILABLE);
- return $resp;
- }
- /**
- * Return a 25 digit device password
- *
- * Example: AbCdE-fGhJk-MnPqR-sTwXy-23456
- *
- * @return string
- */
- private function generateRandomDeviceToken() {
- $groups = [];
- for ($i = 0; $i < 5; $i++) {
- $groups[] = $this->random->generate(5, ISecureRandom::CHAR_HUMAN_READABLE);
- }
- return implode('-', $groups);
- }
- private function checkAppToken(): bool {
- return $this->session->exists('app_password');
- }
- /**
- * @NoAdminRequired
- * @NoSubAdminRequired
- *
- * @param int $id
- * @return array|JSONResponse
- */
- public function destroy($id) {
- if ($this->checkAppToken()) {
- return new JSONResponse([], Http::STATUS_BAD_REQUEST);
- }
- try {
- $token = $this->findTokenByIdAndUser($id);
- } catch (WipeTokenException $e) {
- //continue as we can destroy tokens in wipe
- $token = $e->getToken();
- } catch (InvalidTokenException $e) {
- return new JSONResponse([], Http::STATUS_NOT_FOUND);
- }
- $this->tokenProvider->invalidateTokenById($this->uid, $token->getId());
- $this->publishActivity(Provider::APP_TOKEN_DELETED, $token->getId(), ['name' => $token->getName()]);
- return [];
- }
- /**
- * @NoAdminRequired
- * @NoSubAdminRequired
- *
- * @param int $id
- * @param array $scope
- * @param string $name
- * @return array|JSONResponse
- */
- public function update($id, array $scope, string $name) {
- if ($this->checkAppToken()) {
- return new JSONResponse([], Http::STATUS_BAD_REQUEST);
- }
- try {
- $token = $this->findTokenByIdAndUser($id);
- } catch (InvalidTokenException $e) {
- return new JSONResponse([], Http::STATUS_NOT_FOUND);
- }
- $currentName = $token->getName();
- if ($scope !== $token->getScopeAsArray()) {
- $token->setScope(['filesystem' => $scope['filesystem']]);
- $this->publishActivity($scope['filesystem'] ? Provider::APP_TOKEN_FILESYSTEM_GRANTED : Provider::APP_TOKEN_FILESYSTEM_REVOKED, $token->getId(), ['name' => $currentName]);
- }
- if (mb_strlen($name) > 128) {
- $name = mb_substr($name, 0, 120) . '…';
- }
- if ($token instanceof INamedToken && $name !== $currentName) {
- $token->setName($name);
- $this->publishActivity(Provider::APP_TOKEN_RENAMED, $token->getId(), ['name' => $currentName, 'newName' => $name]);
- }
- $this->tokenProvider->updateToken($token);
- return [];
- }
- /**
- * @param string $subject
- * @param int $id
- * @param array $parameters
- */
- private function publishActivity(string $subject, int $id, array $parameters = []): void {
- $event = $this->activityManager->generateEvent();
- $event->setApp('settings')
- ->setType('security')
- ->setAffectedUser($this->uid)
- ->setAuthor($this->uid)
- ->setSubject($subject, $parameters)
- ->setObject('app_token', $id, 'App Password');
- try {
- $this->activityManager->publish($event);
- } catch (BadMethodCallException $e) {
- $this->logger->warning('could not publish activity', ['exception' => $e]);
- }
- }
- /**
- * Find a token by given id and check if uid for current session belongs to this token
- *
- * @param int $id
- * @return IToken
- * @throws InvalidTokenException
- */
- private function findTokenByIdAndUser(int $id): IToken {
- try {
- $token = $this->tokenProvider->getTokenById($id);
- } catch (ExpiredTokenException $e) {
- $token = $e->getToken();
- }
- if ($token->getUID() !== $this->uid) {
- /** @psalm-suppress DeprecatedClass We have to throw the OC version so both OC and OCP catches catch it */
- throw new OcInvalidTokenException('This token does not belong to you!');
- }
- return $token;
- }
- /**
- * @NoAdminRequired
- * @NoSubAdminRequired
- * @PasswordConfirmationRequired
- *
- * @param int $id
- * @return JSONResponse
- * @throws InvalidTokenException
- * @throws ExpiredTokenException
- */
- public function wipe(int $id): JSONResponse {
- if ($this->checkAppToken()) {
- return new JSONResponse([], Http::STATUS_BAD_REQUEST);
- }
- try {
- $token = $this->findTokenByIdAndUser($id);
- } catch (InvalidTokenException $e) {
- return new JSONResponse([], Http::STATUS_NOT_FOUND);
- }
- if (!$this->remoteWipe->markTokenForWipe($token)) {
- return new JSONResponse([], Http::STATUS_BAD_REQUEST);
- }
- return new JSONResponse([]);
- }
- }
|