Skip to content

πŸš„ A powerful Railway Ticket Booking Portal built using React, Node, PostgreSQL. Using dynamic SQL techniques, stored procedures, triggers for consistency, and faster query execution. [Part of CS301 course]

License

Notifications You must be signed in to change notification settings

subhamX/train-ticketing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

92 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Train Ticketing

The following website is a Railway Ticket Booking Portal. This project embraces the Client-Server architecture, where the server and database are hosted separately and the client communicates via REST APIs.

The latest version of the Railway Reservation System is deployed at traintkt.herokuapp.com.

Project Design Overview

docs/design.png

ER Diagram

docs/erdiagram.png

Note: All blue and bolded attributes are primary key. All attributes with ? is indicating that the field can be NULL. Relations having [X] are dynamically created where X is some variable.


Key Features

  1. The project uses dynamic SQL techniques, procedures, triggers, for consistency, and faster query execution.

  2. Client can browse though the trains catalogue, their details and all active booking instances of it.

  3. The project implements an easy to use trains search view with autosuggestions for train stations. Client can enter source, destination and date of journey and find if there are any trains available for following parameters.

  4. Both booking tickets and cancel tickets operation can be performed on multiple passengers at once.

  5. Admin can add trains, coaches, and booking instances from the user interface and need not write any SQL query.

  6. Our portal supports multiple coaches, and the Admin can define which coach schema to choose at the time of adding a booking instance.

Technology Stack

  1. TypeScript
  2. ReactJS (Frontend)
  3. NodeJS (Backend)
  4. PostgreSQL (Database)

Functionalities Of Our Project

Use cases have been divided based on the end user i.e. Admin and Booking Agents.

Functionalites for Admin

  1. Separate Authentication for Admin, and a dedicated admin dashboard.

  2. Admin can add new Trains, Coaches with different seating schemas into the database for the dashboard.

  3. Add and update Reservation status for trains.

  4. Admin can perform the above operations without writing any database query by using our simple and convenient User Interface.

Project Walkthrough

Trains Search Route can help users quickly find the available trains based on starting location, ending location, and the journey date. To ease searching for a specific station, we autocomplete the source and destination fields based on the keywords entered by users with the possible stations.



Tickets Booking View

User Profile Dashboard showing all past tickets

Users can cancel the confirmed tickets before the train departure. This operation releases the seat for other passengers for booking while the train's booking status is "Active". The refund of the cancellation of tickets will be resolved every day during maintenance hours, this regular update reduces the storage overhead, by releasing the details of refunds.



API Endpoints Overview

POST user/profile β†’ Gives back information of the user; Only the authenticated user can see his data

GET trains/list β†’ shows a list of all available trains; Public View

GET trains/info/:id β†’ shows train information, and all bookings available; Public View

GET /trains/current/active β†’ Shows all trains which are active booking phase; Public View

GET /cities/all β†’ Returns a list of all cities which are either source or destination; Public View.

POST tickets/book β†’ Allows user to book a ticket; Must be authenticated

POST tickets/cancel β†’ Route to cancel berths from tickets; Must be authenticated; Can cancel only his/her ticket

GET tickets/info/:pnr β†’ Gives back passenger list, and other info; Must be authenticated

GET tickets/all/ β†’ Gives back tickets for a user; Must be authenticated

GET /coaches/list β†’ See all coaches; Public View;

GET /coaches/:id β†’ Coach Information; Public View

POST admin/addbookinginstance β†’ Add a train for booking; Must be an admin

POST admin/trains/add β†’ Add a new train; Must be an admin

POST admin/coaches/add β†’ Add a coach; Must be an admin;

GET chart/:train_number/:date β†’ See the reservation chart; Public View

About

πŸš„ A powerful Railway Ticket Booking Portal built using React, Node, PostgreSQL. Using dynamic SQL techniques, stored procedures, triggers for consistency, and faster query execution. [Part of CS301 course]

Resources

License

Stars

Watchers

Forks