2016-04-25 08:10:55 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-05-15 04:24:46 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2016-04-25 08:10:55 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-04-25 08:10:55 -04: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 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-04-25 08:10:55 -04:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OC\Authentication\Token;
|
|
|
|
|
|
2016-05-19 05:20:22 -04:00
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
|
|
interface IToken extends JsonSerializable {
|
2020-04-10 10:54:27 -04: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 06:48:19 -04:00
|
|
|
|
2016-04-25 08:10:55 -04:00
|
|
|
/**
|
|
|
|
|
* Get the token ID
|
|
|
|
|
*
|
2016-05-19 05:20:22 -04:00
|
|
|
* @return int
|
2016-04-25 08:10:55 -04:00
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getId(): int;
|
2016-04-27 03:38:30 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the user UID
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getUID(): string;
|
2016-05-17 11:20:54 -04:00
|
|
|
|
2016-05-24 04:50:18 -04:00
|
|
|
/**
|
|
|
|
|
* Get the login name used when generating the token
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getLoginName(): string;
|
2016-05-24 04:50:18 -04:00
|
|
|
|
2016-05-17 11:20:54 -04:00
|
|
|
/**
|
|
|
|
|
* Get the (encrypted) login password
|
|
|
|
|
*
|
2018-05-15 04:56:40 -04:00
|
|
|
* @return string|null
|
2016-05-17 11:20:54 -04:00
|
|
|
*/
|
2018-05-15 04:56:40 -04:00
|
|
|
public function getPassword();
|
2016-06-17 07:59:15 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the timestamp of the last password check
|
|
|
|
|
*
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getLastCheck(): int;
|
2016-06-17 07:59:15 -04:00
|
|
|
|
|
|
|
|
/**
|
2016-08-03 06:03:18 -04:00
|
|
|
* Set the timestamp of the last password check
|
2016-06-17 07:59:15 -04:00
|
|
|
*
|
|
|
|
|
* @param int $time
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function setLastCheck(int $time);
|
2016-08-01 13:06:54 -04:00
|
|
|
|
2016-08-03 06:03:18 -04:00
|
|
|
/**
|
|
|
|
|
* Get the authentication scope for this token
|
|
|
|
|
*
|
2016-08-03 09:57:06 -04:00
|
|
|
* @return string
|
2016-08-03 06:03:18 -04:00
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getScope(): string;
|
2016-08-01 13:06:54 -04:00
|
|
|
|
2016-08-03 09:57:06 -04:00
|
|
|
/**
|
|
|
|
|
* Get the authentication scope for this token
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getScopeAsArray(): array;
|
2016-08-03 09:57:06 -04:00
|
|
|
|
2016-08-03 06:03:18 -04:00
|
|
|
/**
|
|
|
|
|
* Set the authentication scope for this token
|
|
|
|
|
*
|
2016-11-15 11:25:28 -05:00
|
|
|
* @param array $scope
|
2016-08-03 06:03:18 -04:00
|
|
|
*/
|
2018-05-15 05:41:27 -04:00
|
|
|
public function setScope($scope);
|
2018-05-15 04:24:46 -04:00
|
|
|
|
2018-05-15 15:10:43 -04:00
|
|
|
/**
|
|
|
|
|
* Get the name of the token
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getName(): string;
|
|
|
|
|
|
2018-05-15 15:10:43 -04:00
|
|
|
/**
|
|
|
|
|
* Get the remember state of the token
|
|
|
|
|
*
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
2018-05-15 04:24:46 -04:00
|
|
|
public function getRemember(): int;
|
2018-05-15 15:10:43 -04: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 06:39:00 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the expiration time of the token
|
|
|
|
|
*
|
|
|
|
|
* @param int|null $expires
|
|
|
|
|
*/
|
|
|
|
|
public function setExpires($expires);
|
2016-04-25 08:10:55 -04:00
|
|
|
}
|