Skip to content

kylewm/bridgy

 
 

Repository files navigation

Got a web site? Want social network replies and likes on your site? Want to post and tweet from your site? Bridgy is for you.

https://brid.gy/

Bridgy pulls comments and likes from social networks back to your web site. You can also use it to publish your posts to those networks. See the docs for more details.

License: This project is placed in the public domain.

Development

You'll need the App Engine Python SDK version 1.9.15 or later (for vendor support). Add it to your $PYTHONPATH, e.g. export PYTHONPATH=$PYTHONPATH:/usr/local/google_appengine, and then run:

virtualenv local
source local/bin/activate
pip install -r requirements.freeze.txt

# We install gdata in source mode, and App Engine doesn't follow .egg-link
# files, so add a symlink to it.
ln -s ../../../src/gdata/src/gdata local/lib/python2.7/site-packages/gdata
ln -s ../../../src/gdata/src/atom local/lib/python2.7/site-packages/atom

python -m unittest discover

The last command runs the unit tests. If you send a pull request, please include (or update) a test for the new functionality if possible!

If you hit an error during setup, check out the oauth-dropins Troubleshooting/FAQ section. For searchability, here are a handful of error messages that have solutions there:

bash: ./bin/easy_install: ...bad interpreter: No such file or directory

ImportError: cannot import name certs

ImportError: No module named dev_appserver

ImportError: cannot import name tweepy

File ".../site-packages/tweepy/auth.py", line 68, in _get_request_token
  raise TweepError(e)
TweepError: must be _socket.socket, not socket

error: option --home not recognized

There's a good chance you'll need to make changes to granary, oauth-dropins, or webmention-tools at the same time as bridgy. To do that, clone their repos elsewhere, then install them in "source" mode with:

pip uninstall oauth-dropins
pip install -e <path to oauth-dropins>
ln -s <path to oauth-dropins>/oauth_dropins \
  local/lib/python2.7/site-packages/oauth_dropins

pip uninstall granary
pip install -e <path to granary>
ln -s <path to granary>/granary \
  local/lib/python2.7/site-packages/granary

pip uninstall webmention-tools
# webmention-tools isn't in pypi
ln -s <path to webmention-tools>/webmentiontools \
  local/lib/python2.7/site-packages/webmentiontools

The symlinks are necessary because App Engine's vendor module evidently doesn't follow .egg-link or .pth files. :/

This command runs the tests, pushes any changes in your local repo, and deploys to App Engine:

cd ../oauth-dropins && source local/bin/activate.csh && python -m unittest discover && \
  cd ../granary && source local/bin/activate.csh && python -m unittest discover && \
  cd ../bridgy && source local/bin/activate.csh && python -m unittest discover && \
  git push && md5sum -c keys.md5 && ~/google_appengine/appcfg.py update .

remote_api_shell is a useful interactive Python shell that can interact with the production app's datastore, memcache, etc. To use it, create a service account and download its JSON credentials, put it somewhere safe, and put its path in your GOOGLE_APPLICATION_CREDENTIALS environment variable.

Adding a new silo

So you want to add a new silo? Maybe MySpace, or Friendster, or even Tinder? Great! Here are the steps to do it. It looks like a lot, but it's not that bad, honest.

  1. Find the silo's API docs and check that it can do what Bridgy needs. At minimum, it should be able to get a user's posts and their comments, likes, and reposts, depending on which of those the silo supports. If you want publish support, it should also be able to create posts, comments, likes, reposts, and/or RSVPs.
  2. Fork and clone this repo.
  3. Create an app (aka client) in the silo's developer console, grab your app's id (aka key) and secret, put them into new local files in the repo root dir, following this pattern. You'll eventually want to send them to @snarfed and @kylewm too, but no hurry.
  4. Add the silo to oauth-dropins if it's not already there:
  5. Add a new .py file for your silo with an auth model and handler classes. Follow the existing examples.
  6. Add a button image.
  7. Add it to the app front page and the README.
  8. Add the silo to granary:
  9. Add a new .py file for your silo. Follow the existing examples. At minimum, you'll need to implement get_activities_response and convert your silo's API data to ActivityStreams.
  10. Add a new unit test file and write some tests!
  11. Add it to activitystreams.py (specifically Handler.get), app.py, app.yaml, index.html, and the README.
  12. Add the silo to Bridgy:
  13. Add a new .py file for your silo with a model class. Follow the existing examples.
  14. Add it to app.py, app.yaml, and handlers.py, (just import the module).
  15. Add a 24x24 PNG icon to static/.
  16. Add new SILO_signup.html and SILO_user.html files in templates/. and add the silo to listen_signup.html. Follow the existing examples.
  17. Add the silo to about.html and this README.
  18. If users' profile picture URLs can change, add a cron job that updates them to cron.py and cron.yaml. Also add the model class to the datastore backup job there.
  19. Optionally add publish support:
  20. Implement create and preview_create for the silo in granary.
  21. Add the silo to publish.py: import its module, add it to SOURCES, and update this error message.
  22. Add a publish-signup block to SILO_user.html and add the silo to social_user.html here.
  23. Update app.yaml.

Good luck, and happy hacking!

Monitoring

App Engine's built in dashboard and log browser are pretty good for interactive monitoring and debugging.

For alerting, we've set up Google Cloud Monitoring (née Stackdriver). Background in #377. It sends alerts by email and SMS when HTTP 4xx responses average >.1qps or 5xx >.05qps, latency averages >15s, or instance count averages >5 over the last 15m window.

Misc

The datastore is automatically backed up by a cron job that runs Datastore Admin backup and stores the results in Cloud Storage, in the brid-gy.appspot.com bucket. It backs up all entities weekly, and all entities except Response and SyndicatedPost daily, since they make up 92% of all entities by size and they aren't as critical to keep.

We use this command to set a Cloud Storage lifecycle policy on that bucket that deletes all files over 30 days old:

gsutil lifecycle set cloud_storage_lifecycle.json gs://brid-gy.appspot.com

So far, this has kept us within the 5GB free quota. Run this to see how much space we're currently using:

gsutil du -hsc gs://brid-gy.appspot.com/\*

Run this to download a single complete backup, for e.g. generating usage metrics with to_tsv.py:

gsutil cp -r gs://brid-gy.appspot.com/weekly/datastore_backup_full_YYYY_MM_DD_\* .

About

Got a web site? Post links to it on social networks? Wish comments showed up on your site too? Brid.gy copies them back for you.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 85.5%
  • HTML 13.2%
  • Other 1.3%