We'd like you to build a simple Movie API. It should provide two endpoints:
POST /movies
- Allows creating a movie object based on movie title passed in the request body
- Based on the title additional movie details should be fetched from https://omdbapi.com/ and saved to the database. Data we would like you to fetch from OMDb API:
Title: string Released: date Genre: string Director: string
- Only authorized users can create a movie.
Basic
users are restricted to create 5 movies per month (calendar month).Premium
users have no limits.
GET /movies
- Should fetch a list of all movies created by an authorized user.
Authorization
header.
Authorization: Bearer <token>
To authorize users please use our simple auth service based on JWT tokens.
Auth service code is located under ./src
directory
You need to have docker
and docker-compose
installed on your computer to run the service
- Clone this repository
- Run from root dir
JWT_SECRET=secret docker-compose up -d
By default the auth service will start on port 3000
but you can override
the default value by setting the APP_PORT
env var
APP_PORT=8081 JWT_SECRET=secret docker-compose up -d
To stop the authorization service run
docker-compose down
To generate tokens in auth service you need to provide env variable
JWT_SECRET
. It should be a string value. You should use the same secret in
the API you're building to verify the JWT tokens.
The auth service defines two user accounts that you should use
Basic
user
username: 'basic-thomas'
password: 'sR-_pcoow-27-6PAwCD8'
Premium
user
username: 'premium-jim'
password: 'GBLtTyq3E_UNjFnpo9m6'
Decoding the auth token will give you access to basic information about the user, including its role.
{
"userId": 123,
"name": "Basic Thomas",
"role": "basic",
"iat": 1606221838,
"exp": 1606223638,
"iss": "https://www.netguru.com/",
"sub": "123"
}
To authorize user call the auth service using for example curl
. We assume
that the auth service is running of the default port 3000
.
Request
curl --location --request POST '0.0.0.0:3000/auth' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "basic-thomas",
"password": "sR-_pcoow-27-6PAwCD8"
}'
Response
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOjEyMywibmFtZSI6IkJhc2ljIFRob21hcyIsInJvbGUiOiJiYXNpYyIsImlhdCI6MTYwNjIyMTgzOCwiZXhwIjoxNjA2MjIzNjM4LCJpc3MiOiJodHRwczovL3d3dy5uZXRndXJ1LmNvbS8iLCJzdWIiOiIxMjMifQ.KjZ3zZM1lZa1SB8U-W65oQApSiC70ePdkQ7LbAhpUQg"
}
- Database and framework choice are on your side.
- Your API has to be dockerized. Create
Dockerfile
anddocker-compose
and document the process of running it locally. - Provided solution should consist of two microservices.
Authentication Service
- provided by us to auth usersMovies Service
- created by you to handle movies data
- Test your code.
- Provide documentation of your API.
- Application should be pushed to the public git repository and should have a working CI/CD pipeline that runs the tests. For example you can use GitHub Actions or CircleCI. Create a sample PR to show us the working CI/CD pipeline.
- Task completeness
- Architecture
- Code quality
- Tests quality
- Database design
- Technology stack