2018-03-31 00:00:20 +02:00
|
|
|
/* This file is part of mastodon-cpp.
|
2019-03-20 06:15:43 +01:00
|
|
|
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
|
2018-03-31 00:00:20 +02:00
|
|
|
*
|
|
|
|
* 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_NOTIFICATION_HPP
|
|
|
|
#define MASTODON_CPP_EASY_NOTIFICATION_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
// If we are compiling mastodon-cpp, use another include path
|
|
|
|
#ifdef MASTODON_CPP
|
|
|
|
#include "mastodon-cpp.hpp"
|
2018-04-01 03:36:11 +02:00
|
|
|
#include "easy/easy.hpp"
|
2018-04-03 00:13:21 +02:00
|
|
|
#include "easy/entities/account.hpp"
|
|
|
|
#include "easy/entities/status.hpp"
|
2018-03-31 00:00:20 +02:00
|
|
|
#else
|
|
|
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
2018-04-01 03:36:11 +02:00
|
|
|
#include <mastodon-cpp/easy/easy.hpp>
|
2018-04-11 16:06:32 +02:00
|
|
|
#include <mastodon-cpp/easy/entities/account.hpp>
|
|
|
|
#include <mastodon-cpp/easy/entities/status.hpp>
|
2018-03-31 00:00:20 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
using std::string;
|
2019-02-22 08:29:54 +01:00
|
|
|
using std::uint64_t;
|
2018-03-31 00:00:20 +02:00
|
|
|
using std::chrono::system_clock;
|
|
|
|
|
|
|
|
namespace Mastodon
|
|
|
|
{
|
|
|
|
/*!
|
|
|
|
* @brief Class to hold notifications
|
2018-06-14 11:17:26 +02:00
|
|
|
*
|
|
|
|
* @since before 0.11.0
|
2018-03-31 00:00:20 +02:00
|
|
|
*/
|
|
|
|
class Easy::Notification : public Easy::Entity
|
|
|
|
{
|
|
|
|
public:
|
2019-03-11 20:48:54 +01:00
|
|
|
using Entity::Entity;
|
2018-03-31 00:00:20 +02:00
|
|
|
|
2018-12-04 11:26:28 +01:00
|
|
|
virtual bool valid() const;
|
2018-07-14 11:44:30 +02:00
|
|
|
|
2018-03-31 00:00:20 +02:00
|
|
|
/*!
|
|
|
|
* @brief Returns the Account sending the notification to the user
|
2018-06-14 11:17:26 +02:00
|
|
|
*
|
|
|
|
* @since before 0.11.0
|
2018-03-31 00:00:20 +02:00
|
|
|
*/
|
|
|
|
const Account account() const;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Returns time of creation
|
2018-06-14 11:17:26 +02:00
|
|
|
*
|
|
|
|
* @since before 0.11.0
|
2018-03-31 00:00:20 +02:00
|
|
|
*/
|
|
|
|
const system_clock::time_point created_at() const;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Returns notification ID
|
2018-06-14 11:17:26 +02:00
|
|
|
*
|
|
|
|
* @since before 0.11.0
|
2018-03-31 00:00:20 +02:00
|
|
|
*/
|
2019-01-27 03:44:08 +01:00
|
|
|
const string id() const;
|
2018-03-31 00:00:20 +02:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Returns the Status associated with the notification, if
|
|
|
|
* applicable
|
2018-06-14 11:17:26 +02:00
|
|
|
*
|
|
|
|
* @since before 0.11.0
|
2018-03-31 00:00:20 +02:00
|
|
|
*/
|
2018-03-31 04:37:36 +02:00
|
|
|
const Status status() const;
|
2018-03-31 00:00:20 +02:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Returns notification type
|
2018-06-14 11:17:26 +02:00
|
|
|
*
|
|
|
|
* @since before 0.11.0
|
2018-03-31 00:00:20 +02:00
|
|
|
*/
|
2018-12-04 11:26:28 +01:00
|
|
|
Easy::notification_type type() const;
|
2018-03-31 00:00:20 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // MASTODON_CPP_EASY_NOTIFICATION_HPP
|