Bluesky feeds in Ruby 
This repo is an example or template that you can use to create a "feed generator" service for the Bluesky social network that hosts custom feeds. It's a reimplementation of the official TypeScript feed-generator example in Ruby.
How do feed generators work#
#TODO - please read the README of the official feed-generator project.
Setting up#
First, you need to set up the database. By default, the app is configured to use SQLite and to create database files in db directory. If you want to use e.g. MySQL or PostgreSQL, you need to add a different database adapter gem to the Gemfile and change the configuration in config/database.yml.
To create the database, run the migrations:
bundle exec rake db:migrate
The feed configuration is done in app/config.rb. You need to set there:
- the DID identifier of the publisher (your account)
- the hostname on which the service will be running
Next, you need to create some feed classes in app/feeds. See the included feeds like StarWarsFeed as an example. The Feed superclass provides a #get_posts implementation which loads the posts in a feed in response to a request and passes the URIs to the server.
Once you have the feeds prepared, configure them in app/config.rb:
BlueFactory.add_feed 'starwars', StarWarsFeed.new
Running in development#
To run the firehose stream, use the firehose.rb script. By default, it will save all posts to the database and print progress dots for every saved post, and will print the text of each post that matches any feed's conditions. See the options in the file to change this.
In another terminal window, use the server.rb script to run the server. It should respond to such requests:
curl -i http://localhost:3000/.well-known/did.json
curl -i http://localhost:3000/xrpc/app.bsky.feed.describeFeedGenerator
curl -i http://localhost:3000/xrpc/app.bsky.feed.getFeedSkeleton?feed=at://did:plc:.../app.bsky.feed.generator/starwars
Running in production#
First, you need to make sure that the firehose script is always running and is restarted if necessary. One option to do this could be writing a systemd service config file and adding it to /etc/systemd/system.
To run the server part, you need an HTTP server and a Ruby app server. The choice is up to you and the configuration will depend on your selected config. My recommendation is Nginx with either Passenger (runs your app automatically from Nginx) or something like Puma (needs to be started by e.g. systemd like the firehose).
Publishing the feed#
Once you have the feed deployed to the production server, you can use the bluesky:publish Rake task (from the blue_factory gem) to upload the feed configuration to the Bluesky network.
You need to make sure that you have configured the feed's metadata in the feed class:
display_name(required) - the publicly visible name of your feed, e.g. "Star Wars Feed" (should be something short)description(optional) - a longer (~1-2 lines) description of what the feed does, displayed on the feed page as the "bio"avatar_file(optional) - path to an avatar image from the project's root (PNG or JPG)
When you're ready, run the rake task passing the feed key (you will be asked for the uploader account's password):
bundle exec rake bluesky:publish KEY=starwars
Credits#
Copyright © 2023 Kuba Suder (@mackuba.eu).
The code is available under the terms of the zlib license (permissive, similar to MIT).
Bug reports and pull requests are welcome 😎