Skip to content

natashabuckham/whale-spotting-2024-sept

 
 

Repository files navigation

Whale Spotting

This is a project to help users find out more about whales and to encourage them to go and spot whales in the wild. This three-week project culminated in a demo and presentation, which can be found here: https://docs.google.com/presentation/d/1bKVYXXJJkqQITtu8VHvW2HF2q71xj8jqyaf7CnvuU-o/edit#slide=id.g302d12489e3_19_0

Setting up

A database needs to be prepared, and all required dependencies need to be installed, before the project can be successfully run.

Inside pgAdmin

First, create a user with the following credentials and permissions:

  • Username whales
  • Password whales
  • Able to login

Then, create a database called whales, owned by the user created previously (also called whales).

Inside the root directory

dotnet tool restore
npm install

Inside the backend/ directory

dotnet restore
dotnet dotnet-ef database update

Inside the frontend/ directory

npm install

Running the project

To run the project locally, the backend and frontend should be started separately.

Inside the backend/ directory

dotnet watch run

Inside the frontend/ directory

npm start

Seeding Data

Data will be seeded in development.

You can find the seeding data files in the /backend/SeedData folder.

These files contain the sample data and methods that are called in Program.cs (inside the if (app.Environment.IsDevelopment()) statement) to populate the database accordingly.

Admin

After seeding the data, the user table is seeded with the following admin: UserName = "Admin" Email = "[email protected]" Password = "Pa$$word123"

pre-commit hooks

When committing changes a pre-commit hook will run that includes runs a linter and the tests for both frontedn and backend.

If you need to commit without the pre-commit hook running you can used the --no-verify flag when making your commit

git commit --no-verify -m "your commit message here"

Using protected endpoints

Authorization checks have been added which means all endpoints except /auth/login and /auth/register are protected. To protect other endpoints, add the [Authorize] attribute in the controller.

Protected endpoints will return a 401 Unauthorized response unless you pass the logged-in user's JWT token as a header.

From the frontend

To add the JWT token as a header to fetch requests which access protected endpoints do the following:

In the .tsx file where the fetch request is being called:

  1. import the login context to access the value of the JWT token
  2. pass the token as a prop called 'header' in the method which calls the fetch request

In the backendClient.ts file:

  1. add 'header: string' as a prop to the method
  2. add "Authorization": Bearer ${header} to the list of headers

Using Swagger

You should see unlocked padlock icons on the right of every endpoint.

  1. Run the /auth/login endpoint
  2. Copy the jwt token returned in the HTTP response
  3. Click the green Authorize button on the top right of the Swagger page
  4. In the pop-up, type 'Bearer' + space + paste the token and click Authorize
  5. Now all the endpoints should show a locked padlock icon
  6. The jwt header should be passed automatically to all protected endpoints
  7. If you click the green Authorize button again and click Logout, the jwt token will be lost and you will need to log in again

Using Postman

  1. Run the /auth/login endpoint
  2. Copy the jwt token returned in the HTTP response
  3. When running a protected endpoint, click the Authorization tab
  4. Select 'Bearer Token' from the Auth Type dropdown list
  5. Paste the token into the box
  6. Postman will add the correct header

Using the vis.gl/react-google-maps API

You can run the app without the API key, but the map will appear in 'development mode', so not all the map features will be functional.

  1. follow the instructions from this page to get an API key: https://developers.google.com/maps/get-started
  2. In your project on the Cloud Console, go to 'Map styles' and create a new style (you don't need to change any settings, just save it)
  3. Once you have saved a map style, you will get a Map style ID
  4. create a new .env file in the frontend folder, following the .env.template file, and put in your API key and the Map style ID

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 57.3%
  • TypeScript 38.1%
  • SCSS 3.9%
  • HTML 0.7%