Skip to content
This repository has been archived by the owner on Nov 14, 2022. It is now read-only.

themetalfleece/string-similarity-data-fetch

Repository files navigation

A web server which returns data associated with a key based on its similarity with a given string, by querying a MongoDB database

Associated projects:

Twitch interface

Data populator

Install

  1. Install node.js, yarn, mongodb.
  2. Configure mongodb so its server is running.
  3. Clone this repository, and using a terminal navigate to its directory.
  4. Run yarn to install the dependencies.

Build & Run

  1. Copy the contents of the .env.example file to a .env next to it, and edit it with your values.
    • Set MONGODB_CONNECTION_STRING to the connection string to be used to connect to the mongodb database.
    • Set SERVER_PORT to the port the server listen to.
  2. Run yarn build to build the files.
  3. Run yarn start to start the application.
  • You can run yarn dev to combine the 2 steps above, while listening to changes and restarting automatically.
    • You need to run yarn global add ts-node once for this to run.

Linting & Formatting

  • Run yarn lint to lint the code.
  • Run yarn format to format the code.

API reference

Get data by a string

GET /:group/:searchString

  • The data to be returned will belong to the given group.
  • The key of the object whose data will be returned will be the one which is most similar to the given searchString

exaple request url

GET /countries/Greeec/

exaple response

{
    "key": "Greece",
    "similarity": 0.65,
    "data": [
        {
            "name": "population",
            "value": "10.72m"
        },
        {
            "name": "size",
            "value": "131.957 sq m"
        }
    ]
}

Create data

POST /:group/

  • The data to be created will belong to the given group.

example request url

POST /countries/

example request body (creating one entry):

{
    "data": {
        "key": "Greece",
        "data": [
            {
                "name": "population",
                "value": "10.72m"
            },
            {
                "name": "size",
                "value": "131.957 sq m"
            }
        ]
    }
}

example request body (creating multiple entries):

{
    "data": [
        {
            "key": "Cyprus",
            "data": [
                {
                    "name": "population",
                    "value": "1.189m"
                },
                {
                    "name": "size",
                    "value": "9.251 sq m"
                }
            ]
        },
        {
            "key": "Greece",
            "data": [
                {
                    "name": "population",
                    "value": "10.72m"
                },
                {
                    "name": "size",
                    "value": "131.957 sq m"
                }
            ]
        }
    ]
}

The response has a status of 204 with no content.

Delete all data

DELETE /:group/

  • All data of the given group will be deleted.

example request url

DELETE /countries/

The response has a status of 204 with no content.

About

A web server which returns data associated with a key based on its similarity with a given string, by querying a MongoDB database

Resources

License

Stars

Watchers

Forks