This is a gateway service which allows project owners to send messages to the frontend via Sugar.
This service automatically deploys the master
branch to https://interventions-gateway-staging.zooniverse.org
The production branch gets deployed to https://interventions-gateway.zooniverse.org
All requests need to be authenticated. Authentication is done with an OAuth bearer token which can be gotten from Panoptes. You will probably want to create an OAuth application at https://panoptes.zooniverse.org/oauth/applications
This will give you an application ID and secret, and you can use this to authenticate with Panoptes, which will give you an OAuth bearer token in return.
Send in the bearer token in the Authorization header like so:
Authorization: Bearer <TOKEN>
All of the APIs exposed by this gateway service require you to pass in a project ID. If the project ID given does not match a project that you are an owner or collaborator on, you will get an HTTP 403 error status.
The system will respond with a JSON payload outlining the state of the incoming request.
On Error you will receive a JSON object with a list of errors
{
"errors: [
'requires message, project_id and user_id attributes'
]
}
On Success you will receive a JSON object outlining the state of the request and a unique identifier (uuid) that will be tracked in any associated classification metadata resulting from the request.
{
"status": "ok",
"message": "payload sent to user_id: 6",
"uuid": "2d931510-d99f-494a-8c67-87feb05e1594"
}
This service exposes the following API endpoints:
This lets you send a message to a user, if they are currently online.
A message will be shown to the specified user once they submit the classification they are currently working on.
A message will not be shown to the specified user after posting to this message API if the user never submits another classification or they reload / close their browser.
{
"project_id": "5733",
"user_id": "6",
"message": "All of your contributions really help."
}
Required payload attributes are above. If you wish to only show the message on a particular workflow then include the workflow_id
attribute as well.
Please note: the behaviour of how the interventions events are presented to the user is out of the control of this repo. Please refer to https://github.com/zooniverse/Panoptes-Front-End/ for specific details on intervention message handling.
This lets you prepend subjects into the user's queue. This queue is only maintained in the browser, so if the user reloads or closes their browser tab, the subjects will disappear from their queue.
{
"project_id": "3434",
"user_id": "23",
"subject_ids": ["1", "2"],
"workflow_id": "21"
}
To be able to post intervention messages to users on a project, you need to be an owner or have collaborator rights on a project.
Approved third parties can use Zooniverse controlled OAuth credentials to gain access to projects they don't run. Please get in touch via [email protected] for more information.
Once approved, you can use the credentials in OAuth flows described above to get bearer tokens.
Good news - as a project owner you can already send intervention messages to a project. You can also send messages to any project you have collaborator rights on.
If you get 200 status from the interventions API on POST requests then you can check the delivery of intervention messages through the logged in user websocket connections in web browser debug tools.
Launch your favourite debug tools, in network panel find the web socket connection wss://notifications.zooniverse.org/sugar/
. Inspect the frames coming down to see the messages being sent from the interventions gateway.
Install specified ruby version (see Dockerfile)
bundle install
bundle exec rspec
orrspec
To add new features
- Add specs and make them pass
- Commit the code with good commit messages
- Issue a pull request to start a discussion around the changes being included in the codebase
Testing with docker-compose
docker-compose build
docker-compose up
docker-compose run -T --rm gateway_api bundle exec rspec
Manually running the webserver
bundle exec puma -C docker/puma.rb