The backend application was built with .netcore 2.0.
Here are the main backend project files that contain application logic:
- AcmeGames
- Controllers
- Data
- Domain
- Extensions
- Filters
- Mapping
Components | Reason |
---|---|
AutoMapper | AutoMapper used for getting rid of code that mapped one object to another. |
MediatR | Simple mediator implementation in .NET. MediatR is used to request\respones, commands\queries dispatching. |
NSwag | NSwag is used to generate OpenApi specification from existing controllers. |
Swashbuckle | Swashbuckle is used to build a slick discovery UI for API. |
Open AcmeGames.sln with Visual Studio 2017 or higher or with Rider IDE. Build and the run solution into IDE.
After the run you can navigate to http://localhost:56654/swagger to see Swagger UI of AcmeGames API.
The frontend application was built with Angular framework.
Each feature has it's own folder (game, login, etc.), other shared/common code such as services, models, helpers etc are placed in folders with same names to group them together at the top of the folder structure.
Frontend application located into AcmeGames\app
folder. Here are the main frontend project files that contains application logic:
- src
- app
- components
- account
- account.component.ts
- admin
- admin.component.ts
- game
- game.component.ts
- login
- login.component.ts
- account
- helpers
- admin.guard.ts
- auth.guard.ts
- error.interceptor.ts
- jwt.interceptor.ts
- model
- authData.ts
- changeUserData.ts
- game.ts
- user.ts
- services
- auth.service.ts
- game.service.ts
- user.service.ts
- validation
- confirmedValidator.ts
- components
- app
- proxy.conf.json
The auth guard (helpers/auth.guard.ts
) is an angular route guard that's used to prevent unauthenticated users from accessing restricted routes, it does this by implementing the CanActivate interface.
The admin guard (helpers/admin.guard.ts
) is an angular route guard that's used to prevent authenticated users from accessing admin area, it does this by implementing the CanActivate interface and parsing jwt payload to get actual user role.
The confirmed validator (validators/admin.confirmedValidator.ts
) is a function that's used to compare two field values on one form (password and confirm password).
The proxy configuration file (proxy.conf.json
) contains settings for backend proxy and solve cors requests without cors handling on the backend.
- Install Nodejs
- Navigate to
AcmeGames\app
folder - Open your favourite terminal and type command
npm install
- Serve angular application by command
ng serve --open
- Now you can go to http://localhost:4200 to see the application
Here are several steps which are not implemented yet:
- Backend
- Add unit tests
- Move
Data
andDomain
files to separate assembliesAcmeGames.Data
andAcmeGames.Domain
- Produce some logging for better application behaviour understanding
- Implement an access layer to the real database engine
- Frontend
- Add unit tests
- Implement the following features in the admin area:
- Search for a specific user account.
- View and edit all details of a user account.
- Grant user ownership of a game, without the use of a key.
- Revoke a user's ownership of a game.