All Projects β†’ yogthos β†’ Mastodon Bot

yogthos / Mastodon Bot

a bot for mirroring Twitter/Tumblr accounts and RSS feeds on Mastodon

Programming Languages

clojure
4091 projects
clojurescript
191 projects

Projects that are alternatives of or similar to Mastodon Bot

Likelo
Twitter auto like bot, Under DevelopmentπŸ‘·, Pre Alpha
Stars: ✭ 64 (-59.49%)
Mutual labels:  bot, twitter
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (-50%)
Mutual labels:  bot, twitter
Skraper
Kotlin/Java library and cli tool for scraping posts and media from various sources with neither authorization nor full page rendering (Facebook, Instagram, Twitter, Youtube, Tiktok, Telegram, Twitch, Reddit, 9GAG, Pinterest, Flickr, Tumblr, IFunny, VK, Pikabu)
Stars: ✭ 72 (-54.43%)
Mutual labels:  tumblr, twitter
Ananas
The Python Bot Framework for Mastodon
Stars: ✭ 46 (-70.89%)
Mutual labels:  bot, mastodon
Twitterbot
Golang smart Twitter bot
Stars: ✭ 111 (-29.75%)
Mutual labels:  bot, twitter
Mastodon Bridge
Moved to https://source.joinmastodon.org/mastodon/bridge
Stars: ✭ 53 (-66.46%)
Mutual labels:  mastodon, twitter
Sharexin
ShareX for Linux and BSD
Stars: ✭ 79 (-50%)
Mutual labels:  mastodon, twitter
Zonkeynet
RADIO Mesh Network
Stars: ✭ 12 (-92.41%)
Mutual labels:  bot, twitter
Cat Facts
Daily cat facts! 🐱
Stars: ✭ 110 (-30.38%)
Mutual labels:  bot, twitter
Forget
Continuous post deletion for twitter and mastodon
Stars: ✭ 104 (-34.18%)
Mutual labels:  mastodon, twitter
Fact Bot
Twitter bot dedicated to tweeting interesting facts daily
Stars: ✭ 40 (-74.68%)
Mutual labels:  bot, twitter
Tsuru
desktop client.
Stars: ✭ 126 (-20.25%)
Mutual labels:  mastodon, twitter
Twitter Downloader Telegram Bot
πŸ€– Telegram bot for download video from twitter.
Stars: ✭ 37 (-76.58%)
Mutual labels:  bot, twitter
Broid Kit
Bot framework powered by Broid
Stars: ✭ 58 (-63.29%)
Mutual labels:  bot, twitter
Orion
πŸš€ "Orion" is generic fediverse microblogging application for Desktop.
Stars: ✭ 14 (-91.14%)
Mutual labels:  mastodon, twitter
Network Avatar Picker
A npm module that returns user's social network avatar. Supported providers: facebook, instagram, twitter, tumblr, vimeo, github, youtube and gmail
Stars: ✭ 74 (-53.16%)
Mutual labels:  tumblr, twitter
Chir.py
twitter news bot that builds followers, posts, and bitcoin via ppc links
Stars: ✭ 10 (-93.67%)
Mutual labels:  bot, twitter
Tweety
.NET Standard Library to help in managing Twitter Webhook APIs.
Stars: ✭ 11 (-93.04%)
Mutual labels:  bot, twitter
Socialcounters
jQuery/PHP - Collection of Social Media APIs that display number of your social media fans. Facebook Likes, Twitter Followers, Instagram Followers, YouTube Subscribers, etc..
Stars: ✭ 104 (-34.18%)
Mutual labels:  tumblr, twitter
Dankenstein
Markov Chain Twitter Bot generator
Stars: ✭ 117 (-25.95%)
Mutual labels:  bot, twitter

description

Node.js CI

the bot will post the timeline from the specified Twitter/Tumblr accounts and RSS feeds to Mastodon

NPM

installation

  1. prerequisits: should be installed: Node.js, npm
  2. install mastodon-bot with: sudo npm install mastodon-bot -g
  3. run with: mastodon-bot <path to config>

usage

  • create a Mastodon API key following the instructions here
  • create a Twitter API key following the instructions here
  • create a Tumblr API key following the instructions here
  • create a file called config.edn with the following contents:

NOTE: the bot checks the specified Mastodon account to see the timestamp of the last post, and only posts content with later timestamps to avoid duplicate posts. On the first run the timestamp will default to current time.

{:auth {;; add Twitter config to mirror Twitter accounts
        :twitter {:consumer_key "XXXX"
                  :consumer_secret "XXXX"
                  :access_token_key "XXXX"
                  :access_token_secret "XXXX"}
        :mastodon {:access_token "XXXX"
                   ;; account number you see when you log in and go to your profile
                   ;; e.g: https://mastodon.social/web/accounts/294795
                   :account-id "XXXX"
                   :api_url "https://botsin.space/api/v1/"}
        :tumblr {:consumer_key "XXXX"
                 :consumer_secret "XXXX"
                 :token "XXXX"
                 :token_secret "XXXX"}}
 
:transform [{:source {:source-type :twitter
                       ;; optional, defaults to false
                       :include-replies? false
                       ;; optional, defaults to false
                       :include-rts? false
                       ;; Replace Twitter links by Nitter
                       :nitter-urls? false
                       ;; accounts you wish to mirror
                       :accounts ["arstechnica" "WIRED"]}
             :target {:target-type :mastodon
                      ;; optional flag specifying wether the name of the account
                      ;; will be appended in the post, defaults to false
                      :append-screen-name? false
                      ;; optional visibility flag: direct, private, unlisted, public
                      ;; defaults to public
                      :visibility "unlisted"
                      ;; optional boolean to mark content as sensitive. Defaults to true.
                      :sensitive? true
                      ;; optional boolean defaults to false
                      ;; only sources containing media will be posted when set to true
                      :media-only? true
                      ;; optional limit for the post length. Defaults to 300.
                      :max-post-length 300
                      ;; optional signature for posts. Defaults to "not present".
                      :signature "#newsbot"}
             ;; optionally try to resolve URLs in posts to skip URL shorteners
             ;; defaults to false
             :resolve-urls? true
             ;; optional content filter regexes
             ;; any posts matching the regexes will be filtered out
             :content-filters [".*bannedsite.*"]
             ;; optional keyword filter regexes
             ;; any posts not matching the regexes will be filtered out
             :keyword-filters [".*clojure.*"]
             ;; optional replacements
             ;; When the strings on the left side of this map are encountered in the source,
             ;; they are replaced with the string on the right side of the map:
             :replacements {
               "@openSUSE" "@[email protected]",
               "@conservancy" "@[email protected]"}}

             {:source {:source-type :rss
                       ;; add RSS config to follow feeds
                       :feeds [["Hacker News" "https://hnrss.org/newest"]
                               ["r/Clojure" "https://www.reddit.com/r/clojure/.rss"]]}
             :target {:target-type :mastodon
                      ...}
             :resolve-urls? ...}

             {:source {:source-type :tumblr
                       ;; optional limit for number of posts to retrieve, default: 5
                       :limit 10
                       :accounts ["cyberpunky.tumblr.com" "scipunk.tumblr.com"]
             :target {:target-type :mastodon
                      ...}
             :resolve-urls? ...}}
             ]
}
  • the bot looks for config.edn at its relative path by default, an alternative location can be specified either using the MASTODON_BOT_CONFIG environment variable or passing the path to config as an argument

  • transformations have source (s/def ::source-type #{:twitter :rss :tumblr}) und target (s/def ::target-type #{:mastodon}) you can combine freely. Multiple transformations for same source-target combination are possible. Source and targets refer to the auth section for their credentials.

  • install NPM modules: npm install

  • compile: npx shadow-cljs release app

  • run the bot: npm start

  • to poll at intervals setup a cron job such as:

    */30 * * * * npm start /path/to/config.edn > /dev/null 2>&1

License

Copyright Β© 2018 Dmitri Sotnikov

Distributed under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].