An xmpp bot which posts to a MUC if there is an update in newsfeeds.
Find a file
2022-08-21 12:22:05 +02:00
.gitignore Initial commit 2018-07-13 22:53:22 +02:00
config.json.example Manually merged last cherry-pick. 2019-05-31 12:07:46 +02:00
getarticles.go Adjust to new html2text behavior. 2021-12-13 10:30:00 +01:00
go.mod Update vendored dependencies. 2022-02-27 09:47:36 +08:00
go.sum Update vendored dependencies. 2022-02-27 09:47:36 +08:00
LICENSE Add LICENSE 2018-07-13 21:11:57 +00:00
main.go Update s.d.o username from mdosch-guest to mdosch. 2020-06-30 16:16:21 +02:00
README.md [codespell]: Fix typos. 2022-08-21 12:22:05 +02:00
removetracking.go [codespell]: Fix typos. 2022-08-21 12:22:05 +02:00

feed-to-muc

about

feed-to-muc is an XMPP bot which queries Atom or RSS newsfeeds and posts the short summary to a XMPP MUC if there is a new article.

disclaimer

I am no programmer and this bot is a result of a lot of try and error. There are probably lots of quirks that are remains of some wrong paths I went in between. Also a lot is probably solved in a hacky way due to missing experience.

Anyway, it works (for me at least) and so I upload this here. Recommendations about what can be done better improved and so on are very welcome.

requirements

installation

If you have GOPATH set just run this commands:

$ go get salsa.debian.org/mdosch/feed-to-muc
$ go install salsa.debian.org/mdosch/feed-to-muc

You will find the binary in $GOPATH/bin or, if set, $GOBIN.

configuration

If the flag -config is not used the configuration is expected at $HOME/.config/feed-to-muc/config.json in this format:

{
"ServerAddress": "example.com:5222",
"BotJid":        "feedbot@example.com",
"Password":      "ChangeThis!",
"Muc":           "muc-to-feed@conference.example.com",
"MucNick":       "feedbot",
"Contact":       "xmpp:botadmin@example.com",
"MaxArticles":    5,
"RefreshTime":    30,
"NoExcerpt":     false,
"Quiet":         false,
"Filter":        [ "submitted by", "[link]" ],
"Feeds":         [ "https://www.debian.org/News/news",
                 "https://www.debian.org/security/dsa-long",
                 "https://www.reddit.com/r/FDroidUpdates/new.rss" ]
}

MaxArticles is the maximum number of articles that are sent per feed and query. If NoExcerpt is set to true no excerpt will be posted. RefreshTime defines the interval for checking the feeds in seconds.

With Filter you can specify strings for filtering out lines beginning with those strings.

Contact is for providing contact information about who is running the bot.

If you don't want additional noise in the MUC you can set Quiet to disable bot queries (e.g. contact) in the MUC (queries per private message are still available).