interview-v1/README.md

72 lines
2.6 KiB
Markdown
Raw Normal View History

2018-07-08 18:17:19 +00:00
# interview-v1
2018-07-12 16:04:20 +00:00
Build status : ![](https://api.travis-ci.org/Sundowndev/interview-v1.svg)
2018-07-10 08:32:19 +00:00
2018-07-08 18:17:19 +00:00
## Description
2018-07-12 16:04:20 +00:00
1/ Develop a mini PHP REST API with json output
2018-07-08 18:17:19 +00:00
2018-07-12 16:04:20 +00:00
This api must manage 2 objects :
- User (id, name, email)
- Task (id, user_id, title, description, creation_date, status)
2018-07-08 18:17:19 +00:00
2018-07-12 16:04:20 +00:00
Create API endpoints to recover a user or task data. (e.g /user/{id})
2018-07-08 18:17:19 +00:00
2018-07-12 16:04:20 +00:00
L'api doit être capable de manipuler la liste des taches associées à un utilisateur en offrant la possibilité de:
- Fetch the latest tasks
- Create a task
- Delete a task
2018-07-08 18:17:19 +00:00
En développant cette API, vous devez garder en tête qu'elle est susceptible d'évoluer (nouveaux retours, nouveaux attributs dans les objets)
2018-07-12 16:04:20 +00:00
2/ Create a frontend client to call the API
2018-07-08 18:17:19 +00:00
2018-07-12 16:04:20 +00:00
- The client must call the api using ajax
- We must be able to create/delete an user
- Manage user's tasks (read / add / delete)
2018-07-08 18:17:19 +00:00
2018-07-12 16:04:20 +00:00
(no framework)
2018-07-08 18:17:19 +00:00
## Installation and usage
```bash
$ git clone git@github.com:Sundowndev/interview-v1.git
$ cd interview-v1/
$ docker-compose up -d
```
You can now browse the front app at `localhost:3000` and the API at `localhost:8000`.
## Architecture
2018-07-10 10:31:57 +00:00
The architecture is made of a simple client -> server communication using Docker containers.
<p align="center">
<img src="https://i.imgur.com/9EG2rso.png" alt="">
</p>
2018-07-08 18:17:19 +00:00
## Database
## Security
2018-07-12 16:04:20 +00:00
To handle authentication feature, we use a CSRF and a http-only session cookie.
As soon as the user provide valid credentials, we return a two tokens that will be needed for each request he will send to the API.
For each request, the user send the CSRF token as GET/POST/DELETE/PUT parameter. The cookie is sent automatically.
**Technical user story:** the user provide an username and password as POST parameter to /auth route. The credentials are checked in the database and if it's valid it returns a CSRF token and a token for the session cookie. The session is also stored in the database so at every client request, both tokens are checked and we can also identify the user through his tokens.
2018-07-10 08:32:19 +00:00
## API endpoints
2018-07-10 10:31:57 +00:00
| Method / Route | Resource | Description |
| --------------------- | ------------------ | ------------ |
2018-07-12 16:04:20 +00:00
| `POST` /auth | Authentication | Connect and get an api key |
2018-07-10 10:31:57 +00:00
| `GET` /tasks | Task | Get latest taks |
| `GET` /tasks/{id} | Task | Get a task by given id |
| `POST` /tasks | Task | Create a task |
| `PUT` /tasks/{id} | Task | Update a task by given id |
| `DELETE` /tasks/{id} | Task | Delete a task by given id |
| `GET` /me | Users | Get your own account data |
| `GET` /users/{id}/tasks | Users,Tasks | Get tasks from a given user id |