mastodon-cpp
0.110.0
|
Class to hold accounts. More...
#include <account.hpp>
Classes | |
class | Source |
Class to hold source attribute. More... | |
Public Member Functions | |
virtual bool | valid () const override |
Returns true if the Entity holds valid data. More... | |
const string | acct () const |
Returns username. More... | |
const string | avatar () const |
Returns URL of avatar. More... | |
const string | avatar_static () const |
Returns URL of static avatar. More... | |
bool | bot () const |
Returns true if the account performs automated actions. More... | |
const Easy::time_type | created_at () const |
Returns time of creation. More... | |
const string | display_name () const |
Returns display name. More... | |
const std::vector< Easy::Emoji > | emojis () |
Returns emojis. More... | |
const vector< Easy::account_field_type > | fields () const |
Returns metadata fields. More... | |
uint64_t | followers_count () const |
Returns number of followers. More... | |
uint64_t | following_count () const |
Returns number of people this account follows. More... | |
const string | header () const |
Returns URL of header image. More... | |
const string | header_static () const |
Returns URL of static header image. More... | |
const string | id () const |
Returns account-ID. More... | |
bool | locked () const |
Returns true if the account is locked. More... | |
bool | has_moved () const |
Returns true if the account has been moved. (Deprecated) More... | |
const Account | moved () const |
If the owner decided to switch accounts, new account is in this attribute. More... | |
const string | note () const |
Returns account description, or biography. More... | |
visibility_type | privacy () const |
Returns default privacy of new toots. More... | |
bool | sensitive () const |
Returns if media is marked as sensitive by default. More... | |
const Source | source () const |
Get source. More... | |
uint64_t | statuses_count () const |
Returns number of statuses. More... | |
const string | url () const |
Returns URL of the profile. More... | |
const string | username () const |
Returns username (without @hostname) More... | |
Entity (const string &json) | |
Constructs an Entity object from a JSON string. More... | |
Entity (const Json::Value &object) | |
Constructs an Entity object from a JSON object. More... | |
Entity () | |
Constructs an empty Entity object. More... | |
![]() | |
Entity (const string &json) | |
Constructs an Entity object from a JSON string. More... | |
Entity (const Json::Value &object) | |
Constructs an Entity object from a JSON object. More... | |
Entity () | |
Constructs an empty Entity object. More... | |
virtual | ~Entity () |
Destroys the object. More... | |
operator const Json::Value () const | |
void | from_string (const string &json) |
Replaces the Entity with a new one from a JSON string. More... | |
const string | to_string () const |
Returns the JSON of the Entity as formatted string. More... | |
void | from_object (const Json::Value &object) |
Replaces the Entity with a new one from a JSON object. More... | |
const Json::Value | to_object () const |
Returns the JSON object of the Entity. More... | |
const string | error () const |
Returns error string sent by the server. More... | |
bool | was_set () const |
Returns true if the last requested value was set, false if it was unset. More... | |
Additional Inherited Members | |
![]() | |
const Json::Value | get (const string &key) const |
Returns the value of key as Json::Value. More... | |
const string | get_string (const string &key) const |
Returns the value of key as std::string. More... | |
uint64_t | get_uint64 (const string &key) const |
Returns the value of key as std::uint64_t. More... | |
double | get_double (const string &key) const |
Returns the value of key as double. More... | |
bool | get_bool (const string &key) const |
Returns the value of key as bool. More... | |
const Easy::time_type | get_time (const string &key) const |
Returns the value of key as Easy::time. More... | |
const std::vector< string > | get_vector (const string &key) const |
Returns the value of key as vector. More... | |
void | set (const string &key, const Json::Value &value) |
Sets the value of key. More... | |
std::uint64_t | stouint64 (const string &str) const |
Returns value of str as uint64_t. | |
bool | check_valid (const std::vector< string > &attributes) const |
Checks if an Entity is valid. More... | |
Class to hold accounts.
const string Account::acct | ( | ) | const |
Returns username.
`username` for users on the same instance, `user@hostname` for users on other instances.
const string Account::avatar | ( | ) | const |
Returns URL of avatar.
const string Account::avatar_static | ( | ) | const |
Returns URL of static avatar.
bool Account::bot | ( | ) | const |
Returns true if the account performs automated actions.
const Easy::time_type Account::created_at | ( | ) | const |
Returns time of creation.
const string Account::display_name | ( | ) | const |
Returns display name.
const std::vector< Easy::Emoji > Account::emojis | ( | ) |
Returns emojis.
Easy::Entity::Entity |
Constructs an empty Entity object.
|
explicit |
Constructs an Entity object from a JSON string.
json | JSON string |
|
explicit |
const vector< Easy::account_field_type > Account::fields | ( | ) | const |
Returns metadata fields.
std::uint64_t Account::followers_count | ( | ) | const |
Returns number of followers.
std::uint64_t Account::following_count | ( | ) | const |
Returns number of people this account follows.
bool Account::has_moved | ( | ) | const |
Returns true if the account has been moved. (Deprecated)
const string Account::header | ( | ) | const |
Returns URL of header image.
const string Account::header_static | ( | ) | const |
Returns URL of static header image.
const string Account::id | ( | ) | const |
Returns account-ID.
bool Account::locked | ( | ) | const |
Returns true if the account is locked.
const Account Account::moved | ( | ) | const |
If the owner decided to switch accounts, new account is in this attribute.
const string Account::note | ( | ) | const |
Returns account description, or biography.
Easy::visibility_type Account::privacy | ( | ) | const |
Returns default privacy of new toots.
bool Account::sensitive | ( | ) | const |
Returns if media is marked as sensitive by default.
const Account::Source Account::source | ( | ) | const |
Get source.
std::uint64_t Account::statuses_count | ( | ) | const |
Returns number of statuses.
const string Account::url | ( | ) | const |
Returns URL of the profile.
const string Account::username | ( | ) | const |
Returns username (without @hostname)
|
overridevirtual |
Returns true if the Entity holds valid data.
Implements Mastodon::Easy::Entity.