fixed header searching
This commit is contained in:
parent
968339a0c0
commit
6cb9589cc0
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,4 @@
|
||||||
/build/
|
/build/
|
||||||
/doc/
|
/doc/
|
||||||
/update_gh-pages.sh
|
/update_gh-pages.sh
|
||||||
/src/mastodon-cpp
|
|
||||||
/src/examples/example99*
|
/src/examples/example99*
|
||||||
|
|
|
@ -22,6 +22,9 @@ configure_file (
|
||||||
"${PROJECT_BINARY_DIR}/version.hpp"
|
"${PROJECT_BINARY_DIR}/version.hpp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Announce that we are compiling mastodon-cpp (used in easy.hpp and examples)
|
||||||
|
add_definitions(-DMASTODON_CPP=1)
|
||||||
|
|
||||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||||
add_definitions(-DDEBUG=1)
|
add_definitions(-DDEBUG=1)
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -21,10 +21,16 @@
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <jsoncpp/json/json.h>
|
#include <jsoncpp/json/json.h>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
// If we are compiling mastodon-cpp, use another include path
|
||||||
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
using std::uint16_t;
|
using std::uint16_t;
|
||||||
|
using std::uint64_t;
|
||||||
|
|
||||||
namespace Mastodon
|
namespace Mastodon
|
||||||
{
|
{
|
||||||
|
@ -49,6 +55,17 @@ public:
|
||||||
Undefined
|
Undefined
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Describes the attachment type
|
||||||
|
*/
|
||||||
|
enum class attachment_type
|
||||||
|
{
|
||||||
|
image,
|
||||||
|
video,
|
||||||
|
gifv,
|
||||||
|
unknown
|
||||||
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Constructs a new Easy object.
|
* @brief Constructs a new Easy object.
|
||||||
*
|
*
|
||||||
|
@ -71,7 +88,7 @@ public:
|
||||||
*
|
*
|
||||||
* @param json JSON string
|
* @param json JSON string
|
||||||
*/
|
*/
|
||||||
Account(const string &json);
|
explicit Account(const string &json);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns true if the account holds valid data
|
* @brief Returns true if the account holds valid data
|
||||||
|
@ -109,12 +126,12 @@ public:
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns number of followers
|
* @brief Returns number of followers
|
||||||
*/
|
*/
|
||||||
const std::uint64_t followers_count() const;
|
const uint64_t followers_count() const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns number of people this account follows
|
* @brief Returns number of people this account follows
|
||||||
*/
|
*/
|
||||||
const std::uint64_t following_count() const;
|
const uint64_t following_count() const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns URL of header image
|
* @brief Returns URL of header image
|
||||||
|
@ -129,13 +146,24 @@ public:
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns account-ID
|
* @brief Returns account-ID
|
||||||
*/
|
*/
|
||||||
const std::uint64_t id() const;
|
const uint64_t id() const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns true if the account is locked
|
* @brief Returns true if the account is locked
|
||||||
*/
|
*/
|
||||||
const bool locked() const;
|
const bool locked() const;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Returns true if the account has been moved
|
||||||
|
*/
|
||||||
|
const bool has_moved() const;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief If the owner decided to switch accounts, new account is in
|
||||||
|
* this attribute
|
||||||
|
*/
|
||||||
|
const Account moved() const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns note
|
* @brief Returns note
|
||||||
*/
|
*/
|
||||||
|
@ -159,7 +187,7 @@ public:
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns number of statuses
|
* @brief Returns number of statuses
|
||||||
*/
|
*/
|
||||||
const std::uint64_t statuses_count() const;
|
const uint64_t statuses_count() const;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* @brief Returns URL of the profile
|
* @brief Returns URL of the profile
|
||||||
|
@ -175,6 +203,37 @@ public:
|
||||||
Json::Value _tree;
|
Json::Value _tree;
|
||||||
bool _valid;
|
bool _valid;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Class to hold attachments
|
||||||
|
*/
|
||||||
|
class Attachment
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
/*!
|
||||||
|
* @brief Constructs an attachment object from a JSON string.
|
||||||
|
*
|
||||||
|
* @param json JSON string
|
||||||
|
*/
|
||||||
|
explicit Attachment(const string &json);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Returns true if the attachment holds valid data
|
||||||
|
*/
|
||||||
|
const bool valid() const;
|
||||||
|
|
||||||
|
const uint64_t id() const;
|
||||||
|
const attachment_type type() const;
|
||||||
|
const string url() const;
|
||||||
|
const string remote_url() const;
|
||||||
|
const string preview_url() const;
|
||||||
|
const string text_url() const;
|
||||||
|
const string description() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
Json::Value _tree;
|
||||||
|
bool _valid;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,11 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,11 @@
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <jsoncpp/json/json.h>
|
#include <jsoncpp/json/json.h>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
|
|
|
@ -11,7 +11,11 @@
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <jsoncpp/json/json.h>
|
#include <jsoncpp/json/json.h>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
|
|
|
@ -6,7 +6,11 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,11 @@
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,11 @@
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,11 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,11 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,11 @@
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,11 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,11 @@
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <jsoncpp/json/json.h>
|
#include <jsoncpp/json/json.h>
|
||||||
#include "mastodon-cpp/mastodon-cpp.hpp"
|
#ifdef MASTODON_CPP
|
||||||
|
#include "mastodon-cpp.hpp"
|
||||||
|
#else
|
||||||
|
#include <mastodon-cpp/mastodon-cpp.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using Mastodon::API;
|
using Mastodon::API;
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user