farzi-vichar-api

About

Welcome! I really appreciate that you checked out the contributing guide. This means you are thinking of contributing to this project. Well, you are at the right place.

Project Structure

Before you start contributing to any project it is important to understand the folder structure for that project. For this project, the details are as follows:

1) data - This folder contains the data related to all the languages. This is where the actual shayari and quotes reside.

   - for adding a new language make a new folder inside the `data` folder as `data/${Your_language_name}`. 
   - add the data file inside the folder as `data/${Your_language_name}/data.js`. 
   - NOTE: name the data file as 'data.js' only. 

2) data_endpoints - This folder contains the retriever functions, i.e., it is used to access the required language data from the data folder. This folder has seperate files for each language.

 - for adding a retrieval file inside the folder, create file as `data_endpoints/${your_language_name.js}`. 

3) routes - This folder contains all the routes the API provides. It has a single file route.js which has all the routes, which are mainly:

 - */:language_name* -> returns all of the data for the language if no range is provided.

 - */:language_name?min=value&max=value* -> returns the data in the specified range of min and max. 

 - */:language_name/random* -> returns a single random data from the language specified. 

4) languages.js - contains an array of all the languages of which the data exists - add your language name to the languages_array in lowercase.

5) index.js - the entry point to this project, DO NOT CHANGE ANYTHING IN THIS FILE.

Installation and Making Changes

For installation and local setup, follow these steps:

Adding Data


Adding retriever function


  import your_language_name_data_array from "../data/Your_language_name/data.js";

const your_language_name = (min, max) => {

    const Data = your_language_name_data_array.filter((item) => {
        if(Number(min) < your_language_name_data_array[0].id || Number(max) < your_language_name_data_array[0].id || Number(max) > your_language_name_data_array[your_language_name_data_array.length-1].id || Number(min) > your_language_name_data_array[your_language_name_data_array.length-1].id  ){
            throw new Error("NOT FOUND");
        }else if(min && max){
            return item.id >= Number(min) && item.id <= Number(max);
        } else if(min){
            return item.id >= Number(min);
        } else if(max){
            return item.id <= Number(max);
        } else{
            return true;
        }
    });

    return Data;
}

 export default your_language_name;

Adding case statements inside route


Important