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 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;
|
|
|
|
|
2016-05-19 12:20:22 +03:00
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
interface IToken extends JsonSerializable {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const TEMPORARY_TOKEN = 0;
|
|
|
|
public const PERMANENT_TOKEN = 1;
|
|
|
|
public const WIPE_TOKEN = 2;
|
|
|
|
public const DO_NOT_REMEMBER = 0;
|
|
|
|
public const REMEMBER = 1;
|
2016-04-26 13:48:19 +03:00
|
|
|
|
2016-04-25 15:10:55 +03:00
|
|
|
/**
|
|
|
|
* Get the token ID
|
|
|
|
*
|
2016-05-19 12:20:22 +03:00
|
|
|
* @return int
|
2016-04-25 15:10:55 +03:00
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getId(): int;
|
2016-04-27 10:38:30 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the user UID
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getUID(): string;
|
2016-05-17 18:20:54 +03:00
|
|
|
|
2016-05-24 11:50:18 +03:00
|
|
|
/**
|
|
|
|
* Get the login name used when generating the token
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getLoginName(): string;
|
2016-05-24 11:50:18 +03:00
|
|
|
|
2016-05-17 18:20:54 +03:00
|
|
|
/**
|
|
|
|
* Get the (encrypted) login password
|
|
|
|
*
|
2018-05-15 11:56:40 +03:00
|
|
|
* @return string|null
|
2016-05-17 18:20:54 +03:00
|
|
|
*/
|
2018-05-15 11:56:40 +03:00
|
|
|
public function getPassword();
|
2016-06-17 14:59:15 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the timestamp of the last password check
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getLastCheck(): int;
|
2016-06-17 14:59:15 +03:00
|
|
|
|
|
|
|
/**
|
2016-08-03 13:03:18 +03:00
|
|
|
* Set the timestamp of the last password check
|
2016-06-17 14:59:15 +03:00
|
|
|
*
|
|
|
|
* @param int $time
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function setLastCheck(int $time);
|
2016-08-01 20:06:54 +03:00
|
|
|
|
2016-08-03 13:03:18 +03:00
|
|
|
/**
|
|
|
|
* Get the authentication scope for this token
|
|
|
|
*
|
2016-08-03 16:57:06 +03:00
|
|
|
* @return string
|
2016-08-03 13:03:18 +03:00
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getScope(): string;
|
2016-08-01 20:06:54 +03:00
|
|
|
|
2016-08-03 16:57:06 +03:00
|
|
|
/**
|
|
|
|
* Get the authentication scope for this token
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getScopeAsArray(): array;
|
2016-08-03 16:57:06 +03:00
|
|
|
|
2016-08-03 13:03:18 +03:00
|
|
|
/**
|
|
|
|
* Set the authentication scope for this token
|
|
|
|
*
|
2016-11-15 19:25:28 +03:00
|
|
|
* @param array $scope
|
2016-08-03 13:03:18 +03:00
|
|
|
*/
|
2018-05-15 12:41:27 +03:00
|
|
|
public function setScope($scope);
|
2018-05-15 11:24:46 +03:00
|
|
|
|
2018-05-15 22:10:43 +03:00
|
|
|
/**
|
|
|
|
* Get the name of the token
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getName(): string;
|
|
|
|
|
2018-05-15 22:10:43 +03:00
|
|
|
/**
|
|
|
|
* Get the remember state of the token
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2018-05-15 11:24:46 +03:00
|
|
|
public function getRemember(): int;
|
2018-05-15 22:10:43 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the token
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
*/
|
|
|
|
public function setToken(string $token);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the password
|
|
|
|
*
|
|
|
|
* @param string $password
|
|
|
|
*/
|
|
|
|
public function setPassword(string $password);
|
2018-05-16 13:39:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the expiration time of the token
|
|
|
|
*
|
|
|
|
* @param int|null $expires
|
|
|
|
*/
|
|
|
|
public function setExpires($expires);
|
2016-04-25 15:10:55 +03:00
|
|
|
}
|