C++ wrapper for the Mastodon and Pleroma APIs.
Go to file
tastytea b2e9d97fd9
Version bump 0.1.0.
2020-01-10 19:10:33 +01:00
cmake Implement HTTP POST in CURLWrapper. 2020-01-10 13:08:34 +01:00
examples Shorten streaming example. 2020-01-09 19:05:37 +01:00
include Simplified buffer_mutex documentation. 2020-01-10 19:03:58 +01:00
pkg-config Shorten the pkg-config file a bit. 2020-01-09 19:18:45 +01:00
src Hide CURLWrapper::cancel_stream(). 2020-01-10 18:57:42 +01:00
tests Add test for Connection. 2020-01-10 19:09:25 +01:00
.drone.yml CI: Fix cmake arguments. 2020-01-09 18:31:01 +01:00
.editorconfig Add skeleton. 2020-01-03 08:32:03 +01:00
.gitignore Expand git ignores. 2020-01-03 10:20:09 +01:00
CMakeLists.txt Version bump 0.1.0. 2020-01-10 19:10:33 +01:00
CODE_OF_CONDUCT.adoc Add contributing guidelines and COC. 2020-01-03 06:30:29 +01:00
CONTRIBUTING.adoc Add contributing guidelines and COC. 2020-01-03 06:30:29 +01:00
Doxyfile Add documentation. 2020-01-03 11:27:32 +01:00
LICENSE Add license. 2020-01-03 06:29:45 +01:00
README.adoc Update readme. 2020-01-10 14:27:15 +01:00
build_doc.sh Add documentation. 2020-01-03 11:27:32 +01:00

README.adoc

mastodonpp

mastodonpp is a C++ wrapper for the Mastodon API. It replaces mastodon-cpp.

We aim to create a library that is comfortable, yet minimal. All API endpoints from Mastodon and Pleroma are stored in enum classes, to counteract typos and make your life easier. The network-facing code is built on libcurl, a mature and stable library that is available on virtually every operating system. The library does not parse the responses itself, but returns to you the raw data, because we know everyone has their favorite JSON library and we dont want to impose our choice on you!

Features

This is still a work in progress; here is a rough overview of the features:

  • ❏ Requests

    • GET requests.

    • ✓ Streaming GET requests.

    • POST requests.

    • PATCH requests.

    • PUT requests.

    • DELETE requests.

  • ✓ Report maximum allowed character per post.

  • ❏ Comfortable access to pagination headers.

  • ❏ Comfortable function to register a new “app” (get an access token).

Usage

Have a look at the reference.

Example

#include "mastodonpp.hpp"
#include <iostream>

int main()
{
    mastodonpp::Instance instance{"example.com", {}};
    mastodonpp::Connection connection{instance};
    auto answer{connection.get(mastodonpp::API::v1::instance)};
    if (answer)
    {
        std::cout << answer << std::endl;
    }
}

More examples are included in the reference.

Install

From source

Dependencies

  • Tested OS: Linux

  • C++ compiler (tested: GCC 7/8/9, clang 6/7)

  • CMake (at least: 3.9)

  • libcurl (at least: 7.56)

  • Optional

    • Documentation: Doxygen (tested: 1.8)

    • Tests: Catch (tested: 2.5 / 1.2)

    • DEB package: dpkg (tested: 1.18)

    • RPM package: rpm-build (tested: 4.11)

Get sourcecode

Release

Download the current release at schlomp.space.

Development version
git clone https://schlomp.space/tastytea/mastodonpp.git

Compile

mkdir -p build && cd build
cmake ..
cmake --build . -- -j$(nproc --ignore=1)
CMake options:
  • -DCMAKE_BUILD_TYPE=Debug for a debug build.

  • -DWITH_TESTS=YES if you want to compile the tests.

  • -DWITH_EXAMPLES=YES if you want to compile the examples.

  • One of:

    • -DWITH_DEB=YES if you want to be able to generate a deb-package.

    • -DWITH_RPM=YES if you want to be able to generate an rpm-package.