UNPKG

verdandi

Version:

Verðandi; API backend for Sjekk UT mobile application

324 lines (233 loc) 7.59 kB
![Verðandi](https://raw.githubusercontent.com/Turistforeningen/Verdandi/master/assets/verdandi.png "Skaði") [![Build status](https://app.wercker.com/status/eeff9d36f7e451fe1f1364c7209adde6/s "Build status")](https://app.wercker.com/project/bykey/eeff9d36f7e451fe1f1364c7209adde6) [![Codacy grade](https://img.shields.io/codacy/grade/4b0305b11f144bd190f34196631994f2.svg "Codacy grade")](https://www.codacy.com/app/DNT/Verdandi) [![Codacy coverage](https://img.shields.io/codacy/coverage/4b0305b11f144bd190f34196631994f2.svg "Codacy coverage")](https://www.codacy.com/app/DNT/Verdandi) [![NPM downloads](https://img.shields.io/npm/dm/verdandi.svg "NPM downloads")](https://www.npmjs.com/package/verdandi) [![NPM version](https://img.shields.io/npm/v/verdandi.svg "NPM version")](https://www.npmjs.com/package/verdandi) [![Node version](https://img.shields.io/node/v/verdandi.svg "Node version")](https://www.npmjs.com/package/verdandi) [![Dependency status](https://img.shields.io/david/Turistforeningen/Verdandi.svg "Dependency status")](https://david-dm.org/Turistforeningen/Verdandi) API backend server for the Sjekk UT mobile application. From the Old Norse Verðandi meaning "becoming, happening". Verdandi was one of the three Norns, or goddesses of destiny, in Norse mythology. She was responsible for the present. ``` Thence come maidens much knowing three from the hall which under that tree stands; Urd hight the one, the second Verdandi, on a tablet they graved, Skuld the third; Laws they established, life allotted to the sons of men, destinies pronounced. ``` ## Getting started Download [Docker for Mac or Windows](https://www.docker.com/products/docker). Run in this directory: ``` $ docker-compose up ``` ### Test ``` docker-compose run --rm node npm run test docker-compose run --rm node npm run lint ``` ### Environment variables * `CHECKIN_MAX_DISTANCE=200` - Used to validate a users proximity to the coordinates it's checking in to. Distance in meters. * `CHECKIN_TIMEOUT=86400` - Used to validate that a user is not checking in to the same place more often than this timeout allows. Time in seconds. ## API ### Authentication Some API endpoints requires the following user authentication headers: * `X-User-Id` - DNT Connect User ID * `X-User-Token` - DNT Connect OAuth 2 token ### Response codes Unless otherwise statet API endpoints will return the following HTTP status codes: * `200 Ok` - Successfull GET request * `201 Created` - Successfull POST or PUT request * `204 No Content` - Successfull HEAD or DELETE request * `400 Bad Request` - Bad user supplied data * `401 Unauthorized` - Missing or invalid user authentication * `403 Forbidden` - Missing or invalid user permissions * `404 Not Found` - Resource or endpoint not found * `500 Internal Server Error` - Internal server error * `501 Not Implemented` - API endpoint is not implemented yet ### GET /v2/ **Status codes:** Returns `200 Ok` and an API index on successfull request. **GET body:** * **number** `checkin_new.rules.max_distance` - Max distance in meters a user can have to the place it is checking in to. * **number** `checkin_new.rules.quarantine` - A user can not check in twice to the same place within this period. Time in seconds. **Example:** ```http GET /v2 HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "checkin_new": { "url": "https://sjekkut.app.dnt.no/api/v2/steder/{sted}/besok", "rules": { "max_distance": 200, "quarantine": 86400 } }, "checkin_get": { "url": "https://sjekkut.app.dnt.no/api/v2/steder/{sted}/besok/{oid}" }, "checkin_log": { "url": "https://sjekkut.app.dnt.no/api/v2/steder/{sted}/logg" }, "checkin_stats": { "url": "https://sjekkut.app.dnt.no/api/v2/steder/{sted}/stats" }, "profile_view": { "url": "https://sjekkut.app.dnt.no/api/v2/brukere/{bruker}" }, "list_join": { "url": "https://sjekkut.app.dnt.no/api/v2/lister/{liste}/blimed" }, "list_leave": { "url": "https://sjekkut.app.dnt.no/api/v2/lister/{liste}/meldav" }, "list_log": { "url": "https://sjekkut.app.dnt.no/api/v2/lister/{liste}/logg" } } ``` ### GET /v2/steder/{sted}/stats **Status codes:** Returns `200 Ok` on successfull request. **Example:** ```http GET /v2/steder/524081f9b8cb77df15001660/stats HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "data": { "count": 2, } } ``` ### GET /v2/steder/{sted}/logg **Status codes:** Returns `200 Ok` on successfull request. **Example:** ```http GET /v2/steder/524081f9b8cb77df15001660/logg HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "data": [ {...}, {...} ] } ``` ### POST /v2/steder/{sted}/besok **Status codes:** * `201 Created` on successfull checkin. * `400 Bad Request` on validation error. **POST body:** * **number** `lat` - decimal latitude (required) * **number** `lon` - decimal longitude (required) * **boolean** `public` - (default `false`) * **string** `timestamp` - date and time ISO 8601 (default `Date.now()`) **Example:** ```http POST /v2/steder/524081f9b8cb77df15001660/besok HTTP/1.1 Accept: application/json X-User-Id: 123 X-User-Token asdf123 { "lat": 12.3456, "lon": 98.7654, "public": true, "timestamp": "2016-09-06T12:27:21.594Z" } HTTP/1.1 201 Created Content-Type: application/json Location: /v2/steder/524081f9b8cb77df15001660/besok/1234-123-123-1234 { "message": "Ok", "data": {...} } ``` ### GET /v2/steder/{sted}/besok/{oid} **Status codes:** Returns `200 Ok` for valid checkin. **Example:** ```http GET /v2/steder/524081f9b8cb77df15001660/besok/1234-123-123-1234 HTTP/1.1 Accept: application/json HTTP/1.1 200 Ok Content-Type: application/json { "data": {...} } ``` ### GET /v2/brukere/{bruker} **Status codes:** Returns `200 Ok` on successfull request. **Example:** ```http GET /v2/brukere/1234 HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "data": {...} } ``` ### POST /v2/lister/{liste}/blimed Add the list id to current user's `lister` array. **Status codes:** Returns `200 Ok` on successfull request. **Example:** ```http POST /v2/lister/300000000000000000000001/blimed HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "message": "Ok", "data": {...} } ``` ### POST /v2/lister/{liste}/meldav Remove the list id from current user's `lister` array. **Status codes:** Returns `200 Ok` on successfull request. **Example:** ```http POST /v2/lister/300000000000000000000001/meldav HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "message": "Ok", "data": {...} } ``` ### GET /v2/lister/{liste}/logg **Status codes:** Returns `200 Ok` on successfull request. **Example:** ```http GET /v2/lister/57974036b565590001a98884/logg HTTP/1.1 Accept: application/json HTTP/1.1 Ok Content-Type: application/json { "data": [ {...}, {...} ] } ``` ## [MIT lisenced](https://github.com/Turistforeningen/Verdandi/blob/master/LICENSE)