Orion is a backend service for Atlas. It is a GraphQL API that combines Query Node data with some of its own data to provide a unified API for Atlas. Current Orion functionalities include:
- Proxying data from the Query Node
- Keeping count of video views and channel follows
- Providing featured content data
- Handling content reporting
Orion keeps track of video views and channel follows happening in Atlas. It does so by following very simple approach - it offers 3 mutations - addVideoView
, followChannel
and unfollowChannel
. Based on the operation, data in the database is updated. However, Orion currently doesn't use any authentication mechanism. That means that anyone can call these mutation any number of times. It is very easy to create thousands of fake views and follows. This is a temporary solution and will be replaced with a more robust solution in the future.
Orion provides a way to set featured content in Atlas. This currently includes video hero and featured videos for each video category. This is done by providing a set of mutations that allow to set the featured content. The mutations are:
setVideoHero
setCategoryFeaturedVideos
Both of those mutations require a secret token (ORION_FEATURED_CONTENT_SECRET
) to be provided in the Authorization
header.
To get more information about featured content, please refer to this Atlas document.
Orion also enables content reporting which may be useful to you as an operator. When the app users see something that shouldn't be there (e.g. illegal content or copyright infringement), they can report it using 2 mutations - reportVideo
and reportChannel
. Orion's operators can then review the reports and take appropriate actions. You can use this GraphQL query to get all the content reports:
query {
reportedVideos {
id
videoId
reporterIp
rationale
}
reportedChannels {
id
channelId
reporterIp
rationale
}
}
Both of those queries require a secret token (ORION_ADMIN_SECRET
) to be provided in the Authorization
header.
Orion uses following environment variables:
ORION_MONGO_HOSTNAME
- required, hostname of the MongoDB instance to keep Orion's dataORION_QUERY_NODE_URL
- required, URL of the Query Node GraphQL endpointORION_FEATURED_CONTENT_SECRET
- required, secret token used to authorize featured content mutationsORION_ADMIN_SECRET
- required, secret token used to authorize admin mutationsORION_MONGO_PORT
- optional, port of the MongoDB instance, defaults to27017
ORION_MONGO_DATABASE
- optional, name of the MongoDB database, defaults toorion
ORION_PORT
- optional, port on which Orion will be available, defaults to6116
ORION_DEBUGGING
- optional, enables debugging, defaults tofalse
Easiest way to deploy Orion is by using the provided Docker image. You can find the latest image on Docker Hub.
To start Orion and MongoDB, you can use docker-compose
. Just remember to first update the environment variables in the docker-compose.yml
file.
docker-compose up
yarn install
yarn run dev