2016-04-25 15:10:55 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-05-15 11:24:46 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2016-04-25 15:10:55 +03:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Marcel Waldvogel <marcel.waldvogel@uni-konstanz.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-04-25 15:10:55 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-04-25 15:10:55 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Authentication\Token;
|
|
|
|
|
2018-10-30 15:18:41 +03:00
|
|
|
use OC\Authentication\Exceptions\ExpiredTokenException;
|
2016-04-25 15:10:55 +03:00
|
|
|
use OC\Authentication\Exceptions\InvalidTokenException;
|
2016-05-31 11:48:14 +03:00
|
|
|
use OC\Authentication\Exceptions\PasswordlessTokenException;
|
2019-04-03 17:00:46 +03:00
|
|
|
use OC\Authentication\Exceptions\WipeTokenException;
|
2016-04-25 15:10:55 +03:00
|
|
|
|
|
|
|
interface IProvider {
|
|
|
|
|
2016-09-06 22:41:15 +03:00
|
|
|
|
2016-05-17 18:20:54 +03:00
|
|
|
/**
|
|
|
|
* Create and persist a new token
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
* @param string $uid
|
2016-05-24 11:50:18 +03:00
|
|
|
* @param string $loginName
|
2016-05-31 11:48:14 +03:00
|
|
|
* @param string|null $password
|
2016-05-17 18:20:54 +03:00
|
|
|
* @param string $name
|
|
|
|
* @param int $type token type
|
2016-09-06 22:41:15 +03:00
|
|
|
* @param int $remember whether the session token should be used for remember-me
|
2016-05-18 19:25:05 +03:00
|
|
|
* @return IToken
|
2019-07-18 12:36:50 +03:00
|
|
|
* @throws \RuntimeException when OpenSSL reports a problem
|
2016-05-17 18:20:54 +03:00
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function generateToken(string $token,
|
|
|
|
string $uid,
|
|
|
|
string $loginName,
|
|
|
|
$password,
|
|
|
|
string $name,
|
|
|
|
int $type = IToken::TEMPORARY_TOKEN,
|
|
|
|
int $remember = IToken::DO_NOT_REMEMBER): IToken;
|
2016-05-17 18:20:54 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a token by token id
|
|
|
|
*
|
|
|
|
* @param string $tokenId
|
|
|
|
* @throws InvalidTokenException
|
2018-05-16 13:39:00 +03:00
|
|
|
* @throws ExpiredTokenException
|
2019-04-03 17:00:46 +03:00
|
|
|
* @throws WipeTokenException
|
2016-05-17 18:20:54 +03:00
|
|
|
* @return IToken
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getToken(string $tokenId): IToken;
|
2016-08-03 16:57:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a token by token id
|
|
|
|
*
|
2018-05-15 11:56:40 +03:00
|
|
|
* @param int $tokenId
|
2016-08-03 16:57:06 +03:00
|
|
|
* @throws InvalidTokenException
|
2018-05-16 13:39:00 +03:00
|
|
|
* @throws ExpiredTokenException
|
2019-04-03 17:00:46 +03:00
|
|
|
* @throws WipeTokenException
|
2018-05-15 11:24:46 +03:00
|
|
|
* @return IToken
|
2016-08-03 16:57:06 +03:00
|
|
|
*/
|
2018-05-15 11:56:40 +03:00
|
|
|
public function getTokenById(int $tokenId): IToken;
|
2016-05-19 12:20:22 +03:00
|
|
|
|
2016-09-06 22:41:15 +03:00
|
|
|
/**
|
2016-11-02 19:32:44 +03:00
|
|
|
* Duplicate an existing session token
|
|
|
|
*
|
2016-09-06 22:41:15 +03:00
|
|
|
* @param string $oldSessionId
|
|
|
|
* @param string $sessionId
|
2016-11-02 15:37:39 +03:00
|
|
|
* @throws InvalidTokenException
|
2019-07-18 12:36:50 +03:00
|
|
|
* @throws \RuntimeException when OpenSSL reports a problem
|
2019-10-08 12:01:53 +03:00
|
|
|
* @return IToken The new token
|
2016-09-06 22:41:15 +03:00
|
|
|
*/
|
2019-10-08 12:01:53 +03:00
|
|
|
public function renewSessionToken(string $oldSessionId, string $sessionId): IToken;
|
2016-09-06 22:41:15 +03:00
|
|
|
|
2016-05-17 18:20:54 +03:00
|
|
|
/**
|
|
|
|
* Invalidate (delete) the given session token
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function invalidateToken(string $token);
|
2016-05-17 18:20:54 +03:00
|
|
|
|
2016-05-19 12:20:22 +03:00
|
|
|
/**
|
|
|
|
* Invalidate (delete) the given token
|
|
|
|
*
|
2018-05-29 10:29:29 +03:00
|
|
|
* @param string $uid
|
2016-05-19 12:20:22 +03:00
|
|
|
* @param int $id
|
|
|
|
*/
|
2018-05-29 10:29:29 +03:00
|
|
|
public function invalidateTokenById(string $uid, int $id);
|
2016-05-19 12:20:22 +03:00
|
|
|
|
2016-04-27 10:38:30 +03:00
|
|
|
/**
|
2016-08-02 11:34:11 +03:00
|
|
|
* Invalidate (delete) old session tokens
|
|
|
|
*/
|
|
|
|
public function invalidateOldTokens();
|
|
|
|
|
|
|
|
/**
|
2016-06-17 14:59:15 +03:00
|
|
|
* Save the updated token
|
2016-04-27 10:38:30 +03:00
|
|
|
*
|
2016-05-06 17:31:40 +03:00
|
|
|
* @param IToken $token
|
2016-04-27 10:38:30 +03:00
|
|
|
*/
|
|
|
|
public function updateToken(IToken $token);
|
2016-05-17 18:20:54 +03:00
|
|
|
|
2016-04-27 10:38:30 +03:00
|
|
|
/**
|
|
|
|
* Update token activity timestamp
|
|
|
|
*
|
2016-05-06 17:31:40 +03:00
|
|
|
* @param IToken $token
|
2016-04-27 10:38:30 +03:00
|
|
|
*/
|
2016-06-17 13:08:48 +03:00
|
|
|
public function updateTokenActivity(IToken $token);
|
2016-05-17 18:20:54 +03:00
|
|
|
|
2016-05-18 12:33:56 +03:00
|
|
|
/**
|
2017-07-21 10:50:44 +03:00
|
|
|
* Get all tokens of a user
|
2016-05-18 12:33:56 +03:00
|
|
|
*
|
|
|
|
* The provider may limit the number of result rows in case of an abuse
|
|
|
|
* where a high number of (session) tokens is generated
|
|
|
|
*
|
2018-05-29 10:29:29 +03:00
|
|
|
* @param string $uid
|
2016-05-18 12:33:56 +03:00
|
|
|
* @return IToken[]
|
|
|
|
*/
|
2018-05-29 10:29:29 +03:00
|
|
|
public function getTokenByUser(string $uid): array;
|
2016-05-18 12:33:56 +03:00
|
|
|
|
2016-05-17 18:20:54 +03:00
|
|
|
/**
|
|
|
|
* Get the (unencrypted) password of the given token
|
|
|
|
*
|
2020-08-19 18:54:00 +03:00
|
|
|
* @param IToken $savedToken
|
2016-05-17 18:20:54 +03:00
|
|
|
* @param string $tokenId
|
2016-05-18 19:25:05 +03:00
|
|
|
* @throws InvalidTokenException
|
2016-05-31 11:48:14 +03:00
|
|
|
* @throws PasswordlessTokenException
|
2016-05-17 18:20:54 +03:00
|
|
|
* @return string
|
|
|
|
*/
|
2020-08-19 18:54:00 +03:00
|
|
|
public function getPassword(IToken $savedToken, string $tokenId): string;
|
2016-06-21 11:23:50 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Encrypt and set the password of the given token
|
|
|
|
*
|
|
|
|
* @param IToken $token
|
|
|
|
* @param string $tokenId
|
|
|
|
* @param string $password
|
|
|
|
* @throws InvalidTokenException
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function setPassword(IToken $token, string $tokenId, string $password);
|
2018-05-15 22:10:43 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Rotate the token. Usefull for for example oauth tokens
|
|
|
|
*
|
|
|
|
* @param IToken $token
|
|
|
|
* @param string $oldTokenId
|
|
|
|
* @param string $newTokenId
|
|
|
|
* @return IToken
|
2019-07-18 12:36:50 +03:00
|
|
|
* @throws \RuntimeException when OpenSSL reports a problem
|
2018-05-15 22:10:43 +03:00
|
|
|
*/
|
|
|
|
public function rotate(IToken $token, string $oldTokenId, string $newTokenId): IToken;
|
2018-09-26 14:10:17 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks a token as having an invalid password.
|
|
|
|
*
|
|
|
|
* @param IToken $token
|
|
|
|
* @param string $tokenId
|
|
|
|
*/
|
|
|
|
public function markPasswordInvalid(IToken $token, string $tokenId);
|
2018-09-26 14:36:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update all the passwords of $uid if required
|
|
|
|
*
|
|
|
|
* @param string $uid
|
|
|
|
* @param string $password
|
|
|
|
*/
|
|
|
|
public function updatePasswords(string $uid, string $password);
|
2016-04-25 15:10:55 +03:00
|
|
|
}
|