Skip to content

About A RESTful API web-service for a Covid-19 Application. This API performs all the fundamental CRUD operations of Covid-19 Application platform with user validation at every step.

Notifications You must be signed in to change notification settings

abbas5152/Covid19_Vaccination_Tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 

Repository files navigation

REST API for an Covid-19 Application

  • We have developed this REST API for an Covid-19 Application. This API performs all the fundamental CRUD operations of any Covid-19 Application platform with user validation at every step.
  • This project is developed by team of 5 Back-end Developers during project week in Masai School.

Tech Stack

  • Java
  • Spring Framework
  • Spring Boot
  • Spring Data JPA
  • Hibernate
  • MySQL
  • Swagger
  • Lombook

Modules

  • Login Module
  • User Module
  • Admin Module
  • Error Module

Features

  • User and Admin authentication & validation with session uuid having.
  • Admin Features:
    • Administrator Role of the entire application
    • Only registered admins with valid session token can add/update/delete driver or customer from main database
    • Admin can access the details of different Appointment, Member ,Vaccine Center ,Vaccine Inventory and Vaccine Ragistration.
  • User Features:
    • A user can register himself or herself on the platform.
    • He/She can check the vaccine centres and vaccine availabilty.
    • If vaccine is available, can book an appointment slot.
    • After booking an appointment, he will get appointment details for the vaccine dose.

Contributors

Installation & Run

  • Before running the API server, you should update the database config inside the application.properties file.
  • Update the port number, username and password as per your local database config.
    server.port=8889

    spring.datasource.url=jdbc:mysql://localhost:3306/sb201db;
    spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
    spring.datasource.username=root
    spring.datasource.password=mysqlroot

API Root Endpoint

https://localhost:8889/

http://localhost:8889/swagger-ui/

API Module Endpoints

Login Module

  • POST //api/adminLogin : Admin can login with mobile number and password provided at the time of registation
  • POST //api/customerLogin : customer can login with mobile number and password provided at the time of registation
  • DELETE //api/adminLogut : Admin can logout using key
  • DELETE //api/customerLogut : customer can logout using key

User Module

  • GET /customer/AllRegistration : user can see all the registration
  • POST /customer/Id : User can add using Id class id
  • PUT /customers/Member : user can update member
  • DELETE/customers/Member : user can delete member ........ And Many more Methods We Implemented in our controller

Admin Module

  • POST /admin/addInventory : only admin can add the inventory details using unique key
  • GET /admin/GetAllInventory :only admin can access inventory details using unique key
  • DELETE /admin/DeleteInventory : only admin can delete the inventory details using unique key

........ And Many more Methods We Implemented in our controller

Sample API Response for Admin Login

POST localhost:8889/login/adminlogin

  • Request Body
    {
        "mobileNo": "7056319981",
        "password": "Clickme@007"
    }
  • Response
   CurrentAdminSession(id=11, adminId=10, uuid=ZaVLaK, localDateTime=2022-10-02T11:13:42.772910500)
   

Video Explainer of flow control

Video Drive Link

E-R Diagram Of Covid-19 Application



Swagger UI


Login Controller



Admin Controller



User Controller



Error Controller


About

About A RESTful API web-service for a Covid-19 Application. This API performs all the fundamental CRUD operations of Covid-19 Application platform with user validation at every step.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages