Got an IndieWeb site? Want to interact with federated social networks like Mastodon, Hubzilla, and more? Bridgy Fed is for you.
 
 
 
 
Go to file
Ryan Barrett 907e6e7aeb
show Web user page even when direct is False
not other protocols though
2024-01-22 13:12:20 -08:00
.circleci
.github
docs start to add superfeedr notify handler 2023-12-02 21:18:22 -08:00
scripts misc cleanup 2023-11-15 14:23:08 -08:00
static add /.well-known/security.txt 2024-01-22 12:56:56 -08:00
templates docs: expand "why not subdomains in handles?" 2024-01-18 06:55:03 -08:00
tests show Web user page even when direct is False 2024-01-22 13:12:20 -08:00
.gcloudignore
.gitignore switch from opt_outs.txt to new User.manual_opt_out property 2024-01-14 21:02:39 -08:00
.readthedocs.yaml
LICENSE add CC0 license 2023-11-09 14:09:44 -08:00
README.md revise README language for multi-protocol, switch to standard Bridgy logo 2024-01-04 08:57:17 -10:00
activitypub.py follow UI: error on bridged accounts 2024-01-15 07:57:03 -08:00
app.py start to add superfeedr notify handler 2023-12-02 21:18:22 -08:00
app.yaml add /.well-known/security.txt 2024-01-22 12:56:56 -08:00
appengine_config.py
atproto.py drop a lot of g.user 2023-11-25 20:23:19 -08:00
common.py switch aaronparecki.com from manually blocklisted to Web.manual_opt_out 2024-01-22 08:43:33 -08:00
config.py
convert.py /convert: handle missing protocols 2024-01-08 07:53:18 -08:00
dispatch.yaml hub dispatch: route /queue/atproto-poll-posts 2023-11-14 14:07:56 -08:00
flask_app.py drop the rest of g.user! 2023-11-25 20:38:28 -08:00
follow.py web follow bug fix: error gracefully on BF user addresses 2024-01-22 08:43:33 -08:00
hub.py ATProto: first pass at polling posts (timelines) 2023-11-14 12:30:14 -08:00
hub.yaml
ids.py ids.translate_object_id: handle Web.ap_subdomain 2023-12-24 10:20:04 -08:00
index.yaml
indieauth_client_id
models.py switch from opt_outs.txt to new User.manual_opt_out property 2024-01-14 21:02:39 -08:00
oauth_dropins_fonts
oauth_dropins_static
pages.py show Web user page even when direct is False 2024-01-22 13:12:20 -08:00
protocol.py start clearing Object.our_as1 again on updates 2024-01-08 13:03:44 -08:00
queue.yaml add poll-feed task queue 2024-01-06 12:44:09 -10:00
redirect.py /r/: serve Vary: Accept header 2023-12-31 09:21:04 -08:00
requirements.txt build(deps): bump jsonschema from 4.21.0 to 4.21.1 2024-01-22 04:33:18 -08:00
ui.py
web.py Web.convert: for meta refresh redirect, if object has no url, fall back to id 2024-01-22 13:04:16 -08:00
webfinger.py webfinger: handle users without handles 2023-12-01 15:46:37 -08:00

README.md

Bridgy Fed Circle CI Coverage Status

Bridgy Fed connects different decentralized social network protocols. It currently supports the fediverse (eg Mastodon) via ActivityPub, and the IndieWeb via webmentions and microformats2. Bluesky/AT Protocol and Nostr are planned for 2024. Bridgy Fed translates profiles likes, reposts, mentions, follows, and more from any supported network to any other. See the user docs and developer docs for more details.

https://fed.brid.gy/

License: This project is placed in the public domain. You may also use it under the CC0 License.

Development

Development reference docs are at bridgy-fed.readthedocs.io. Pull requests are welcome! Feel free to ping me in #indieweb-dev with any questions.

First, fork and clone this repo. Then, install the Google Cloud SDK and run gcloud components install beta cloud-datastore-emulator to install the datastore emulator. Once you have them, set up your environment by running these commands in the repo root directory:

gcloud config set project bridgy-federated
python3 -m venv local
source local/bin/activate
pip install -r requirements.txt

Now, run the tests to check that everything is set up ok:

gcloud beta emulators datastore start --use-firestore-in-datastore-mode --no-store-on-disk --host-port=localhost:8089 --quiet < /dev/null >& /dev/null &
python3 -m unittest discover

Finally, run this in the repo root directory to start the web app locally:

GAE_ENV=localdev FLASK_ENV=development flask run -p 8080

If you send a pull request, please include (or update) a test for the new functionality!

If you hit an error during setup, check out the oauth-dropins Troubleshooting/FAQ section.

You may need to change granary, oauth-dropins, mf2util, or other dependencies as well as as Bridgy Fed. To do that, clone their repo locally, then install them in "source" mode with e.g.:

pip uninstall -y granary
pip install -e <path to granary>

To deploy to the production instance on App Engine - if @snarfed has added you as an owner - run:

gcloud -q beta app deploy --no-cache --project bridgy-federated *.yaml

How to add a new protocol

  1. Determine how you'll map the new protocol to other existing Bridgy Fed protocols, specifically identity, protocol inference, events, and operations. Add those to the existing tables in the docs in a PR. This is an important step before you start writing code.
  2. Implement the id and handle conversions in ids.py.
  3. If the new protocol uses a new data format - which is likely - add that format to granary in a new file with functions that convert to/from ActivityStreams 1 and tests. See nostr.py and test_nostr.py for examples.
  4. Implement the protocol in a new .py file as a subclass of both Protocol and User. Implement the send, fetch, serve, and target_for methods from Protocol and handle and web_url from User .
  5. TODO: add a new usage section to the docs for the new protocol.
  6. TODO: does the new protocol need any new UI or signup functionality? Unusual, but not impossible. Add that if necessary.
  7. Protocol logos may be emoji or image files. If this one is a file, add it static/. Then add the emoji or file <img> tag in the Protocol subclass's LOGO_HTML constant.

Stats

I occasionally generate stats and graphs of usage and growth via BigQuery, like I do with Bridgy. Here's how.

  1. Export the full datastore to Google Cloud Storage. Include all entities except MagicKey. Check to see if any new kinds have been added since the last time this command was run.

    gcloud datastore export --async gs://bridgy-federated.appspot.com/stats/ --kinds Follower,Object
    

    Note that --kinds is required. From the export docs:

    Data exported without specifying an entity filter cannot be loaded into BigQuery.

  2. Wait for it to be done with gcloud datastore operations list | grep done.

  3. Import it into BigQuery:

    for kind in Follower Object; do
      bq load --replace --nosync --source_format=DATASTORE_BACKUP datastore.$kind gs://bridgy-federated.appspot.com/stats/all_namespaces/kind_$kind/all_namespaces_kind_$kind.export_metadata
    done
    
  4. Check the jobs with bq ls -j, then wait for them with bq wait.

  5. Run the full stats BigQuery query. Download the results as CSV.

  6. Open the stats spreadsheet. Import the CSV, replacing the data sheet.

  7. Check out the graphs! Save full size images with OS or browser screenshots, thumbnails with the Download Chart button.