Compare commits
10 Commits
feature/e2
...
19ca0c086c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19ca0c086c | ||
|
|
e09110346e | ||
|
|
327c641137 | ||
|
|
08d4d0bccc | ||
|
|
efee1a0239 | ||
|
|
d99c410876 | ||
|
|
532299c864 | ||
|
|
ea74d34363 | ||
|
|
4b025b9ec7 | ||
|
|
5c37de40c6 |
6
.env.e2e
6
.env.e2e
@@ -1,6 +0,0 @@
|
||||
DATABASE_USER=test
|
||||
DATABASE_PASS=test
|
||||
DATABASE_HOST=localhost
|
||||
DATABASE_NAME=test
|
||||
DATABASE_PORT=4401
|
||||
JWT_SECRET="secret"
|
||||
12
.gitignore
vendored
12
.gitignore
vendored
@@ -1,7 +1,7 @@
|
||||
# compiled output
|
||||
/dist
|
||||
/node_modules
|
||||
/build
|
||||
dist
|
||||
node_modules
|
||||
build
|
||||
|
||||
# Logs
|
||||
logs
|
||||
@@ -16,11 +16,11 @@ lerna-debug.log*
|
||||
.DS_Store
|
||||
|
||||
# Tests
|
||||
/coverage
|
||||
/.nyc_output
|
||||
coverage
|
||||
.nyc_output
|
||||
|
||||
# IDEs and editors
|
||||
/.idea
|
||||
.idea
|
||||
.project
|
||||
.classpath
|
||||
.c9/
|
||||
|
||||
17
admin/.editorconfig
Normal file
17
admin/.editorconfig
Normal file
@@ -0,0 +1,17 @@
|
||||
# Editor configuration, see https://editorconfig.org
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.ts]
|
||||
quote_type = single
|
||||
ij_typescript_use_double_quotes = false
|
||||
|
||||
[*.md]
|
||||
max_line_length = off
|
||||
trim_trailing_whitespace = false
|
||||
43
admin/.gitignore
vendored
Normal file
43
admin/.gitignore
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
||||
|
||||
# Compiled output
|
||||
/dist
|
||||
/tmp
|
||||
/out-tsc
|
||||
/bazel-out
|
||||
|
||||
# Node
|
||||
/node_modules
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
# IDEs and editors
|
||||
.idea/
|
||||
.project
|
||||
.classpath
|
||||
.c9/
|
||||
*.launch
|
||||
.settings/
|
||||
*.sublime-workspace
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.history/*
|
||||
|
||||
# Miscellaneous
|
||||
/.angular/cache
|
||||
.sass-cache/
|
||||
/connect.lock
|
||||
/coverage
|
||||
/libpeerconnection.log
|
||||
testem.log
|
||||
/typings
|
||||
__screenshots__/
|
||||
|
||||
# System files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
4
admin/.vscode/extensions.json
vendored
Normal file
4
admin/.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
|
||||
"recommendations": ["angular.ng-template"]
|
||||
}
|
||||
20
admin/.vscode/launch.json
vendored
Normal file
20
admin/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ng serve",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: start",
|
||||
"url": "http://localhost:4200/"
|
||||
},
|
||||
{
|
||||
"name": "ng test",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: test",
|
||||
"url": "http://localhost:9876/debug.html"
|
||||
}
|
||||
]
|
||||
}
|
||||
42
admin/.vscode/tasks.json
vendored
Normal file
42
admin/.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "start",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "typescript",
|
||||
"pattern": "$tsc",
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": {
|
||||
"regexp": "(.*?)"
|
||||
},
|
||||
"endsPattern": {
|
||||
"regexp": "bundle generation complete"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "test",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "typescript",
|
||||
"pattern": "$tsc",
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": {
|
||||
"regexp": "(.*?)"
|
||||
},
|
||||
"endsPattern": {
|
||||
"regexp": "bundle generation complete"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
59
admin/README.md
Normal file
59
admin/README.md
Normal file
@@ -0,0 +1,59 @@
|
||||
# Admin
|
||||
|
||||
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.3.9.
|
||||
|
||||
## Development server
|
||||
|
||||
To start a local development server, run:
|
||||
|
||||
```bash
|
||||
ng serve
|
||||
```
|
||||
|
||||
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
|
||||
|
||||
## Code scaffolding
|
||||
|
||||
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
|
||||
|
||||
```bash
|
||||
ng generate component component-name
|
||||
```
|
||||
|
||||
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
|
||||
|
||||
```bash
|
||||
ng generate --help
|
||||
```
|
||||
|
||||
## Building
|
||||
|
||||
To build the project run:
|
||||
|
||||
```bash
|
||||
ng build
|
||||
```
|
||||
|
||||
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
|
||||
|
||||
## Running unit tests
|
||||
|
||||
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
|
||||
|
||||
```bash
|
||||
ng test
|
||||
```
|
||||
|
||||
## Running end-to-end tests
|
||||
|
||||
For end-to-end (e2e) testing, run:
|
||||
|
||||
```bash
|
||||
ng e2e
|
||||
```
|
||||
|
||||
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
|
||||
|
||||
## Additional Resources
|
||||
|
||||
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
||||
85
admin/angular.json
Normal file
85
admin/angular.json
Normal file
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||
"version": 1,
|
||||
"newProjectRoot": "projects",
|
||||
"projects": {
|
||||
"admin": {
|
||||
"projectType": "application",
|
||||
"schematics": {},
|
||||
"root": "",
|
||||
"sourceRoot": "src",
|
||||
"prefix": "app",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular/build:application",
|
||||
"options": {
|
||||
"browser": "src/main.ts",
|
||||
"tsConfig": "tsconfig.app.json",
|
||||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "public"
|
||||
}
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.css"
|
||||
]
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"budgets": [
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "500kB",
|
||||
"maximumError": "1MB"
|
||||
},
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "4kB",
|
||||
"maximumError": "8kB"
|
||||
}
|
||||
],
|
||||
"outputHashing": "all"
|
||||
},
|
||||
"development": {
|
||||
"optimization": false,
|
||||
"extractLicenses": false,
|
||||
"sourceMap": true
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "production"
|
||||
},
|
||||
"serve": {
|
||||
"builder": "@angular/build:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"buildTarget": "admin:build:production"
|
||||
},
|
||||
"development": {
|
||||
"buildTarget": "admin:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
},
|
||||
"extract-i18n": {
|
||||
"builder": "@angular/build:extract-i18n"
|
||||
},
|
||||
"test": {
|
||||
"builder": "@angular/build:karma",
|
||||
"options": {
|
||||
"tsConfig": "tsconfig.spec.json",
|
||||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "public"
|
||||
}
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.css"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9652
admin/package-lock.json
generated
Normal file
9652
admin/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
47
admin/package.json
Normal file
47
admin/package.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"name": "admin",
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve --proxy-config proxy.conf.json",
|
||||
"build": "ng build",
|
||||
"watch": "ng build --watch --configuration development",
|
||||
"test": "ng test"
|
||||
},
|
||||
"prettier": {
|
||||
"printWidth": 100,
|
||||
"singleQuote": true,
|
||||
"overrides": [
|
||||
{
|
||||
"files": "*.html",
|
||||
"options": {
|
||||
"parser": "angular"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/common": "^20.3.0",
|
||||
"@angular/compiler": "^20.3.0",
|
||||
"@angular/core": "^20.3.0",
|
||||
"@angular/forms": "^20.3.0",
|
||||
"@angular/platform-browser": "^20.3.0",
|
||||
"@angular/router": "^20.3.0",
|
||||
"rxjs": "~7.8.0",
|
||||
"tslib": "^2.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular/build": "^20.3.9",
|
||||
"@angular/cli": "^20.3.9",
|
||||
"@angular/compiler-cli": "^20.3.0",
|
||||
"@types/jasmine": "~5.1.0",
|
||||
"jasmine-core": "~5.9.0",
|
||||
"karma": "~6.4.0",
|
||||
"karma-chrome-launcher": "~3.2.0",
|
||||
"karma-coverage": "~2.2.0",
|
||||
"karma-jasmine": "~5.1.0",
|
||||
"karma-jasmine-html-reporter": "~2.1.0",
|
||||
"typescript": "~5.9.2"
|
||||
}
|
||||
}
|
||||
8
admin/proxy.conf.json
Normal file
8
admin/proxy.conf.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"/api": {
|
||||
"target": "http://localhost:3000",
|
||||
"secure": false,
|
||||
"logLevel": "debug",
|
||||
"changeOrigin": true
|
||||
}
|
||||
}
|
||||
BIN
admin/public/favicon.ico
Normal file
BIN
admin/public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
23
admin/src/app/app.config.ts
Normal file
23
admin/src/app/app.config.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import {
|
||||
ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection,
|
||||
provideZonelessChangeDetection,
|
||||
} from '@angular/core';
|
||||
import { provideRouter } from '@angular/router';
|
||||
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
||||
import { HTTP_INTERCEPTORS } from '@angular/common/http';
|
||||
import { routes } from './app.routes';
|
||||
import { JwtInterceptor } from './auth/jwt.interceptor';
|
||||
import { AuthService } from './auth/auth.service';
|
||||
import { AuthGuard } from './auth/auth.guard';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [
|
||||
provideBrowserGlobalErrorListeners(),
|
||||
provideZonelessChangeDetection(),
|
||||
provideRouter(routes),
|
||||
provideHttpClient(withInterceptorsFromDi()),
|
||||
AuthService,
|
||||
AuthGuard,
|
||||
{ provide: HTTP_INTERCEPTORS, useClass: JwtInterceptor, multi: true },
|
||||
],
|
||||
};
|
||||
0
admin/src/app/app.css
Normal file
0
admin/src/app/app.css
Normal file
5
admin/src/app/app.html
Normal file
5
admin/src/app/app.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<div>
|
||||
<button (click)="logout()">Logout</button>
|
||||
</div>
|
||||
<app-main-menu></app-main-menu>
|
||||
<router-outlet />
|
||||
10
admin/src/app/app.routes.ts
Normal file
10
admin/src/app/app.routes.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { LoginComponent } from './components/login/login.component';
|
||||
import { AuthGuard } from './auth/auth.guard';
|
||||
import { HomeComponent } from './components/home/home.component'; // Assuming you have a HomeComponent
|
||||
|
||||
export const routes: Routes = [
|
||||
{ path: 'login', component: LoginComponent },
|
||||
{ path: '', component: HomeComponent, canActivate: [AuthGuard] },
|
||||
{ path: '**', redirectTo: '' } // Redirect to home for any other route
|
||||
];
|
||||
25
admin/src/app/app.spec.ts
Normal file
25
admin/src/app/app.spec.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { provideZonelessChangeDetection } from '@angular/core';
|
||||
import { TestBed } from '@angular/core/testing';
|
||||
import { App } from './app';
|
||||
|
||||
describe('App', () => {
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [App],
|
||||
providers: [provideZonelessChangeDetection()]
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
it('should create the app', () => {
|
||||
const fixture = TestBed.createComponent(App);
|
||||
const app = fixture.componentInstance;
|
||||
expect(app).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should render title', () => {
|
||||
const fixture = TestBed.createComponent(App);
|
||||
fixture.detectChanges();
|
||||
const compiled = fixture.nativeElement as HTMLElement;
|
||||
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, admin');
|
||||
});
|
||||
});
|
||||
21
admin/src/app/app.ts
Normal file
21
admin/src/app/app.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Component, signal } from '@angular/core';
|
||||
import { Router, RouterOutlet } from '@angular/router';
|
||||
import { MainMenu } from './components/main-menu/main-menu';
|
||||
import { AuthService } from './auth/auth.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
imports: [RouterOutlet, MainMenu],
|
||||
templateUrl: './app.html',
|
||||
styleUrl: './app.css'
|
||||
})
|
||||
export class App {
|
||||
protected readonly title = signal('admin');
|
||||
|
||||
constructor(private authService: AuthService, private router: Router) {}
|
||||
|
||||
logout(): void {
|
||||
this.authService.logout();
|
||||
this.router.navigate(['/login']);
|
||||
}
|
||||
}
|
||||
23
admin/src/app/auth/auth.guard.ts
Normal file
23
admin/src/app/auth/auth.guard.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { CanActivate, Router, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree } from '@angular/router';
|
||||
import { Observable } from 'rxjs';
|
||||
import { AuthService } from './auth.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class AuthGuard implements CanActivate {
|
||||
constructor(private authService: AuthService, private router: Router) {}
|
||||
|
||||
canActivate(
|
||||
route: ActivatedRouteSnapshot,
|
||||
state: RouterStateSnapshot
|
||||
): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
|
||||
if (this.authService.isLoggedIn()) {
|
||||
return true;
|
||||
} else {
|
||||
// Redirect to the login page
|
||||
return this.router.createUrlTree(['/login']);
|
||||
}
|
||||
}
|
||||
}
|
||||
36
admin/src/app/auth/auth.service.ts
Normal file
36
admin/src/app/auth/auth.service.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { Observable } from 'rxjs';
|
||||
import { tap } from 'rxjs/operators';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root',
|
||||
})
|
||||
export class AuthService {
|
||||
private readonly TOKEN_KEY = 'access_token';
|
||||
private apiUrl = 'http://localhost:4200/api/auth'; // Adjust if your server URL is different
|
||||
|
||||
constructor(private http: HttpClient) {}
|
||||
|
||||
login(credentials: { username: string; password: string }): Observable<any> {
|
||||
return this.http.post<{ access_token: string }>(`${this.apiUrl}/login`, credentials).pipe(
|
||||
tap((response) => this.setToken(response.access_token))
|
||||
);
|
||||
}
|
||||
|
||||
logout(): void {
|
||||
localStorage.removeItem(this.TOKEN_KEY);
|
||||
}
|
||||
|
||||
getToken(): string | null {
|
||||
return localStorage.getItem(this.TOKEN_KEY);
|
||||
}
|
||||
|
||||
isLoggedIn(): boolean {
|
||||
return this.getToken() !== null;
|
||||
}
|
||||
|
||||
private setToken(token: string): void {
|
||||
localStorage.setItem(this.TOKEN_KEY, token);
|
||||
}
|
||||
}
|
||||
29
admin/src/app/auth/jwt.interceptor.ts
Normal file
29
admin/src/app/auth/jwt.interceptor.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
HttpEvent,
|
||||
HttpHandler,
|
||||
HttpInterceptor,
|
||||
HttpRequest,
|
||||
} from '@angular/common/http';
|
||||
import { Observable } from 'rxjs';
|
||||
import { AuthService } from './auth.service';
|
||||
|
||||
@Injectable()
|
||||
export class JwtInterceptor implements HttpInterceptor {
|
||||
constructor(private authService: AuthService) {}
|
||||
|
||||
intercept(
|
||||
request: HttpRequest<any>,
|
||||
next: HttpHandler
|
||||
): Observable<HttpEvent<any>> {
|
||||
const token = this.authService.getToken();
|
||||
if (token) {
|
||||
request = request.clone({
|
||||
setHeaders: {
|
||||
Authorization: `Bearer ${token}`,
|
||||
},
|
||||
});
|
||||
}
|
||||
return next.handle(request);
|
||||
}
|
||||
}
|
||||
8
admin/src/app/components/home/home.component.ts
Normal file
8
admin/src/app/components/home/home.component.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-home',
|
||||
template: '<h1>Welcome to the Admin Panel!</h1>',
|
||||
standalone: true,
|
||||
})
|
||||
export class HomeComponent {}
|
||||
15
admin/src/app/components/login/login.component.html
Normal file
15
admin/src/app/components/login/login.component.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div>
|
||||
<h2>Login</h2>
|
||||
<form [formGroup]="loginForm" (ngSubmit)="onSubmit()">
|
||||
<div>
|
||||
<label for="username">Username:</label>
|
||||
<input id="username" formControlName="username" />
|
||||
</div>
|
||||
<div>
|
||||
<label for="password">Password:</label>
|
||||
<input id="password" type="password" formControlName="password" />
|
||||
</div>
|
||||
<button type="submit" [disabled]="loginForm.invalid">Log In</button>
|
||||
</form>
|
||||
<p *ngIf="errorMessage">{{ errorMessage }}</p>
|
||||
</div>
|
||||
36
admin/src/app/components/login/login.component.ts
Normal file
36
admin/src/app/components/login/login.component.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { FormBuilder, FormGroup, Validators, ReactiveFormsModule } from '@angular/forms';
|
||||
import { Router } from '@angular/router';
|
||||
import { AuthService } from '../../auth/auth.service';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-login',
|
||||
templateUrl: './login.component.html',
|
||||
standalone: true,
|
||||
imports: [ReactiveFormsModule, CommonModule],
|
||||
})
|
||||
export class LoginComponent {
|
||||
loginForm: FormGroup;
|
||||
errorMessage: string = '';
|
||||
|
||||
constructor(
|
||||
private fb: FormBuilder,
|
||||
private authService: AuthService,
|
||||
private router: Router
|
||||
) {
|
||||
this.loginForm = this.fb.group({
|
||||
username: ['', Validators.required],
|
||||
password: ['', Validators.required],
|
||||
});
|
||||
}
|
||||
|
||||
onSubmit(): void {
|
||||
if (this.loginForm.valid) {
|
||||
this.authService.login(this.loginForm.value).subscribe({
|
||||
next: () => this.router.navigate(['/']),
|
||||
error: (err) => (this.errorMessage = 'Invalid username or password'),
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
0
admin/src/app/components/main-menu/main-menu.css
Normal file
0
admin/src/app/components/main-menu/main-menu.css
Normal file
1
admin/src/app/components/main-menu/main-menu.html
Normal file
1
admin/src/app/components/main-menu/main-menu.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>main-menu works!</p>
|
||||
23
admin/src/app/components/main-menu/main-menu.spec.ts
Normal file
23
admin/src/app/components/main-menu/main-menu.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MainMenu } from './main-menu';
|
||||
|
||||
describe('MainMenu', () => {
|
||||
let component: MainMenu;
|
||||
let fixture: ComponentFixture<MainMenu>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [MainMenu]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(MainMenu);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
11
admin/src/app/components/main-menu/main-menu.ts
Normal file
11
admin/src/app/components/main-menu/main-menu.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-main-menu',
|
||||
imports: [],
|
||||
templateUrl: './main-menu.html',
|
||||
styleUrl: './main-menu.css',
|
||||
})
|
||||
export class MainMenu {
|
||||
|
||||
}
|
||||
0
admin/src/app/components/navbar/navbar.css
Normal file
0
admin/src/app/components/navbar/navbar.css
Normal file
19
admin/src/app/components/navbar/navbar.html
Normal file
19
admin/src/app/components/navbar/navbar.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<div class="navbar bg-base-100 shadow-sm">
|
||||
<div class="flex-1">
|
||||
<a class="btn btn-ghost text-xl">daisyUI</a>
|
||||
</div>
|
||||
<div class="flex-none">
|
||||
<ul class="menu menu-horizontal px-1">
|
||||
<li><a>Link</a></li>
|
||||
<li>
|
||||
<details>
|
||||
<summary>Parent</summary>
|
||||
<ul class="bg-base-100 rounded-t-none p-2">
|
||||
<li><a>Link 1</a></li>
|
||||
<li><a>Link 2</a></li>
|
||||
</ul>
|
||||
</details>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
23
admin/src/app/components/navbar/navbar.spec.ts
Normal file
23
admin/src/app/components/navbar/navbar.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Navbar } from './navbar';
|
||||
|
||||
describe('Navbar', () => {
|
||||
let component: Navbar;
|
||||
let fixture: ComponentFixture<Navbar>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Navbar]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Navbar);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
11
admin/src/app/components/navbar/navbar.ts
Normal file
11
admin/src/app/components/navbar/navbar.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-navbar',
|
||||
imports: [],
|
||||
templateUrl: './navbar.html',
|
||||
styleUrl: './navbar.css',
|
||||
})
|
||||
export class Navbar {
|
||||
|
||||
}
|
||||
13
admin/src/index.html
Normal file
13
admin/src/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Admin</title>
|
||||
<base href="/">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
||||
6
admin/src/main.ts
Normal file
6
admin/src/main.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { bootstrapApplication } from '@angular/platform-browser';
|
||||
import { appConfig } from './app/app.config';
|
||||
import { App } from './app/app';
|
||||
|
||||
bootstrapApplication(App, appConfig)
|
||||
.catch((err) => console.error(err));
|
||||
1
admin/src/styles.css
Normal file
1
admin/src/styles.css
Normal file
@@ -0,0 +1 @@
|
||||
/* You can add global styles to this file, and also import other style files */
|
||||
15
admin/tsconfig.app.json
Normal file
15
admin/tsconfig.app.json
Normal file
@@ -0,0 +1,15 @@
|
||||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./out-tsc/app",
|
||||
"types": []
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"src/**/*.spec.ts"
|
||||
]
|
||||
}
|
||||
34
admin/tsconfig.json
Normal file
34
admin/tsconfig.json
Normal file
@@ -0,0 +1,34 @@
|
||||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"strict": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"skipLibCheck": true,
|
||||
"isolatedModules": true,
|
||||
"experimentalDecorators": true,
|
||||
"importHelpers": true,
|
||||
"target": "ES2022",
|
||||
"module": "preserve"
|
||||
},
|
||||
"angularCompilerOptions": {
|
||||
"enableI18nLegacyMessageIdFormat": false,
|
||||
"strictInjectionParameters": true,
|
||||
"strictInputAccessModifiers": true,
|
||||
"typeCheckHostBindings": true,
|
||||
"strictTemplates": true
|
||||
},
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
14
admin/tsconfig.spec.json
Normal file
14
admin/tsconfig.spec.json
Normal file
@@ -0,0 +1,14 @@
|
||||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./out-tsc/spec",
|
||||
"types": [
|
||||
"jasmine"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
]
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:18
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_USER: test
|
||||
POSTGRES_PASSWORD: test
|
||||
POSTGRES_DB: test
|
||||
ports:
|
||||
- '4401:5432'
|
||||
volumes:
|
||||
- e2epgdata:/var/lib/postgresql
|
||||
|
||||
|
||||
volumes:
|
||||
e2epgdata: {}
|
||||
@@ -13,22 +13,3 @@ Content-Type: application/json
|
||||
GET http://localhost:3000/users
|
||||
Accept: application/json
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
### POST create user
|
||||
POST http://localhost:3000/users
|
||||
Content-Type: application/json
|
||||
Accept: application/json
|
||||
Authorization: Bearer {{auth_token}}
|
||||
|
||||
{
|
||||
"username": "test1",
|
||||
"password": "123456",
|
||||
"email": "test1@gmail.com",
|
||||
"groups": [
|
||||
{
|
||||
"id": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
1436
package-lock.json → server/package-lock.json
generated
1436
package-lock.json → server/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -29,6 +29,7 @@
|
||||
"@nestjs/jwt": "^11.0.1",
|
||||
"@nestjs/passport": "^11.0.5",
|
||||
"@nestjs/platform-express": "^11.0.1",
|
||||
"@nestjs/swagger": "^11.2.1",
|
||||
"@nestjs/typeorm": "^11.0.0",
|
||||
"bcrypt": "^5.1.1",
|
||||
"class-transformer": "^0.5.1",
|
||||
@@ -52,7 +53,6 @@
|
||||
"@types/node": "^22.10.7",
|
||||
"@types/passport-jwt": "^4.0.0",
|
||||
"@types/supertest": "^6.0.2",
|
||||
"dotenv": "^16.4.5",
|
||||
"eslint": "^9.18.0",
|
||||
"eslint-config-prettier": "^10.0.1",
|
||||
"eslint-plugin-prettier": "^5.2.2",
|
||||
@@ -61,7 +61,6 @@
|
||||
"prettier": "^3.4.2",
|
||||
"source-map-support": "^0.5.21",
|
||||
"supertest": "^7.0.0",
|
||||
"testcontainers": "^10.9.0",
|
||||
"ts-jest": "^29.2.5",
|
||||
"ts-loader": "^9.5.2",
|
||||
"ts-node": "^10.9.2",
|
||||
@@ -8,12 +8,12 @@ import { AuthModule } from './auth/auth.module';
|
||||
import { User } from './entity/user';
|
||||
import { UserGroup } from './entity/user-group';
|
||||
import { UserRole } from './entity/user-role';
|
||||
import { LoggerModule } from './logger/logger.module';
|
||||
|
||||
const moduleTypeOrm = TypeOrmModule.forRootAsync({
|
||||
imports: [ConfigModule],
|
||||
inject: [ConfigService],
|
||||
useFactory: (configService: ConfigService) => {
|
||||
// console.log("config Service", configService)
|
||||
return {
|
||||
type: 'postgres',
|
||||
host: configService.get<string>('DATABASE_HOST'),
|
||||
@@ -28,16 +28,14 @@ const moduleTypeOrm = TypeOrmModule.forRootAsync({
|
||||
},
|
||||
});
|
||||
|
||||
const envFilePath =
|
||||
process.env.NODE_ENV === 'test' ? '.env.e2e' : '.env';
|
||||
|
||||
// throw new Error("envFilePath:"+envFilePath);
|
||||
const moduleConfig = ConfigModule.forRoot({
|
||||
envFilePath,
|
||||
});
|
||||
|
||||
@Module({
|
||||
imports: [moduleConfig, moduleTypeOrm, UserModule, AuthModule],
|
||||
imports: [
|
||||
ConfigModule.forRoot(),
|
||||
moduleTypeOrm,
|
||||
UserModule,
|
||||
AuthModule,
|
||||
LoggerModule,
|
||||
],
|
||||
controllers: [AppController],
|
||||
providers: [AppService],
|
||||
})
|
||||
@@ -1,9 +1,12 @@
|
||||
import { IsString } from 'class-validator';
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
|
||||
export class LoginRequestDto {
|
||||
@IsString()
|
||||
@ApiProperty()
|
||||
username: string;
|
||||
|
||||
@IsString()
|
||||
@ApiProperty()
|
||||
password: string;
|
||||
}
|
||||
@@ -5,14 +5,8 @@ import { User } from './entity/user';
|
||||
import * as dotenv from 'dotenv';
|
||||
import { UserGroup } from './entity/user-group';
|
||||
import { UserRole } from './entity/user-role';
|
||||
import path from 'path';
|
||||
|
||||
let envFilePath = path.resolve(process.cwd(), '.env');
|
||||
if (process.env.DATA_SOURCE_ENV) {
|
||||
envFilePath = path.resolve(process.cwd(), process.env.DATA_SOURCE_ENV);
|
||||
}
|
||||
|
||||
dotenv.config({ path: envFilePath });
|
||||
dotenv.config();
|
||||
|
||||
export const AppDataSource = new DataSource({
|
||||
type: 'postgres',
|
||||
@@ -24,6 +18,8 @@ export const AppDataSource = new DataSource({
|
||||
synchronize: false,
|
||||
logging: false,
|
||||
entities: [User, UserGroup, UserRole],
|
||||
migrations: ['src/migration/**/*.ts'],
|
||||
migrations: [
|
||||
'src/migration/**/*.ts'
|
||||
],
|
||||
subscribers: [],
|
||||
});
|
||||
24
server/src/logger/dvbooking-logger.service.ts
Normal file
24
server/src/logger/dvbooking-logger.service.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { ConsoleLogger, Injectable } from '@nestjs/common';
|
||||
|
||||
@Injectable()
|
||||
export class DvbookingLoggerService extends ConsoleLogger {
|
||||
log(message: string, context?: string) {
|
||||
super.log(message, context);
|
||||
}
|
||||
|
||||
error(message: string, trace?: string, context?: string) {
|
||||
super.error(message, trace, context);
|
||||
}
|
||||
|
||||
warn(message: string, context?: string) {
|
||||
super.warn(message, context);
|
||||
}
|
||||
|
||||
debug(message: string, context?: string) {
|
||||
super.debug(message, context);
|
||||
}
|
||||
|
||||
verbose(message: string, context?: string) {
|
||||
super.verbose(message, context);
|
||||
}
|
||||
}
|
||||
9
server/src/logger/logger.module.ts
Normal file
9
server/src/logger/logger.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Global, Module } from '@nestjs/common';
|
||||
import { DvbookingLoggerService } from './dvbooking-logger.service';
|
||||
|
||||
@Global()
|
||||
@Module({
|
||||
providers: [DvbookingLoggerService],
|
||||
exports: [DvbookingLoggerService],
|
||||
})
|
||||
export class LoggerModule {}
|
||||
23
server/src/main.ts
Normal file
23
server/src/main.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { NestFactory } from '@nestjs/core';
|
||||
import { AppModule } from './app.module';
|
||||
import { DvbookingLoggerService } from './logger/dvbooking-logger.service';
|
||||
import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
|
||||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule);
|
||||
app.useLogger(app.get(DvbookingLoggerService));
|
||||
|
||||
app.setGlobalPrefix('api');
|
||||
|
||||
const config = new DocumentBuilder()
|
||||
.setTitle('DV Booking API')
|
||||
.setDescription('The DV Booking API description')
|
||||
.setVersion('1.0')
|
||||
.addTag('dvbooking')
|
||||
.build();
|
||||
const document = SwaggerModule.createDocument(app, config);
|
||||
SwaggerModule.setup('api', app, document);
|
||||
|
||||
await app.listen(process.env.PORT ?? 3000);
|
||||
}
|
||||
bootstrap();
|
||||
@@ -1,17 +1,18 @@
|
||||
import { IsString, IsEmail, MinLength, IsArray } from 'class-validator';
|
||||
import { IsString, IsEmail, MinLength } from 'class-validator';
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
|
||||
export class CreateUserDto {
|
||||
@IsString()
|
||||
@MinLength(3)
|
||||
@ApiProperty()
|
||||
username: string;
|
||||
|
||||
@IsEmail()
|
||||
@ApiProperty()
|
||||
email: string;
|
||||
|
||||
@IsString()
|
||||
@MinLength(6)
|
||||
@ApiProperty()
|
||||
password: string;
|
||||
|
||||
@IsArray()
|
||||
groups: [{ id: number }];
|
||||
}
|
||||
@@ -1,17 +1,24 @@
|
||||
import { IsString, IsEmail, MinLength, IsOptional } from 'class-validator';
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
|
||||
export class UpdateUserDto {
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
@MinLength(3)
|
||||
@ApiProperty()
|
||||
username?: string;
|
||||
|
||||
|
||||
@IsOptional()
|
||||
@IsEmail()
|
||||
@ApiProperty()
|
||||
email?: string;
|
||||
|
||||
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
@MinLength(6)
|
||||
@ApiProperty()
|
||||
password?: string;
|
||||
|
||||
}
|
||||
@@ -33,7 +33,6 @@ export class UserController {
|
||||
|
||||
@Get()
|
||||
findAll(): Promise<User[]> {
|
||||
console.log("findall", process.env);
|
||||
return this.userService.findAll();
|
||||
}
|
||||
|
||||
13
server/src/user/user.module.ts
Normal file
13
server/src/user/user.module.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { UserService } from './user.service';
|
||||
import { UserController } from './user.controller';
|
||||
import { User } from '../entity/user';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([User])],
|
||||
providers: [UserService],
|
||||
controllers: [UserController],
|
||||
exports: [UserService],
|
||||
})
|
||||
export class UserModule {}
|
||||
@@ -1,59 +1,48 @@
|
||||
import { Injectable, NotFoundException } from '@nestjs/common';
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { InjectRepository } from '@nestjs/typeorm';
|
||||
import { Repository } from 'typeorm';
|
||||
import { User } from '../entity/user';
|
||||
import * as bcrypt from 'bcrypt';
|
||||
import { FindOptionsRelations } from 'typeorm/find-options/FindOptionsRelations';
|
||||
import { UserGroupService } from './user-group.service';
|
||||
import { CreateUserDto } from './dto/create-user.dto';
|
||||
import { UserGroup } from '../entity/user-group';
|
||||
import { DvbookingLoggerService } from '../logger/dvbooking-logger.service';
|
||||
|
||||
@Injectable()
|
||||
export class UserService {
|
||||
constructor(
|
||||
@InjectRepository(User)
|
||||
private usersRepository: Repository<User>,
|
||||
private userGroupService: UserGroupService,
|
||||
private readonly logger: DvbookingLoggerService,
|
||||
) {}
|
||||
|
||||
findAll(): Promise<User[]> {
|
||||
this.logger.log('Finding all users', 'UserService');
|
||||
return this.usersRepository.find();
|
||||
}
|
||||
|
||||
findOne(id: number): Promise<User | null> {
|
||||
this.logger.log(`Finding user with id: ${id}`, 'UserService');
|
||||
return this.usersRepository.findOneBy({ id });
|
||||
}
|
||||
|
||||
findByUsername(
|
||||
username: string,
|
||||
relations?: FindOptionsRelations<User>,
|
||||
relations: FindOptionsRelations<User>,
|
||||
): Promise<User | null> {
|
||||
this.logger.log(`Finding user with username: ${username}`, 'UserService');
|
||||
return this.usersRepository.findOne({ where: { username }, relations });
|
||||
}
|
||||
|
||||
async create(userDto: Partial<CreateUserDto>): Promise<User> {
|
||||
const { groups, ...user } = userDto;
|
||||
async create(user: Partial<User>): Promise<User> {
|
||||
this.logger.log('Creating a new user', 'UserService');
|
||||
if (user.password) {
|
||||
user.password = await bcrypt.hash(user.password, 12);
|
||||
}
|
||||
if (groups) {
|
||||
const userGroups: UserGroup[] = [];
|
||||
for (const group of groups) {
|
||||
const userGroup = await this.userGroupService.findOne(group.id);
|
||||
if (userGroup) {
|
||||
userGroups.push(userGroup);
|
||||
} else {
|
||||
throw new NotFoundException('User group does not exist:' + group.id);
|
||||
}
|
||||
}
|
||||
(user as Partial<User>).groups = userGroups;
|
||||
}
|
||||
const newUser = this.usersRepository.create(user);
|
||||
|
||||
return this.usersRepository.save(newUser);
|
||||
}
|
||||
|
||||
async update(id: number, user: Partial<User>): Promise<User | null> {
|
||||
this.logger.log(`Updating user with id: ${id}`, 'UserService');
|
||||
if (user.password) {
|
||||
user.password = await bcrypt.hash(user.password, 12);
|
||||
}
|
||||
@@ -62,6 +51,7 @@ export class UserService {
|
||||
}
|
||||
|
||||
async remove(id: number): Promise<void> {
|
||||
this.logger.log(`Removing user with id: ${id}`, 'UserService');
|
||||
await this.usersRepository.delete(id);
|
||||
}
|
||||
}
|
||||
@@ -5,7 +5,5 @@
|
||||
"testRegex": ".e2e-spec.ts$",
|
||||
"transform": {
|
||||
"^.+\\.(t|j)s$": "ts-jest"
|
||||
},
|
||||
"globalSetup": "<rootDir>/global-setup.ts",
|
||||
"globalTeardown": "<rootDir>/global-teardown.ts"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
import { NestFactory } from '@nestjs/core';
|
||||
import { AppModule } from './app.module';
|
||||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule);
|
||||
await app.listen(process.env.PORT ?? 3000);
|
||||
}
|
||||
bootstrap();
|
||||
@@ -1,44 +0,0 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { InjectRepository } from '@nestjs/typeorm';
|
||||
import { Repository } from 'typeorm';
|
||||
import { UserGroup } from '../entity/user-group';
|
||||
import { FindOptionsRelations } from 'typeorm/find-options/FindOptionsRelations';
|
||||
|
||||
@Injectable()
|
||||
export class UserGroupService {
|
||||
constructor(
|
||||
@InjectRepository(UserGroup)
|
||||
private userGroupRepository: Repository<UserGroup>,
|
||||
) {}
|
||||
|
||||
findByName(
|
||||
name: string,
|
||||
relations?: FindOptionsRelations<UserGroup>,
|
||||
): Promise<UserGroup | null> {
|
||||
return this.userGroupRepository.findOne({ where: { name }, relations });
|
||||
}
|
||||
findAll(): Promise<UserGroup[]> {
|
||||
return this.userGroupRepository.find();
|
||||
}
|
||||
|
||||
findOne(id: number): Promise<UserGroup | null> {
|
||||
return this.userGroupRepository.findOneBy({ id });
|
||||
}
|
||||
|
||||
async create(userGroup: Partial<UserGroup>): Promise<UserGroup> {
|
||||
const newUserGroup = this.userGroupRepository.create(userGroup);
|
||||
return this.userGroupRepository.save(newUserGroup);
|
||||
}
|
||||
|
||||
async update(
|
||||
id: number,
|
||||
userGroup: Partial<UserGroup>,
|
||||
): Promise<UserGroup | null> {
|
||||
await this.userGroupRepository.update(id, userGroup);
|
||||
return this.userGroupRepository.findOneBy({ id });
|
||||
}
|
||||
|
||||
async remove(id: number): Promise<void> {
|
||||
await this.userGroupRepository.delete(id);
|
||||
}
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { InjectRepository } from '@nestjs/typeorm';
|
||||
import { Repository } from 'typeorm';
|
||||
import { UserRole } from '../entity/user-role';
|
||||
|
||||
@Injectable()
|
||||
export class UserRoleService {
|
||||
constructor(
|
||||
@InjectRepository(UserRole)
|
||||
private userGroupRepository: Repository<UserRole>,
|
||||
) {}
|
||||
|
||||
findAll(): Promise<UserRole[]> {
|
||||
return this.userGroupRepository.find();
|
||||
}
|
||||
|
||||
findOne(id: number): Promise<UserRole | null> {
|
||||
return this.userGroupRepository.findOneBy({ id });
|
||||
}
|
||||
|
||||
async create(userGroup: Partial<UserRole>): Promise<UserRole> {
|
||||
const newUserRole = this.userGroupRepository.create(userGroup);
|
||||
return this.userGroupRepository.save(newUserRole);
|
||||
}
|
||||
|
||||
async update(
|
||||
id: number,
|
||||
userRole: Partial<UserRole>,
|
||||
): Promise<UserRole | null> {
|
||||
await this.userGroupRepository.update(id, userRole);
|
||||
return this.userGroupRepository.findOneBy({ id });
|
||||
}
|
||||
|
||||
async remove(id: number): Promise<void> {
|
||||
await this.userGroupRepository.delete(id);
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { UserService } from './user.service';
|
||||
import { UserController } from './user.controller';
|
||||
import { User } from '../entity/user';
|
||||
import { UserGroup } from '../entity/user-group';
|
||||
import { UserRole } from '../entity/user-role';
|
||||
import { UserGroupService } from './user-group.service';
|
||||
import { UserRoleService } from './user-role.service';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([User, UserGroup, UserRole])],
|
||||
providers: [UserService, UserGroupService, UserRoleService],
|
||||
controllers: [UserController],
|
||||
exports: [UserService, UserGroupService, UserRoleService],
|
||||
})
|
||||
export class UserModule {}
|
||||
@@ -1,8 +0,0 @@
|
||||
import { User } from '../../src/entity/user';
|
||||
import { INestApplication } from '@nestjs/common';
|
||||
|
||||
export interface DvbookingApiContext {
|
||||
token: string;
|
||||
user: User;
|
||||
app: INestApplication<any>;
|
||||
}
|
||||
@@ -1,78 +0,0 @@
|
||||
import { DvbookingApiContext } from './dvbooking.api-context';
|
||||
import { CreateUserDto } from '../../src/user/dto/create-user.dto';
|
||||
import { TestingModule } from '@nestjs/testing';
|
||||
import { UserService } from '../../src/user/user.service';
|
||||
import { UserGroupService } from '../../src/user/user-group.service';
|
||||
import { INestApplication } from '@nestjs/common';
|
||||
import request from 'supertest';
|
||||
|
||||
export class DvbookingApi {
|
||||
public context: DvbookingApiContext;
|
||||
|
||||
systemUser: { username: string; password: string; token?: string } = {
|
||||
username: 'admin',
|
||||
password: '123456',
|
||||
token: undefined,
|
||||
};
|
||||
|
||||
private userService: UserService;
|
||||
private userGroupService: UserGroupService;
|
||||
constructor(
|
||||
private app: INestApplication<any>,
|
||||
private moduleFixture: TestingModule,
|
||||
) {
|
||||
this.userService = moduleFixture.get<UserService>(UserService);
|
||||
this.userGroupService =
|
||||
moduleFixture.get<UserGroupService>(UserGroupService);
|
||||
}
|
||||
|
||||
public async init() {
|
||||
const response = await request(this.app.getHttpServer())
|
||||
.post('/auth/login')
|
||||
.send({
|
||||
username: this.systemUser.username,
|
||||
password: this.systemUser.password,
|
||||
});
|
||||
|
||||
this.systemUser.token = (
|
||||
response.body as { access_token: string }
|
||||
).access_token;
|
||||
}
|
||||
|
||||
public async destroy() {
|
||||
// do cleanup
|
||||
}
|
||||
|
||||
public async loginWithGroup(
|
||||
username?: string,
|
||||
groupName?: string,
|
||||
): Promise<void> {
|
||||
const group = await this.userGroupService.findByName(groupName);
|
||||
if (!username) {
|
||||
username = 'e2e-user-' + Math.floor(100 * Math.random());
|
||||
}
|
||||
const password = 'password';
|
||||
const user = await this.createUser({
|
||||
username: username,
|
||||
email: 'user@dvbooking.hu',
|
||||
password: 'password',
|
||||
groups: [{ id: group!.id }],
|
||||
});
|
||||
|
||||
const response = await request(this.app.getHttpServer())
|
||||
.post('/auth/login')
|
||||
.send({ username, password });
|
||||
|
||||
const token = (response.body as { access_token: string }).access_token;
|
||||
|
||||
this.context = {
|
||||
user,
|
||||
token,
|
||||
app: this.app,
|
||||
};
|
||||
}
|
||||
|
||||
public async createUser(user: CreateUserDto) {
|
||||
return await this.userService.create(user);
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
import request from 'supertest';
|
||||
import { DvbookingApiContext } from './dvbooking.api-context';
|
||||
|
||||
export class DvBookingHttpClient {
|
||||
constructor(private context: DvbookingApiContext) {}
|
||||
|
||||
private createRequest() {
|
||||
return request(this.context.app.getHttpServer());
|
||||
}
|
||||
public async httpPost(path: string, data?: string | object) {
|
||||
return await this.createRequest().post(path).send(data);
|
||||
}
|
||||
|
||||
public async httpGet(path: string) {
|
||||
return await this.createRequest().get(path).send();
|
||||
}
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
import { DvbookingApiContext } from './dvbooking.api-context';
|
||||
import { DvBookingHttpClient } from './dvbooking.http-client';
|
||||
import { User } from '../../src/entity/user';
|
||||
|
||||
export class UserApiClient {
|
||||
private http: DvBookingHttpClient;
|
||||
|
||||
constructor(context: DvbookingApiContext) {
|
||||
this.http = new DvBookingHttpClient(context);
|
||||
}
|
||||
|
||||
public async find() {
|
||||
const response = await this.http.httpGet('/users');
|
||||
return response.body as User[];
|
||||
}
|
||||
|
||||
public async findById(id: number) {
|
||||
const response = await this.http.httpGet('/users/' + id);
|
||||
return response.body as User[];
|
||||
}
|
||||
}
|
||||
@@ -1,43 +0,0 @@
|
||||
import { exec } from 'child_process';
|
||||
import * as path from 'path';
|
||||
import { DockerComposeEnvironment, Wait } from 'testcontainers';
|
||||
|
||||
export default async () => {
|
||||
const composeFilePath = path.resolve(__dirname, '../environment/e2e');
|
||||
|
||||
const environment = await new DockerComposeEnvironment(
|
||||
composeFilePath,
|
||||
'docker-compose.yaml',
|
||||
)
|
||||
.withWaitStrategy('postgres_1', Wait.forHealthCheck())
|
||||
.up();
|
||||
|
||||
// Store the environment details for teardown
|
||||
(global as any).__TESTCONTAINERS_ENVIRONMENT__ = environment;
|
||||
|
||||
// Run migrations
|
||||
await new Promise<void>((resolve, reject) => {
|
||||
console.info('running migration');
|
||||
exec(
|
||||
'env && npm run migration:run',
|
||||
{ env: { ...process.env, DATA_SOURCE_ENV: '.env.e2e' } },
|
||||
(err, stdout, stderr) => {
|
||||
if (err) {
|
||||
console.error(stderr);
|
||||
return reject(err);
|
||||
}
|
||||
console.log(stdout);
|
||||
resolve();
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
// await new Promise(resolve => {setTimeout(resolve, 60000)})
|
||||
};
|
||||
|
||||
// function readEnvFile() {
|
||||
// const fs = require('fs');
|
||||
// const dotenv = require('dotenv');
|
||||
// const envConfig = dotenv.parse(fs.readFileSync('.env.e2e'));
|
||||
// return envConfig;
|
||||
// }
|
||||
@@ -1,11 +0,0 @@
|
||||
import { StartedDockerComposeEnvironment } from 'testcontainers';
|
||||
|
||||
export default async () => {
|
||||
const environment: StartedDockerComposeEnvironment = (
|
||||
global as any as { __TESTCONTAINERS_ENVIRONMENT__: any }
|
||||
).__TESTCONTAINERS_ENVIRONMENT__ as StartedDockerComposeEnvironment;
|
||||
|
||||
if (environment) {
|
||||
await environment.down();
|
||||
}
|
||||
};
|
||||
@@ -1,128 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { INestApplication, ValidationPipe } from '@nestjs/common';
|
||||
import request from 'supertest';
|
||||
import { AppModule } from '../src/app.module';
|
||||
import { CreateUserDto } from '../src/user/dto/create-user.dto';
|
||||
import { UserService } from '../src/user/user.service';
|
||||
import { User } from '../src/entity/user';
|
||||
|
||||
import dotenv from 'dotenv';
|
||||
import path from 'path';
|
||||
import { DvbookingApi } from './client/dvbooking.api';
|
||||
|
||||
dotenv.config({ path: path.resolve(process.cwd(), '.env.e2e') });
|
||||
|
||||
describe('UserController (e2e)', () => {
|
||||
process.env.DATA_SOURCE_ENV = '.env.e2e';
|
||||
process.env.DATABASE_HOST = 'localhost';
|
||||
process.env.DATABASE_PORT = '4401';
|
||||
process.env.DATABASE_USER = 'test';
|
||||
process.env.DATABASE_PASS = 'test';
|
||||
|
||||
let app: INestApplication;
|
||||
let jwtToken: string;
|
||||
let adminUserId: number;
|
||||
let adminGroupId: number;
|
||||
let api: DvbookingApi;
|
||||
|
||||
beforeAll(async () => {
|
||||
const moduleFixture: TestingModule = await Test.createTestingModule({
|
||||
imports: [AppModule],
|
||||
}).compile();
|
||||
|
||||
// process.env.DATA_SOURCE_ENV=".env.e2e";
|
||||
app = moduleFixture.createNestApplication();
|
||||
app.useGlobalPipes(new ValidationPipe());
|
||||
await app.init();
|
||||
api = new DvbookingApi(app, moduleFixture);
|
||||
await api.init();
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
await api.destroy();
|
||||
await app.close();
|
||||
});
|
||||
|
||||
describe('/users', () => {
|
||||
it('(GET) should get all users', async () => {
|
||||
const response = await request(app.getHttpServer())
|
||||
.get('/users')
|
||||
.set('Authorization', `Bearer ${jwtToken}`);
|
||||
|
||||
expect(response.status).toBe(200);
|
||||
expect(Array.isArray(response.body)).toBe(true);
|
||||
});
|
||||
|
||||
it('(POST) should create a user', async () => {
|
||||
const createUserDto: CreateUserDto = {
|
||||
username: 'e2e_user',
|
||||
email: 'user@dvbooking.hu',
|
||||
password: 'password',
|
||||
groups: [{ id: adminGroupId }],
|
||||
};
|
||||
|
||||
const response = await request(app.getHttpServer())
|
||||
.post('/users')
|
||||
.set('Authorization', `Bearer ${jwtToken}`)
|
||||
.send(createUserDto);
|
||||
|
||||
expect(response.status).toBe(201);
|
||||
expect(response.body.username).toEqual(createUserDto.username);
|
||||
|
||||
const userService = app.get<UserService>(UserService);
|
||||
await userService.remove(response.body.id);
|
||||
});
|
||||
});
|
||||
|
||||
describe('/users/:id', () => {
|
||||
let user: User;
|
||||
let userService: UserService;
|
||||
|
||||
beforeEach(async () => {
|
||||
userService = app.get<UserService>(UserService);
|
||||
await api.loginWithGroup(undefined, 'admin');
|
||||
user = api.context.user!;
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
const userExists = await userService.findOne(user.id);
|
||||
if (userExists) {
|
||||
await userService.remove(user.id);
|
||||
}
|
||||
});
|
||||
|
||||
it('(GET) should get a user by id', async () => {
|
||||
const response = await request(app.getHttpServer())
|
||||
.get(`/users/${user.id}`)
|
||||
.set('Authorization', `Bearer ${jwtToken}`);
|
||||
|
||||
expect(response.status).toBe(200);
|
||||
expect(response.body.id).toEqual(user.id);
|
||||
});
|
||||
|
||||
// it('(PATCH) should update a user', async () => {
|
||||
// const updateUserDto: UpdateUserDto = {
|
||||
// username: 'e2e_updated_user',
|
||||
// };
|
||||
//
|
||||
// const response = await request(app.getHttpServer())
|
||||
// .patch(`/users/${user.id}`)
|
||||
// .set('Authorization', `Bearer ${jwtToken}`)
|
||||
// .send(updateUserDto);
|
||||
//
|
||||
// expect(response.status).toBe(200);
|
||||
// expect(response.body.username).toEqual(updateUserDto.username);
|
||||
// });
|
||||
//
|
||||
// it('(DELETE) should delete a user', async () => {
|
||||
// const response = await request(app.getHttpServer())
|
||||
// .delete(`/users/${user.id}`)
|
||||
// .set('Authorization', `Bearer ${jwtToken}`);
|
||||
//
|
||||
// expect(response.status).toBe(200);
|
||||
//
|
||||
// const deletedUser = await userService.findOne(user.id);
|
||||
// expect(deletedUser).toBeNull();
|
||||
// });
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user