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