friendica/src/Object/Api/Mastodon/Token.php

78 lines
2.1 KiB
PHP
Raw Normal View History

2021-05-13 11:26:56 +00:00
<?php
/**
2023-01-01 14:36:24 +00:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2021-05-13 11:26:56 +00:00
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Object\Api\Mastodon;
use Friendica\BaseDataTransferObject;
/**
2021-06-18 05:50:52 +00:00
* Class Token
2021-05-13 11:26:56 +00:00
*
2021-06-18 05:50:52 +00:00
* @see https://docs.joinmastodon.org/entities/token/
2021-05-13 11:26:56 +00:00
*/
class Token extends BaseDataTransferObject
{
/** @var string */
protected $access_token;
/** @var string */
protected $token_type;
/** @var string */
protected $scope;
2021-06-18 03:21:38 +00:00
/** @var int (timestamp) */
2021-05-13 11:26:56 +00:00
protected $created_at;
/** @var string */
protected $me;
2021-05-13 11:26:56 +00:00
/**
* Creates a token record
*
2023-02-01 16:33:07 +00:00
* @param string $access_token Token string
* @param string $token_type Always "Bearer"
* @param string $scope Combination of "read write follow push"
* @param string $created_at Creation date of the token
* @param string $me Actor profile of the token owner
2021-05-13 11:26:56 +00:00
*/
public function __construct(string $access_token, string $token_type, string $scope, string $created_at, string $me = null)
2021-05-13 11:26:56 +00:00
{
$this->access_token = $access_token;
$this->token_type = $token_type;
$this->scope = $scope;
2021-06-18 03:21:38 +00:00
$this->created_at = strtotime($created_at);
$this->me = $me;
}
/**
* Returns the current entity as an array
*
* @return array
*/
public function toArray(): array
{
$token = parent::toArray();
if (empty($token['me'])) {
unset($token['me']);
}
return $token;
2021-05-13 11:26:56 +00:00
}
}