mastodon-cpp  0.110.0
Public Member Functions | List of all members
Mastodon::Easy::Relationship Class Reference

Class to hold relationships. More...

#include <relationship.hpp>

Inheritance diagram for Mastodon::Easy::Relationship:
Mastodon::Easy::Entity

Public Member Functions

virtual bool valid () const override
 Returns true if the Entity holds valid data. More...
 
bool blocking () const
 Returns true if the user is blocking the account. More...
 
bool domain_blocking () const
 Returns true if the user is blocking the account's domain. More...
 
bool endorsed () const
 Returns true if the account is endorsed by the user. More...
 
bool followed_by () const
 Returns true if the user is being followed by the account. More...
 
bool following () const
 Returns true if the user is being following the account. More...
 
const string id () const
 Returns the target account ID. More...
 
bool muting () const
 Returns true if the user is muting the account. More...
 
bool muting_notifications () const
 Returns true if the user is also muting notifications. More...
 
bool requested () const
 Returns true if the user has requested to follow the account. More...
 
bool showing_notifications () const
 Returns true if the user is showing notifications. More...
 
bool showing_reblogs () const
 Returns true if the user is showing reblogs. 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...
 
- Public Member Functions inherited from Mastodon::Easy::Entity
 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

- Protected Member Functions inherited from Mastodon::Easy::Entity
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...
 

Detailed Description

Class to hold relationships.

before 0.11.0

Member Function Documentation

◆ blocking()

bool Relationship::blocking ( ) const

Returns true if the user is blocking the account.

Since
before 0.11.0
40 {
41  return get_bool("blocking");
42 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ domain_blocking()

bool Relationship::domain_blocking ( ) const

Returns true if the user is blocking the account's domain.

Since
before 0.11.0
45 {
46  return get_bool("domain_blocking");
47 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ endorsed()

bool Relationship::endorsed ( ) const

Returns true if the account is endorsed by the user.

Since
0.19.0
50 {
51  return get_bool("endorsed");
52 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ Entity() [1/3]

Easy::Entity::Entity

Constructs an empty Entity object.

Since
before 0.11.0
44 : _tree(Json::nullValue)
45 , _was_set(false)
46 {}

◆ Entity() [2/3]

Easy::Entity::Entity
explicit

Constructs an Entity object from a JSON string.

Parameters
jsonJSON string
Since
before 0.11.0
32 : _tree(Json::nullValue)
33 ,_was_set(false)
34 {
35  from_string(json);
36 }
void from_string(const string &json)
Replaces the Entity with a new one from a JSON string.
Definition: entity.cpp:56

◆ Entity() [3/3]

Easy::Entity::Entity
explicit

Constructs an Entity object from a JSON object.

Parameters
objectJSON object
Since
0.100.0
39 : _tree(object)
40 ,_was_set(false)
41 {}

◆ followed_by()

bool Relationship::followed_by ( ) const

Returns true if the user is being followed by the account.

Since
before 0.11.0
55 {
56  return get_bool("followed_by");
57 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ following()

bool Relationship::following ( ) const

Returns true if the user is being following the account.

Since
before 0.11.0
60 {
61  return get_bool("following");
62 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ id()

const string Relationship::id ( ) const

Returns the target account ID.

Since
before 0.11.0
65 {
66  return get_string("id");
67 }
const string get_string(const string &key) const
Returns the value of key as std::string.
Definition: entity.cpp:174

◆ muting()

bool Relationship::muting ( ) const

Returns true if the user is muting the account.

Since
before 0.11.0
70 {
71  return get_bool("muting");
72 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ muting_notifications()

bool Relationship::muting_notifications ( ) const

Returns true if the user is also muting notifications.

Since
before 0.11.0
75 {
76  return get_bool("muting_notifications");
77 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ requested()

bool Relationship::requested ( ) const

Returns true if the user has requested to follow the account.

Since
before 0.11.0
80 {
81  return get_bool("requested");
82 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ showing_notifications()

bool Relationship::showing_notifications ( ) const

Returns true if the user is showing notifications.

Since
0.19.0
85 {
86  return get_bool("showing_notifications");
87 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ showing_reblogs()

bool Relationship::showing_reblogs ( ) const

Returns true if the user is showing reblogs.

Since
0.106.0
90 {
91  return get_bool("showing_reblogs");
92 }
bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:216

◆ valid()

bool Relationship::valid ( ) const
overridevirtual

Returns true if the Entity holds valid data.

Since
before 0.11.0 (virtual since 0.18.2)

Implements Mastodon::Easy::Entity.

23 {
24  return Entity::check_valid(
25  {
26  "id",
27  "following",
28  "followed_by",
29  "blocking",
30  "muting",
31  "muting_notifications",
32  "requested",
33  "domain_blocking",
34  "showing_reblogs",
35  "endorsed"
36  });
37 }
bool check_valid(const std::vector< string > &attributes) const
Checks if an Entity is valid.
Definition: entity.cpp:102

The documentation for this class was generated from the following files: