mastorss/README.md

91 lines
2.4 KiB
Markdown
Raw Normal View History

2018-02-10 12:35:06 +01:00
**mastorss** dumps RSS feeds into a mastodon account.
2018-03-15 13:20:26 +01:00
Supports RSS 2.0 but not RSS 0.92. Does not support Atom at the moment.
2018-03-15 13:29:01 +01:00
\<item\>s in feeds must have \<link\>, \<title\> and \<description\>.
2018-03-15 13:20:26 +01:00
The documentation is far from complete, sorry.
2018-01-26 02:33:58 +01:00
# Install
## Dependencies
* Tested OS: Linux
2018-10-08 22:39:04 +02:00
* C++ compiler (tested: gcc 5 / 6 / 7 / 8)
* [cmake](https://cmake.org/) (tested: 3.9 / 3.12)
2018-06-13 05:31:03 +02:00
* [boost](http://www.boost.org/) (tested: 1.65 / 1.62)
2018-10-08 22:39:04 +02:00
* [curlpp](http://www.curlpp.org/) (tested: 0.8)
2019-04-21 04:00:55 +02:00
* [mastodon-cpp](https://schlomp.space/tastytea/mastodon-cpp) (at least:
0.105.0)
2018-06-13 05:31:03 +02:00
* [jsoncpp](https://github.com/open-source-parsers/jsoncpp) (tested: 1.8 / 1.7)
2018-01-26 02:33:58 +01:00
## Get sourcecode
### Development version
2018-06-04 21:02:07 +02:00
git clone https://schlomp.space/tastytea/mastorss.git
2018-01-26 02:33:58 +01:00
## Compile
mkdir build
cd build/
cmake ..
make
2018-03-15 13:20:26 +01:00
## Install
2018-01-26 02:33:58 +01:00
Install with `make install`.
# Usage
2019-04-21 04:00:55 +02:00
Put `watchwords.json` into `~/.config/mastorss/`. Launch with profile name. The
first occurence of every watchword in an RSS item will be turned into a hashtag.
For profile-specific watchwords see the example in `watchwords.json`. In the
first run only the newest entry is tooted.
2018-01-26 20:59:01 +01:00
The profile can't be named "global".
2018-01-26 02:33:58 +01:00
## Example config file
2018-02-22 18:28:29 +01:00
${HOME}/.config/mastorss/config-example.json
{
"example": {
"instance": "botsin.space",
"feedurl": "https:\/\/example.com\/feed.rss",
"access_token": "123abc",
2018-04-14 16:07:41 +02:00
"max_size": 400,
2018-04-14 15:43:48 +02:00
"titles_only": false,
2018-03-15 13:20:26 +01:00
"skip":
[
"If the entry starts with this, skip it",
"Skip me too!"
],
"fixes":
[
"delete this",
"<p>[Rr]ead more(\.{3}|…)</p>"
2018-05-11 01:17:53 +02:00
],
"append": "#bot"
}
}
2018-01-26 02:33:58 +01:00
## Error codes
2018-08-30 01:13:22 +02:00
Same as
[mastodon-cpp](https://schlomp.space/tastytea/mastodon-cpp/src/branch/master/README.md#error-codes),
plus:
| Code | Explanation |
| --------: |:----------------------------------------|
| 1 | Could not send post for unknown reasons |
2018-01-26 02:33:58 +01:00
# Copyright
2019-04-21 04:00:55 +02:00
``` text
Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>.
License GPLv3: GNU GPL version 3 <https://www.gnu.org/licenses/gpl-3.0.html>.
This program comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to redistribute it under certain conditions.
```