Skip to content

FaruqueBraimo/Falcon-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Falcon API

Java Spring Postgres JWT

A Java application project for travel assistance.

Table of Contents

Prerequisites

  1. JDK 17 or Higher
  2. Postgres Database

Installation

  1. Clone the repository: https:/FaruqueBraimo/Falcon-API.git
  2. Install the maven dependencies
  3. Run the database See section

Usage

  1. Start the application with Maven
  2. The API will be accessible at http://localhost:8083

API Endpoints

The API provides the following endpoints:

GET falcon/insight - Should return population, gdp exchange rates and weather forecast if a city is provided, if it's
country only population and gdp. Full data only if the user is authenticated.

GET falcon/insights/historical - Should return population and gdp from 2012 to 2022 for given country. The endpoint is
cached, the subsequent requests should be faster (Only for authenticated users)

POST falcon/auth/singIn - User Login

POST falcon/auth/sinnUp - New User registration

Authentication

The API uses Spring Security with jwt for authentication control. To get access use falcon/auth/signUp, if the registration is done, please use the credentials to login. It should give you a token. Use the token to use other endpoints.

Database

The project uses PostgresSQL as the database. You must create a database named falcon manually. It should have admin and 123 as username and password. Alternatively you can run the docker compose file under /docker folder.

Used Technologies

Swagger

The project has a Swagger documentation, can be found at: http://localhost:8083/swagger-ui/index.html#/

How it works

The main endpoint is /falcon/insight, it can retrieve a population, gdp, exchange rates and weather information.

  • If a city is provided it returns a full data a weather forecast for the city, population and exchange rates for it's country
  • If a country is provided it should return only population and gdp.
  • All the data is cached, so subsequents request should be faster, except for weather forecast.
  • It implements, rate limit per minute to prevent abuse of services using Bucket4j.
  • It handles API failure by retrying few times, before giving up using Failsafe.
  • /falcon/insights/historical is just for gdp and population. If a country is given.

Performance

  • It makes 4/5 API Calls for data achievement, those endpoints take seconds to respond. asynchronous tasks are executed on task that don't depend on each other, this improved the performance, from 7s to 2.5.
  • The average response time is 2.5 seconds for the main endpoint /insigh/city. When running the same query again it shoud around 1332 milliseconds.
  • It could take longer 5s on the first atempt when the application is starting. The subsequent requests should be faster, without caching.

About

Falcon: Travel Assistant APP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages