Skip to content

pressrelations/training-day-rest-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Welcome to your Training Day!

Task

The company SicroMoft wants a REST API that allows them to Create, Read, Update and Delete (CRUD) news articles into a database. Each news article has tags associated with it, these are accessible through a different endpoint. For the purpose of this exercise these are static, so you can only GET them. Either you get all tags or you can select them by ID. HOWEVER, if you POST a new news article WITH tags that do not exist, these tags NEED to be created!

IMPORTANT: A schema and a database is already given to you. See Requirements

Please create a project in a language of your choice and make the API available to the client via JSON.

You are not required to build a frontend for this API to visualize it, however, if you do have additional time and you are done early, you are more than welcome to build the frontend and/or to write unit tests.

We need the following API endpoints

News

  • /news - GET
{
  "news": [
    {
      "id": 1,
      "headline": "This is a headline",
      "text": "This is a text",
      "publication": "New York Times",
      "date": "2021-01-01 00:03:00+00",
      "tags": [
        {
          "id": 1,
          "name": "Negative"
        },
        {
          "id": 2,
          "name": "Important"
        }
      ]
    },
    {
      "id": 2,
      "headline": "This is a headline 2",
      "text": "This is a text 2",
      "publication": "New York Times",
      "date": "2021-01-01 00:03:00+00",
      "tags": []
    }
  ]
}
  • /news/:id - GET
{
  "news": {
      "id": 1,
      "headline": "This is a headline",
      "text": "This is a text",
      "publication": "New York Times",
      "date": "2021-01-01 00:03:00+00",
      "tags": [
        {
          "id": 1,
          "name": "Negative"
        },
        {
          "id": 2,
          "name": "Important"
        }
      ]
    }
}
  • /news/:id/tags - GET
{
  "tags": [
    {
      "id": 1,
      "name:": "Negative"
    },
    {
      "id": 2,
      "name": "Important"
    }
  ]
}
  • /news - POST
{
  "news": {
    "headline": "This is a new headline",
    "text": "This is a new text ",
    "publication": "New York Times",
    "date": "2021-01-01 00:03:00+00",
    "tags": [
      "TestTag",
      "TagTest"
    ]
  }
}
  • /news/:id - PATCH - HINT: Only send fields you want to change
{
  "news": {
    "text": "This is an edited text "
  }
}
  • /news/:id - DELETE

Tags

  • /tags - GET
{
  "tags": [
    {
      "id": 1,
      "name": "Negative"
    },
    {
      "id": 2,
      "name": "Important"
    },
    {
      "id": 3,
      "name": "Positive"
    },
    {
      "id": 4,
      "name": "Archive"
    },
  ]
}
  • /tags/:id - GET
{
  "tag": {
    "id": 1,
    "name": "Negative"
  }
}

Requirements

The docker installation below is ONLY for the database. Don't worry about containerizing your application!

Before you get started make sure you have the following requirements fulfilled:

  1. Install Docker
  2. Install Docker-Compose
  3. Go into the root of the project folder and run the following command: docker-compose up
  4. Run the following command to check if the database has been seeded correctly docker-compose exec postgres psql -c 'SELECT * FROM news;'

It should produce the following output

➜  training-day-rest-api git:(master) docker-compose exec postgres psql -c 'SELECT * FROM news;'
 id |      headline      |      text      |  publication   |          date          
----+--------------------+----------------+----------------+------------------------
  1 | This is a headline | This is a text | New York Times | 2021-01-01 00:03:00+00
(1 row)
  1. OPTIONAL If you need a tool to browse the database in a more visual fashion go to localhost:16543 and login with the following credentials:
username: [email protected]
password: test123!
  1. Connect to the database by clicking Add New Server
  2. Type in whatever name you want for the connection
  3. click on Connection and fill out the following:
Hostname/address: postgres
Port: 5432
Maintenance database: root
Username: root
Password: root
  1. Click Save
  2. You should now be successfully connected to the database.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published