Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdnichollsc/github-dataset-api
Node.js Express: Github Dataset API
https://github.com/jdnichollsc/github-dataset-api
api express express-js github http-requests http-server json json-api node-js nodejs nodejs-server rest rest-api sql sqlite sqlite3
Last synced: about 1 month ago
JSON representation
Node.js Express: Github Dataset API
- Host: GitHub
- URL: https://github.com/jdnichollsc/github-dataset-api
- Owner: jdnichollsc
- License: mit
- Created: 2019-02-28T14:54:11.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T06:50:37.000Z (about 2 years ago)
- Last Synced: 2024-11-01T12:35:38.134Z (3 months ago)
- Topics: api, express, express-js, github, http-requests, http-server, json, json-api, node-js, nodejs, nodejs-server, rest, rest-api, sql, sqlite, sqlite3
- Language: JavaScript
- Size: 170 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Github-Dataset-API
In this challenge, you are part of a team building a git event tracking platform. One requirement is for a REST API service to provide events information using the Nodejs Express framework. You will need to add functionality to add and delete information as well as to perform some queries. You'll be dealing with typical information for git event data like repository, actor, event type, etc. The team has come up with a set of requirements including filtering and ordering requirements, response codes and error messages for the queries you must implement.The definitions and a detail list follow. You will be graded on whether your application performs data retrieval and manipulation based on given use cases exactly as described in the requirements.
Each event data is a JSON entry with the following keys:
* `id`: This is the event unique ID.
* `type`: This is the event type.
* `actor`: The actor responsible for the event. The actor itself is a JSON entry consisting of the following fields* `id`: This is the actor unique ID.
* `login`: This is the actor unique login ID.
* `avatar_url`: This is the actor avatar URL.
* `repo`: The repository to which the event is associated. The repo itself is a JSON entry consisting of the following fields:
* `id`: This is the repo unique ID.
* `name`: This is the repo name.
* `url`: This is the repo URL.
* `created_at`: This is the timestamp for the event creation given in the format `yyyy-MM-dd HH:mm:ss`. The timezone is `UTC +0`.
The REST service should implement the following functionalities:
1. *Erasing all the events*: The service should be able to erase all the events by the *DELETE* request at `/erase`. The *HTTP* response code should be *200*.
1. *Adding new events*: The service should be able to add a new event by the *POST* request at `/events`. The event JSON is sent in the request body. If an event with the same id already exists then the *HTTP* response code should be *400*, otherwise, the response code shoule be *201*.
1. *Returning all the events*: The service should be able to return the JSON array of all the events by the *GET* request at `/events`. The *HTTP* response code should be *200*. The JSON array should be sorted in ascending order by event ID.
1. *Returning the events records filtered by the actor ID*: The service should be able to return the JSON array of all the events which are performed by the actor ID by the *GET* request at `/events/actors/{actorID}`. If the requested actor does not exist then *HTTP* response code should be *404*, otherwise, the response code should be *200*.The JSON array should be sorted in ascending order by event ID.
1. *Updating the avatar URL of the actor*: The service should be able to update the avatar URL of the actor by the *PUT* request at `/actors`. The actor *JSON* is sent in the request body. If the actor with the ID does not exist then the response code should be *404*, or if there are other fields being updated for the actor then the *HTTP* response code should be *400*, otherwise, the response code should be *200*.
1. *Returning the actor records ordered by the total number of events*: The service should be able to return the JSON array of all the actors sorted by the total number of associated events with each actor in descending order by the *GET* request at `/actors`. If there are more than one actors with the same number of events, then order them by the timestamp of the latest event in the descending order. If more than one actors have the same timestamp for the latest event, then order them by the alphabetical order of login. The *HTTP* response code should be *200*.
1. *Returning the actor records ordered by the maximum streak*: The service should be able to return the JSON array of all the actors sorted by the maximum streak (i.e., the total number of consecutive days actor has pushed an event to the system) in descending order by the *GET* request at `/actors/streak`. If there are more than one actors with the maximum streak, then order them by the timestamp of the latest event in descending order. If more than one actors have the same timestamp for the latest event, then order them by the alphabetical order of login. The *HTTP* response code should be *200*.You should complete the given incomplete project so that it passes all the test cases when running the provided unit tests. The project by default supports the use of SQLite3 database.