2018-05-12 02:30:57 +02:00
|
|
|
**expandurl-mastodon** is a Mastodon bot that expands shortened URLs.
|
2018-05-11 02:21:44 +02:00
|
|
|
|
2018-05-11 06:57:41 +02:00
|
|
|
If you want the bot to expand an URL, reply to the post with the URL in it and
|
2018-05-11 07:33:23 +02:00
|
|
|
mention the bot account (`@expandurl@botsin.space` for example).
|
|
|
|
|
2018-05-13 06:11:47 +02:00
|
|
|
![Example screenshot](https://user-images.githubusercontent.com/3681516/39963736-908e3eea-5663-11e8-9a9c-55ca74279235.jpg)
|
|
|
|
|
2018-05-11 07:33:23 +02:00
|
|
|
This bot uses the same visibility as you, but posts unlisted instead of public.
|
|
|
|
It retains the sensitive flag and spoiler warnings.
|
|
|
|
|
2018-05-20 18:31:27 +02:00
|
|
|
Some tracking parameters, like those beginning with
|
|
|
|
[utm_](https://en.wikipedia.org/wiki/UTM_parameters) are stripped. It also tries
|
|
|
|
to rewrite [AMP](https://en.wikipedia.org/wiki/Accelerated_Mobile_Pages) URLs to
|
|
|
|
point at the real webpages.
|
|
|
|
|
2018-05-11 07:33:23 +02:00
|
|
|
Please report any bugs via the
|
|
|
|
[issue tracker on GitHub](https://github.com/tastytea/expandurl-mastodon/issues)
|
|
|
|
or to [@tastytea@soc.ialis.me](https://soc.ialis.me/@tastytea).
|
2018-05-11 02:21:44 +02:00
|
|
|
|
|
|
|
# Install
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
* Tested OS: Linux
|
2018-05-13 06:25:29 +02:00
|
|
|
* C++ compiler (tested: gcc 6.4)
|
2018-05-11 02:21:44 +02:00
|
|
|
* [cmake](https://cmake.org/) (tested: 3.9.6)
|
2018-05-13 06:25:29 +02:00
|
|
|
* [curlpp](http://www.curlpp.org/) (tested: 0.8.1)
|
2018-05-20 12:44:40 +02:00
|
|
|
* [mastodon-cpp](https://github.com/tastytea/mastodon-cpp) (at least: 0.13.1)
|
2018-05-20 14:25:20 +02:00
|
|
|
* [jsoncpp](https://github.com/open-source-parsers/jsoncpp) (tested: 1.8.4)
|
2018-05-11 02:21:44 +02:00
|
|
|
|
|
|
|
## Get sourcecode
|
|
|
|
|
2018-05-21 13:05:59 +02:00
|
|
|
### Latest release
|
|
|
|
|
|
|
|
https://github.com/tastytea/expandurl-mastodon/releases/latest
|
|
|
|
|
2018-05-11 02:21:44 +02:00
|
|
|
### Development version
|
|
|
|
|
|
|
|
git clone https://github.com/tastytea/expandurl-mastodon.git
|
|
|
|
|
|
|
|
## Compile
|
|
|
|
|
|
|
|
mkdir build
|
|
|
|
cd build/
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
|
|
|
|
Install with `make install`.
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
2018-05-20 14:25:20 +02:00
|
|
|
**The config file has changed from cfg to JSON in 0.4.0.**
|
|
|
|
|
2018-05-20 21:34:01 +02:00
|
|
|
Start expandurl-mastodon without parameters.
|
|
|
|
|
|
|
|
If no config file is found, you will be asked to provide your account address
|
|
|
|
and an acess token is generated. The config file can be found in
|
|
|
|
`${HOME}/.config/expandurl-mastodon.json` and looks like this:
|
2018-05-11 02:21:44 +02:00
|
|
|
|
2018-05-20 14:25:20 +02:00
|
|
|
{
|
|
|
|
"account": "expandurl@example.social",
|
2018-05-20 18:40:06 +02:00
|
|
|
"access_token": "abc123"
|
2018-05-20 14:25:20 +02:00
|
|
|
}
|
2018-05-11 06:57:41 +02:00
|
|
|
|
2018-05-11 02:21:44 +02:00
|
|
|
# Copyright
|
|
|
|
|
|
|
|
Copyright © 2018 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.
|