A tool for exporting data from and importing data to Fediverse instances. Requires that they support the Mastodon API as implemented By GotoSocial. Intended for use with GotoSocial, but should work with other Mastodon-like instances, including Mastodon.
slurp
has commands for importing and exporting these API objects, in CSV formats compatible with the Mastodon import/export GUI where possible:
blocks
bookmarks
filters
(note that Mastodon can't import or export filters yet, so the current format isslurp
-specific, and handles keyword filters only, not status filters)follows
followers
(export only, and Mastodon can't export followers, so the format isslurp
-specific)lists
mutes
go mod download
go build .
Show help for all commands.
./slurp help
Before running other commands, log in.
You'll be asked to log into your instance in your web browser, and paste the provided authorization code into the prompt. This will save your access token in the system keychain, and that user as the default user in slurp's preferences.
./slurp --user user@instance.tld auth login
Load follows from a previous instance. This will use your stored access token and default user.
./slurp follows import --file following_accounts.csv
Save follows from this instance.
./slurp follows export --file follows_backup.csv
slurp
respects these environment variables:
HTTPS_PROXY
: if you're using an HTTPS proxy for debugging, pass the URL to it here; for example,http://localhost:9090
for Proxyman's default configuration. (HTTPS_PROXY
is common across most Go apps and not specific toslurp
.)
slurp
stores its preferences in ~/Library/Application Support/codes.catgirl.slurp/prefs.json
or the equivalent for your OS (usually ~/.config/codes.catgirl.slurp/prefs.json
on Linux), respecting XDG environment variables and their equivalents.
Do this when the GotoSocial API changes. This will use the Swagger spec on GotoSocial's main
branch.
rm -rf client models
go generate ./...
# apply workaround for https://github.com/go-swagger/go-swagger/issues/2997
patch -u -p1 -i filter-context.diff
You can also use go-swagger
directly instead of through go generate
, which you'll want to do if using a different branch or tag, or a local copy of the GotoSocial codebase. In the latter case, don't forget to update your copy's swagger.yaml
first.
go run github.com/go-swagger/go-swagger/cmd/swagger generate client --spec /path/to/gotosocial/docs/api/swagger.yaml