GithubHelp home page GithubHelp logo

lakshan-banneheke / airline-reservation-system Goto Github PK

View Code? Open in Web Editor NEW
12.0 1.0 6.0 28.29 MB

Simple Airline Reservation System developed as the semester project for database module

Home Page: https://b-airways.herokuapp.com/

JavaScript 81.10% HTML 0.14% PLpgSQL 0.26% CSS 16.44% SCSS 0.01% EJS 2.05%
nodejs postgres airline-reservation

airline-reservation-system's Introduction

Airline-Reservation-System

This Simple Airline Reservation system was developed as the semester project of Semester 4 CS3042 Database Systems Module.

  • You can visit the demo site from HERE
  • Click HERE to register to the system as a staff member
  • Admin security key is UAr1Gg4xEdPFIh2o580TOaTmmkjFDVdP.

Screenshots

Home Page Flight Search Page
Home Page Flight Search Page
Booking Page Booking Completion Page
Booking Page Booking Completion Page
About Page Aircraft Details Page
About Page Aircraft Details Page

Problem Statement

B Airways is a subsidiary of Virgin Airlines but functions independently. It currently caters only to the needs of small distance, internal flights in Indonesia. Hence, they do not possess access to the advance airline reservation system of Virgin. With the recent gain of popularity, the director board of B Airways has decided to expand the airline to cover multiple destinations worldwide. For this process, B purchased several, refurbished aircrafts to be used in the newer routes. Among those are 3 of Boeing 737, 4 of 757, and single Airbus A380. Each model has a varying seating capacity that is consistent among the model. As the first stage of expansion, B would fly on routes covering CGK and DPS (Indonesia), BIA and HRI (Sri Lanka), DEL, BOM, MAA (India), BKK and DMK (Thailand), SIN (Singapore). Multiple flights will be created covering these destinations. In B systems, a flight has a designated origin and a destination. For an example BIA to BKK is considered as one flight. It is also referred to as a route, yet currently B does not offer transit/ transfer flights. Hence only two locations are related to a given flight, B would pre-define a flight schedule for each flight every day. Each scheduled flight would have the corresponding flight details and an assigned airplane. Two airplanes cannot be assigned to the same flight schedule at the same time. Flight schedule is static in general. Only exception being the flight delays, in which the schedule is updated to reflect the delay. When a passenger need to book a flight, he or she should first login to their online platform. Passenger could either continue as a guest of register with the platform. Registered users are categorized as Frequent and Gold depending on the number of times they have booked with B. They would get 5% and 9% discounts off the final ticket prices respectively. The platform will first show the user with the flight schedule for each day, where the user could select a flight. Once selected, user is prompted with a seat selection. No two users can select the same seat and B does not overbook the seats as other airlines. Once a seat is selected, a booking is created. The booking is considered completed after payments. Payments will not be handled by the system.A ticket is allocated when the booking is completed. The prices may vary depending on the traveler class (Economy, Business or Platinum).

The management of B has hired your team to provide expert consultation on database design for their new airline reservation system. It encapsulate all the above features. Additionally they need to create space for the database to expand in future when new airports are added to the supported destinations. Airports must have an airport code which is universally agreed. Also the city of airport location must be stored. Locations must be defined in a hierarchical manner. Ex: Sri Lanka → Colombo → BIA, USA → New York State → New York City → JFK. Depending on the location, the levels of hierarchy may vary.Further, the management require the system to produce the following reports,

  • Given a flight no, all passengers travelling in it (next immediate flight) below age 18, above age 18
  • Given a date range, number of passengers travelling to a given destination
  • Given a date range, number of bookings by each passenger type
  • Given origin and destination, all past flights, states, passenger counts data
  • Total revenue generated by each Aircraft type

Task

Your task is to model the database design to encapsulate these requirement. It should consider all entities and relationships given in the description. Moreover you need to identify the places where procedures, functions and triggers can be employed to guarantee ACID properties. Foreign keys and primary keys must be set to maintain consistency. Indexing should be done when necessary. Additionally, the you must get a domain idea by reading related material and take assumptions when not explicitly provided. The database must be populated with all the destination given above (at least) and with at least 30 flights. (select any two airports and create a flight). Knowledge about flight codes and related information must be studied to determine the necessary fields of the table. Flight schedule for at least 7 days must be already added in the database. Above data can be inserted manually using SQL queries or an interface. There is no need to create UI elements to simply input data.

Setup Guide

Database setup

Windows

Install postgresql in the local machine and setup correctly. Use following command to login to the psql shell as postgres user.Use the following command on terminal

psql -U postgres

Then enter below commands.

CREATE ROLE database_app WITH LOGIN PASSWORD 'password';
CREATE DATABASE airline_reservation_db;
GRANT ALL PRIVILEGES ON DATABASE airline_reservation_db TO database_app;
\q

Then login to psql as database_app.

psql -U database_app airline_reservation_db

Download database directory from this repo and then in the shell, import the current DDL and DML schema. Here give the full path to the schema

\i 'C:/Users/.../database/schema.sql'
\q

Login to pgAdmin (Search on start) using the username and password used in the installation process of postgres.

Then rclick Server>postgres>Databases and check for airline_reservation_db. Then expand it go to Schemas>Tables>Test>rclick>View edit data>All rows

Now you are done with the database setup.

Apple

Hope the same method works. Good Luck! 😜

Node.js setup

First clone this project directory.

git clone https://github.com/Lakshan-Banneheke/Airline-Reservation-System.git

Install

After that go to the project directory and run npm install.

cd directory/project
npm install

Then create a .env file in the root with following content. You may change database user/password/secret as you may wish.

DATABASE_URL=postgres://database_app:password@localhost:5432/airline_reservation_db

SESSION_SECRET=database
PORT=3000
SERVER_ADDRESS=127.0.0.1
NODE_ENV=development

Then use nodemon or node to serve the pages.

nodemon start # If nodemon is installed
node index.js # otherwise

Now visit http://localhost:3000/ and confirm that site is running.

VS Code Setup

Install ESLint library.

Edit settings and set editor.detectIndentation to false.

Use material icon theme extension for a nice view of folders :)

airline-reservation-system's People

Contributors

avishka-shamendra avatar dhaura avatar lakshan-banneheke avatar shashiniw avatar thushani-jayasekera avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.