Skip to content

CarletonComputerScienceSociety/hack-the-tunnels-starter-2024

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hack The Tunnels - Starter 2024

Hack The Tunnels

This is the project template for Hack The Tunnels.

The project template utilizes React, TypeScript, Express, and Prisma.

Table of Contents

Event Setup Instructions

To avoid many of the environment setup-related issues that occur with Windows, we will be having all Hack The Tunnels 2024 participants set up Windows Subsystem for Linux (WSL).

If you are a Windows user, you should follow the Windows Setup and then follow the Project Setup in your new WSL environment.

If you are a Mac or Linux user, instead follow the Mac Setup and then follow the Project Setup instructions.

Both guides will have you set up Homebrew to manage dependencies. Homebrew will help you install additional software like Node.js, Git, Gh, etc.

Windows Setup

In Powershell or Command Prompt, run the following commands

  1. Install WSL
wsl --install
  1. Set WSL to use version 2 as the default.
wsl --set-default-version 2
  1. Install the Ubuntu distribution within WSL.
wsl --install -d ubuntu

Note: You will need to create a Linux user

  1. Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Follow the on-screen instructions to add Homebrew to your PATH.
(This will be instructions displayed after the Homebrew installation)
  1. Refresh your terminal session to apply the changes made to .bashrc
source ~/.bashrc
  1. Install Node.js
brew install node
  1. Install Git
brew install git

Mac Setup

In the Terminal, run the following commands

  1. Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Install Node.js
brew install node
  1. Install Git
brew install git

Project Setup

Create a Github Repository for the Project

For each team, one member should create the repository and all members of a team should clone the same repository

Click on "Use this template" > Create a new repository

image

In your WSL terminal (for Windows) or the terminal (for Mac), run the following commands

  1. Clone the repository
git clone https://github.com/your-github-username/your-repository-name.git
  1. Move into the project directory
cd your-repository-name

Client Setup

  1. Move into the client directory
cd client
  1. Install client dependencies
npm install
  1. Run the client
npm run dev

Service Setup

Follow the following instructions in a 2nd terminal while your client is running.

  1. Move into the service directory
cd service
  1. Install service dependencies
npm install
  1. Run Migrations
npx prisma migrate dev
  1. Run the service
npm run dev

To get the project working, you will need to have both the client and server running.

Documentation

The project template for this year is a recreation of the infamously hard to use Carleton Central.

Students will be tasked with recreating and improving many of the core components of the application.

Important Files and Folders

Client

  • main.tsx: Initialises app and describes routing for pages
  • client/src/pages: Where code for individual pages in the web app live
  • client/src/components: Where code for "components" (ui pieces reusable across pages) live
  • client/src/layouts: Where code for "layouts", which are kind of like "page themes" live
  • client/src/infrastructure/ServiceAPI: Where code the evokes the Service via RESTful API live

Service

  • service/src/api/router.ts: Where Express.js RESTful API routes are defined
  • service/src/api/routes: Where all other routers are defined
  • service/src/services: "Services" are code that handle "business logic" like creating a timetable, handling user login, etc.
  • service/src/db/schema.prisma: Where our database's schema is defiend. A database schema is the "shape" our data is stored in.

Views

Login Page - /

The following page is a mostly perfect recereation of the Carleton Central login page, however it should be noted that the inputs for email and password have been hardcoded to send email: "[email protected]", "password" which is the default login information for one of the default accounts.

image

Menu Page - /

The following page is known within the codebase as the "Menu Page". The only links that actually work on this page are clicking "logout", "Build Your Timetable/Registration", and "Student Timetables".

image

Build Timetable Page - /timetables/build

The following page is an amalgamation of the 4 different pages it takes in Carleton Central to build a timetable.

Upon clicking "search", a list of results will appear that can be added to your timesheet via their respective "add" buttons.

Selected events can be removed by clicking their associated "remove" button.

Upon clicking "create timetable", you will be redirected to that timetables "View Timetable Page".

image

Timetables Page - /timetables

This is a page that does not exist in the real Carleton Central.

It acts as a way of all saved timetables associated with the account.

This screen may appear empty to you if you have not created a timetable on /timetables/build.

If you have created a timetable, you will likely see a stringified date string as its title, this is because the code the sends the create timetable request does not hard code a name so that it's easier to differentiate timetables:

const createTimetable = async () => {
  const result = await ServiceAPI.createTimetable(
    new Date().toISOString(),
    selectedEvents.map((event) => event.id.toString()),
      jwt,
    );

    navigate(`/timetables/${result.data.id}`);
};

image

View Timetable Page - /timetables/:id

The following page simple allows you to view a previously created timetable.

image

API Routes

This application's RESTful API is powered by Express.js

All routes are appended underneith {root}/api/v1/. Ex: http://localhost:5000/api/v1/scheduledEvents

NOTE: Any endpoint that requires authorization must be appended with the Authorization header and jwt token retrieved from the login endpoint.

Example Authorization Header:

authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiYWRtaW5AZW1haWwuY29tIiwiaWF0IjoxNzI4OTMzNTE2fQ.RM6l7bRyl7gGVeT6prdkaTu_LBB9vWobotIT2CwjLTM

Login - POST /login

This route returns a JWT token if the user succesfully entered a corresponding email and password.

Example Payload:

{
  "email": "[email protected]",
  "password": "password"
}

Example Response:

{
  "data": {
    "token": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjoiYWRtaW5AZW1haWwuY29tIiwiaWF0IjoxNzI4OTMzNTE2fQ.RM6l7bRyl7gGVeT6prdkaTu_LBB9vWobotIT2CwjLTM"
  },
  "error": null
}

All Scheduled Events - GET /scheduledEvents

This route returns a list of available scheduled events.

Example Response:

{
  "data": [
    {
      "id": 986,
      "crn": "11116",
      "section": "A",
      "instructor": "Leila Chinaei",
      "credit": "0.5",
      "type": "Lecture",
      "term": "Winter 2025 (January-April)",
      "days": "Mon,Wed",
      "startTime": "10:05",
      "endTime": "11:25",
      "additionalRegistrationRequirements": "",
      "url": "https://central.carleton.ca/prod/bwysched.p_display_course?wsea_code=EXT&term_code=202510&disp=22184566&crn=11116",
      "description": "Section Type - IN-PERSON SECTION.For Arts & Social Science students only. See also fall term.Laptop required for all first year COMP courses.See https://carleton.ca/scs/scs-laptop-requirement/.Precludes additional credit for COMP 1004 (no longeroffered). This course cannot be taken for credit bystudents in Business, Engineering, Computer Science,Mathematics or Science.",
      "courseId": 1291,
      "createdAt": "2024-10-12T20:09:35.101Z",
      "updatedAt": "2024-10-12T20:09:35.101Z",
      "course": {
        "id": 1291,
        "subjectCode": "COMP",
        "courseCode": "1001",
        "title": "Introduction to Computational Thinking for Arts and Social Science Students",
        "shortTitle": "Computing for Arts Students",
        "description": "An introduction to computational thinking and its applications to the arts and social sciences.  Students will gain computational thinking skills by exploring data representation, basic programming concepts, a selection of algorithms, and advanced usage of software packages for the arts and social sciences.   Precludes additional credit for COMP 1004 (no longer offered).  This course cannot be taken for credit by students in Business, Engineering, Computer Science, Mathematics or Science.",
        "createdAt": "2024-10-12T20:09:32.190Z",
        "updatedAt": "2024-10-12T20:09:32.190Z"
      }
    },
    ...
  ],
  "error": null
}

Account's Timetables - GET /timetables- AUTH REQUIRED

This route returns back a list of timetables created by the authorized account.

{
  "data": [
    {
      "id": 1,
      "name": "Timetable Example Name",
      "items": [
        {
          "id": 986,
          "crn": "11116",
          "section": "A",
          "instructor": "Leila Chinaei",
          "credit": "0.5",
          "type": "Lecture",
          "term": "Winter 2025 (January-April)",
          "days": "Mon,Wed",
          "startTime": "10:05",
          "endTime": "11:25",
          "additionalRegistrationRequirements": "",
          "url": "https://central.carleton.ca/prod/bwysched.p_display_course?wsea_code=EXT&term_code=202510&disp=22184566&crn=11116",
          "description": "Section Type - IN-PERSON SECTION.For Arts & Social Science students only. See also fall term.Laptop required for all first year COMP courses.See https://carleton.ca/scs/scs-laptop-requirement/.Precludes additional credit for COMP 1004 (no longeroffered). This course cannot be taken for credit bystudents in Business, Engineering, Computer Science,Mathematics or Science.",
          "courseId": 1291,
          "course": {
            "id": 1291,
            "subjectCode": "COMP",
            "courseCode": "1001",
            "title": "Introduction to Computational Thinking for Arts and Social Science Students",
            "shortTitle": "Computing for Arts Students",
            "description": "An introduction to computational thinking and its applications to the arts and social sciences.  Students will gain computational thinking skills by exploring data representation, basic programming concepts, a selection of algorithms, and advanced usage of software packages for the arts and social sciences.   Precludes additional credit for COMP 1004 (no longer offered).  This course cannot be taken for credit by students in Business, Engineering, Computer Science, Mathematics or Science."
          }
        },
        ...
      ]
    },
  ],
  "error": null
}

Create Timetable - POST timetables - AUTH REQUIRED

This route is used to create a new timetable associated with the authorized account.

Example Payload:

{
  "name": "Example Timetable Name",
  "scheduledEventIds": [
    "986",
    "987"
  ]
}

View Timetable - GET /timetables/:id- AUTH REQUIRED

This route is used to view a timetable created by the authorized account.

{
  "data": {
    "id": 3,
    "name": "Example Timetable name",
    "items": [
      {
        "id": 986,
        "crn": "11116",
        "section": "A",
        "instructor": "Leila Chinaei",
        "credit": "0.5",
        "type": "Lecture",
        "term": "Winter 2025 (January-April)",
        "days": "Mon,Wed",
        "startTime": "10:05",
        "endTime": "11:25",
        "additionalRegistrationRequirements": "",
        "url": "https://central.carleton.ca/prod/bwysched.p_display_course?wsea_code=EXT&term_code=202510&disp=22184566&crn=11116",
        "description": "Section Type - IN-PERSON SECTION.For Arts & Social Science students only. See also fall term.Laptop required for all first year COMP courses.See https://carleton.ca/scs/scs-laptop-requirement/.Precludes additional credit for COMP 1004 (no longeroffered). This course cannot be taken for credit bystudents in Business, Engineering, Computer Science,Mathematics or Science.",
        "courseId": 1291,
        "course": {
          "id": 1291,
          "subjectCode": "COMP",
          "courseCode": "1001",
          "title": "Introduction to Computational Thinking for Arts and Social Science Students",
          "shortTitle": "Computing for Arts Students",
          "description": "An introduction to computational thinking and its applications to the arts and social sciences.  Students will gain computational thinking skills by exploring data representation, basic programming concepts, a selection of algorithms, and advanced usage of software packages for the arts and social sciences.   Precludes additional credit for COMP 1004 (no longer offered).  This course cannot be taken for credit by students in Business, Engineering, Computer Science, Mathematics or Science."
        }
      },
      ...
    ]
  },
  "error": null
}

Database Schema

This application is powered by a relational database with the following schema.

The schema can be viewed in detail within the Prisma Schema file located at:
service/src/db/schema.prisma

Prisma Entity-Relationship Diagram

Account

The Account model represents a user in the system. Each account has a unique email and password and can have one or more associated timetables.

  • id: Unique identifier for the account.
  • email: Email address for the account (unique).
  • password: Password for the account.
  • role: Role of the user in the system (e.g., admin, user).
  • createdAt: Timestamp indicating when the account was created.
  • updatedAt: Timestamp automatically updated when the account information changes.
  • timetables: A one-to-many relationship with the Timetable model.

Course

The Course model represents a course offering, including details such as its subject code, title, and description. Each course can have multiple scheduled events.

  • id: Unique identifier for the course.
  • subjectCode: Subject code for the course (e.g., COMP).
  • courseCode: Course number (e.g., 1405).
  • title: Full course title.
  • shortTitle: Abbreviated course title.
  • description: Detailed description of the course.
  • createdAt: Timestamp indicating when the course was created.
  • updatedAt: Timestamp automatically updated when the course information changes.
  • scheduledEvents: A one-to-many relationship with the ScheduledEvent model.

Scheduled Event

The ScheduledEvent model represents an offering of a course section, including details like the instructor, schedule, and location. Each scheduled event is linked to a course and can have multiple timetable events.

  • id: Unique identifier for the scheduled event.
  • crn: Course Reference Number (unique).
  • section: Section identifier for the event (e.g., A01).
  • instructor: Instructor name.
  • credit: Credit value of the course.
  • type: Type of event (e.g., Lecture, Lab).
  • term: Term during which the event is offered.
  • days: Days of the week when the event occurs.
  • startTime: Start time of the event.
  • endTime: End time of the event.
  • additionalRegistrationRequirements: Additional requirements for enrollment.
  • url: URL for the event's details.
  • description: Description of the event.
  • courseId: Foreign key linking the event to a course.
  • course: Many-to-one relationship with the Course model.
  • createdAt: Timestamp indicating when the event was created.
  • updatedAt: Timestamp automatically updated when the event information changes.
  • timetableEvents: A one-to-many relationship with the TimetableEvent model.

Timetable

The Timetable model represents a user's schedule, which includes multiple timetable events associated with different scheduled events.

  • id: Unique identifier for the timetable.
  • name: User-defined name for the timetable.
  • accountId: Foreign key linking the timetable to an account.
  • account: Many-to-one relationship with the Account model.
  • createdAt: Timestamp indicating when the timetable was created.
  • updatedAt: Timestamp automatically updated when the timetable information changes.
  • timetableEvents: A one-to-many relationship with the TimetableEvent model.

Timetable Event

The TimetableEvent model represents the association of a scheduled event with a timetable. This allows users to add scheduled events to their personal timetables.

  • id: Unique identifier for the timetable event.
  • scheduledEventId: Foreign key linking the event to a scheduled event.
  • scheduledEvent: Many-to-one relationship with the ScheduledEvent model.
  • timetableId: Foreign key linking the event to a timetable.
  • timetable: Many-to-one relationship with the Timetable model.
  • createdAt: Timestamp indicating when the timetable event was created.
  • updatedAt: Timestamp automatically updated when the timetable event information changes.

Workshops

TypeScript Workshop

(details coming soon)

React Workshop

Option 1: If you have your environment setup:

  1. Make sure you've completed the client setup instructions.

  2. Open http://localhost:5173/workshop

Option 2: Utilize Stackblitz

  1. Open this Stackblitz link.

  2. In your terminal, run cd client then run npm i then run npm run dev

Note: You will not be able to make any API requests in Stackblitz (which is fine for the workshop)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •