Added Easy::Token.

This commit is contained in:
tastytea 2019-04-16 17:56:45 +02:00
parent 8db37998fc
commit 346154c062
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
5 changed files with 134 additions and 1 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.6)
project (mastodon-cpp
VERSION 0.102.0
VERSION 0.103.0
LANGUAGES CXX
)

View File

@ -35,6 +35,7 @@
#include "easy/entities/results.hpp"
#include "easy/entities/status.hpp"
#include "easy/entities/tag.hpp"
#include "easy/entities/token.hpp"
#include "easy/entities/pushsubscription.hpp"
#else
#include <mastodon-cpp/easy/easy.hpp>
@ -53,6 +54,7 @@
#include <mastodon-cpp/easy/entities/results.hpp>
#include <mastodon-cpp/easy/entities/status.hpp>
#include <mastodon-cpp/easy/entities/tag.hpp>
#include <mastodon-cpp/easy/entities/token.hpp>
#include <mastodon-cpp/easy/entities/pushsubscription.hpp>
#endif

View File

@ -0,0 +1,48 @@
/* This file is part of mastodon-cpp.
* Copyright © 2019 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "token.hpp"
using namespace Mastodon;
using Token = Easy::Token;
bool Token::valid() const
{
return Entity::check_valid({"access_token",
"token_type",
"scope",
"created_at"});
}
const string Token::access_token() const
{
return get_string("access_token");
}
const string Token::token_type() const
{
return get_string("token_type");
}
const string Token::scope() const
{
return get_string("scope");
}
const Easy::time Token::created_at() const
{
return get_time("created_at");
}

View File

@ -0,0 +1,80 @@
/* This file is part of mastodon-cpp.
* Copyright © 2019 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASTODON_CPP_EASY_TOKEN_HPP
#define MASTODON_CPP_EASY_TOKEN_HPP
#include <string>
// If we are compiling mastodon-cpp, use another include path
#ifdef MASTODON_CPP
#include "mastodon-cpp.hpp"
#include "easy/entity.hpp"
#else
#include <mastodon-cpp/mastodon-cpp.hpp>
#include <mastodon-cpp/easy/entity.hpp>
#endif
using std::string;
namespace Mastodon
{
namespace Easy
{
/*!
* @brief Class to hold applications.
*
* @since before 0.11.0
*/
class Token : public Entity
{
public:
using Entity::Entity;
virtual bool valid() const override;
/*!
* @brief Returns the access token.
*
* @since 0.103.0
*/
const string access_token() const;
/*!
* @brief Returns the token type.
*
* @since 0.103.0
*/
const string token_type() const;
/*!
* @brief Returns the scope of the token.
*
* @since 0.103.0
*/
const string scope() const;
/*!
* @brief Returns the date of creation.
*
* @since 0.103.0
*/
const Easy::time created_at() const;
};
}
}
#endif // MASTODON_CPP_EASY_TOKEN_HPP

View File

@ -30,6 +30,7 @@
#include "easy/entities/results.hpp"
#include "easy/entities/status.hpp"
#include "easy/entities/tag.hpp"
#include "easy/entities/token.hpp"
#include "easy/entities/pushsubscription.hpp"
using namespace Mastodon;
@ -85,6 +86,7 @@ template struct Easy::return_entity<Easy::Report>;
template struct Easy::return_entity<Easy::Results>;
template struct Easy::return_entity<Easy::Status>;
template struct Easy::return_entity<Easy::Tag>;
template struct Easy::return_entity<Easy::Token>;
template struct Easy::return_entity<Easy::PushSubscription>;
@ -128,4 +130,5 @@ template struct Easy::return_entity_vector<Easy::Report>;
template struct Easy::return_entity_vector<Easy::Results>;
template struct Easy::return_entity_vector<Easy::Status>;
template struct Easy::return_entity_vector<Easy::Tag>;
template struct Easy::return_entity_vector<Easy::Token>;
template struct Easy::return_entity_vector<Easy::PushSubscription>;