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

Class to hold results. More...

#include <results.hpp>

Inheritance diagram for Mastodon::Easy::Results:
Mastodon::Easy::Entity

Public Member Functions

virtual bool valid () const override
 Returns true if the Entity holds valid data. More...
 
const std::vector< Accountaccounts () const
 Returns an array of matched Accounts. More...
 
const std::vector< Statusstatuses () const
 Returns an array of matched Statuses. More...
 
const std::vector< string > hashtags_v1 () const
 Returns an array of matched hashtags as string. More...
 
const std::vector< Taghashtags_v2 () const
 Returns an array of matched hashtags as Easy::Tag. 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 results.

Since
before 0.11.0

Member Function Documentation

◆ accounts()

const std::vector< Easy::Account > Results::accounts ( ) const

Returns an array of matched Accounts.

Since
before 0.11.0
35 {
36  const Json::Value node = get("accounts");
37  if (node.isArray())
38  {
39  std::vector<Easy::Account> vec;
40  std::transform(node.begin(), node.end(), std::back_inserter(vec),
41  [](const Json::Value &value)
42  { return Easy::Account(value); });
43  return vec;
44  }
45 
46  return {};
47 }
const Json::Value get(const string &key) const
Returns the value of key as Json::Value.
Definition: entity.cpp:133
Class to hold accounts.
Definition: account.hpp:42

◆ 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 object.

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

◆ Entity() [3/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

◆ hashtags_v1()

const std::vector< string > Results::hashtags_v1 ( ) const

Returns an array of matched hashtags as string.

Since
0.16.0
65 {
66  return get_vector("hashtags");
67 }
const std::vector< string > get_vector(const string &key) const
Returns the value of key as vector.
Definition: entity.cpp:245

◆ hashtags_v2()

const std::vector< Easy::Tag > Results::hashtags_v2 ( ) const

Returns an array of matched hashtags as Easy::Tag.

Since
0.16.0
70 {
71  const Json::Value node = get("hashtags");
72  if (node.isArray())
73  {
74  std::vector<Easy::Tag> vec;
75  std::transform(node.begin(), node.end(), std::back_inserter(vec),
76  [](const Json::Value &value)
77  { return Easy::Tag(value); });
78  return vec;
79  }
80 
81  return {};
82 }
const Json::Value get(const string &key) const
Returns the value of key as Json::Value.
Definition: entity.cpp:133
Class to hold tags.
Definition: tag.hpp:38

◆ statuses()

const std::vector< Easy::Status > Results::statuses ( ) const

Returns an array of matched Statuses.

Since
before 0.11.0
50 {
51  const Json::Value node = get("statuses");
52  if (node.isArray())
53  {
54  std::vector<Easy::Status> vec;
55  std::transform(node.begin(), node.end(), std::back_inserter(vec),
56  [](const Json::Value &value)
57  { return Easy::Status(value); });
58  return vec;
59  }
60 
61  return {};
62 }
const Json::Value get(const string &key) const
Returns the value of key as Json::Value.
Definition: entity.cpp:133
Class to hold statuses.
Definition: status.hpp:46

◆ valid()

bool Results::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.

25 {
26  return Entity::check_valid(
27  {
28  "accounts",
29  "statuses",
30  "hashtags"
31  });
32 }
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: