Skip to content
Snippets Groups Projects
Commit d1be4eb1 authored by L4168's avatar L4168
Browse files

Added relationship between tables

parent 47ee5986
No related branches found
No related tags found
1 merge request!3Added relationship between tables
import { Entity, Column, PrimaryGeneratedColumn, Timestamp } from 'typeorm'; import { Entity, Column, PrimaryGeneratedColumn, Timestamp, ManyToOne } from 'typeorm';
import { PersonEntity } from 'src/user/user.entity'
@Entity('MapMarker') @Entity('MapMarker')
export class MapMarkerEntity { export class MapMarkerEntity {
...@@ -6,4 +8,6 @@ export class MapMarkerEntity { ...@@ -6,4 +8,6 @@ export class MapMarkerEntity {
@Column({type: 'text'}) latitude: string; @Column({type: 'text'}) latitude: string;
@Column({type: 'text'}) longitude: string; @Column({type: 'text'}) longitude: string;
@Column({type: 'timestamp'}) timestamp: Timestamp; @Column({type: 'timestamp'}) timestamp: Timestamp;
@ManyToOne(type => PersonEntity, player => player.markers)
player: PersonEntity;
} }
\ No newline at end of file
import { Injectable, HttpException, HttpStatus } from '@nestjs/common'; import { Injectable, HttpException, HttpStatus } from '@nestjs/common';
import { Repository } from "typeorm"; import { Repository, In } from "typeorm";
import { InjectRepository } from "@nestjs/typeorm"; import { InjectRepository } from "@nestjs/typeorm";
import { MapMarkerEntity } from './mapmarker.entity'; import { MapMarkerEntity } from './mapmarker.entity';
import { MapMarkerDTO } from './mapmarker.dto'; import { MapMarkerDTO } from './mapmarker.dto';
import { PersonEntity } from 'dist/user/user.entity';
import { userInfo } from 'os';
@Injectable() @Injectable()
export class MapMarkerService { export class MapMarkerService {
constructor(@InjectRepository(MapMarkerEntity) private mapmarkerRepository: Repository<MapMarkerEntity>){} constructor(
@InjectRepository(MapMarkerEntity) private mapmarkerRepository: Repository<MapMarkerEntity>,
@InjectRepository(PersonEntity) private personRepository: Repository<PersonEntity>
) { }
// insert markers // insert markers
async insertLocation(data: MapMarkerDTO){ async insertLocation(personId: string, data: MapMarkerDTO) {
try{ try {
data.timestamp = new Date(Date.now()).toLocaleString(); //get functions runtime as timestamp data.timestamp = new Date(Date.now()).toLocaleString(); //get functions runtime as timestamp
let location = await this.mapmarkerRepository.create(data); const user = await this.personRepository.findOne({ where: { id: personId } })
await this.mapmarkerRepository.insert(location); const location = await this.mapmarkerRepository.create({ ...data, player: user });
}catch(error){ await this.mapmarkerRepository.insert(location);
return { ...data, player: location.player.nameObject() };
} catch (error) {
return error; return error;
} }
} }
// get all markers // get all markers
async getAllMarkers(): Promise<MapMarkerEntity[]>{ async getAllMarkers() {
try{ try {
return this.mapmarkerRepository.find(); const markers = await this.mapmarkerRepository.find({ relations: ['player'] });
}catch(error){ return markers.map(marker => { return { ...marker, player: marker.player.nameObject() } });
} catch (error) {
return error.message; return error.message;
} }
......
import { Controller, Body, Get, Put } from '@nestjs/common'; import { Controller, Body, Get, Put, UseGuards } from '@nestjs/common';
import { MapMarkerService } from './mapmarker.service'; import { MapMarkerService } from './mapmarker.service';
import { MapMarkerDTO } from './mapmarker.dto'; import { MapMarkerDTO } from './mapmarker.dto';
import { AuthGuard } from 'dist/shared/auth.guard';
import { User } from 'src/user/user.decorator';
@Controller('mapmarkers') @Controller('mapmarkers')
export class MapMarkersController { export class MapMarkersController {
constructor(private mapmarkerservice: MapMarkerService){} constructor(private mapmarkerservice: MapMarkerService){}
// Insert figure location // Insert figure location, needs "authorization" header with valid Bearer token and content-type json
@Put('insertLocation') @Put('insertLocation')
async insertLocation(@Body() data: MapMarkerDTO): Promise<string>{ @UseGuards(new AuthGuard())
async insertLocation(@User('id') person, @Body() data: MapMarkerDTO): Promise<string>{
try { try {
return this.mapmarkerservice.insertLocation(data); return this.mapmarkerservice.insertLocation(person, data);
} catch (error) { } catch (error) {
return error; return error;
} }
} }
// return all markers
@Get('getall') @Get('getall')
async getAll(){ async getAll(){
// tarkistaa oikeudet
// hakee kaikki
return this.mapmarkerservice.getAllMarkers(); return this.mapmarkerservice.getAllMarkers();
} }
} }
...@@ -4,9 +4,10 @@ import { TypeOrmModule } from '@nestjs/typeorm'; ...@@ -4,9 +4,10 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { MapMarkersController } from './mapmarkers.controller'; import { MapMarkersController } from './mapmarkers.controller';
import { MapMarkerService } from './mapmarker.service'; import { MapMarkerService } from './mapmarker.service';
import { MapMarkerEntity } from './mapmarker.entity'; import { MapMarkerEntity } from './mapmarker.entity';
import { PersonEntity } from 'src/user/user.entity';
@Module({ @Module({
imports: [TypeOrmModule.forFeature([MapMarkerEntity])], imports: [TypeOrmModule.forFeature([MapMarkerEntity, PersonEntity])],
controllers: [MapMarkersController], controllers: [MapMarkersController],
providers: [MapMarkerService] providers: [MapMarkerService]
}) })
......
import { createParamDecorator } from "@nestjs/common";
export const User = createParamDecorator((data, req) => {
return data ? req.user[data] : req.user;
})
\ No newline at end of file
import { Entity, Column, PrimaryGeneratedColumn, BeforeInsert } from 'typeorm'; import { Entity, Column, PrimaryGeneratedColumn, BeforeInsert, OneToMany } from 'typeorm';
import * as bcrypt from 'bcryptjs'; import * as bcrypt from 'bcryptjs';
import * as jwt from 'jsonwebtoken'; import * as jwt from 'jsonwebtoken';
import { MapMarkerEntity } from 'src/mapmarkers/mapmarker.entity';
@Entity('Person') @Entity('Person')
export class PersonEntity { export class PersonEntity {
@PrimaryGeneratedColumn('uuid') id: string; @PrimaryGeneratedColumn('uuid') id: string;
@Column({type: 'text', unique: true}) name: string; @Column({type: 'text', unique: true}) name: string;
@Column('text') password: string; @Column('text') password: string;
@OneToMany(type => MapMarkerEntity, marker => marker.player)
markers: MapMarkerEntity[];
@BeforeInsert() @BeforeInsert()
async hashPassword() { async hashPassword() {
...@@ -18,6 +21,12 @@ export class PersonEntity { ...@@ -18,6 +21,12 @@ export class PersonEntity {
return {name, token}; return {name, token};
} }
// returns username and the id
nameObject() {
const {id, name} = this;
return {id, name};
}
async comparePassword(attempt: string) { async comparePassword(attempt: string) {
return await bcrypt.compareSync(attempt, this.password); return await bcrypt.compareSync(attempt, this.password);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment