basic insert

This commit is contained in:
sbriat 2023-02-07 16:13:52 +01:00
parent c4ea88a275
commit b56307d4f6
9 changed files with 142 additions and 11 deletions

13
package-lock.json generated
View File

@ -37,6 +37,7 @@
"@nestjs/schematics": "^9.0.0", "@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0", "@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"@types/geojson": "^7946.0.10",
"@types/jest": "29.2.4", "@types/jest": "29.2.4",
"@types/node": "18.11.18", "@types/node": "18.11.18",
"@types/supertest": "^2.0.11", "@types/supertest": "^2.0.11",
@ -2320,6 +2321,12 @@
"@types/range-parser": "*" "@types/range-parser": "*"
} }
}, },
"node_modules/@types/geojson": {
"version": "7946.0.10",
"resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
"integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==",
"dev": true
},
"node_modules/@types/graceful-fs": { "node_modules/@types/graceful-fs": {
"version": "4.1.6", "version": "4.1.6",
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
@ -10869,6 +10876,12 @@
"@types/range-parser": "*" "@types/range-parser": "*"
} }
}, },
"@types/geojson": {
"version": "7946.0.10",
"resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
"integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==",
"dev": true
},
"@types/graceful-fs": { "@types/graceful-fs": {
"version": "4.1.6", "version": "4.1.6",
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",

View File

@ -55,6 +55,7 @@
"@nestjs/schematics": "^9.0.0", "@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0", "@nestjs/testing": "^9.0.0",
"@types/express": "^4.17.13", "@types/express": "^4.17.13",
"@types/geojson": "^7946.0.10",
"@types/jest": "29.2.4", "@types/jest": "29.2.4",
"@types/node": "18.11.18", "@types/node": "18.11.18",
"@types/supertest": "^2.0.11", "@types/supertest": "^2.0.11",

View File

@ -5,6 +5,7 @@ import { DatabaseException } from '../../exceptions/database.exception';
import { ICollection } from '../../interfaces/collection.interface'; import { ICollection } from '../../interfaces/collection.interface';
import { IRepository } from '../../interfaces/repository.interface'; import { IRepository } from '../../interfaces/repository.interface';
import { PrismaService } from './prisma-service'; import { PrismaService } from './prisma-service';
import { Territory } from 'src/modules/territories/domain/entities/territory';
/** /**
* Child classes MUST redefined _model property with appropriate model name * Child classes MUST redefined _model property with appropriate model name
@ -185,11 +186,22 @@ export abstract class PrismaRepository<T> implements IRepository<T> {
} }
async findForPoint(point: Point): Promise<ICollection<T>> { async findForPoint(point: Point): Promise<ICollection<T>> {
const strPoint = `SELECT uuid, name FROM ${this._model} WHERE ST_Intersects('POINT(${point.lon} ${point.lat})',shape) = true`; const strPoint = `SELECT uuid, name FROM ${this._model} WHERE ST_Intersects(ST_GeomFromText('POINT(${point.lon} ${point.lat})',4326),shape) = true`;
const territories: Array<T> = await this._prisma.$queryRawUnsafe(strPoint); const territories: Array<T> = await this._prisma.$queryRawUnsafe(strPoint);
return Promise.resolve({ return Promise.resolve({
data: territories, data: territories,
total: territories.length, total: territories.length,
}); });
} }
async createTerritory(territory: Territory): Promise<T> {
const command = `INSERT INTO ${this._model} VALUES ('bb281075-1b98-4456-89d6-c643d3044a91','${territory.name}', ST_GeomFromGeoJSON('{"type":"MultiPolygon","coordinates":${territory.shape}}'),'2023-02-07 15:58:00','2023-02-07 15:58:00')`;
const affectedRowNumber = await this._prisma.$executeRawUnsafe(command);
if (affectedRowNumber == 1) {
return this.findOne({
name: territory.name,
});
}
throw new DatabaseException();
}
} }

View File

@ -1,5 +1,6 @@
import { AutoMap } from '@automapper/classes'; import { AutoMap } from '@automapper/classes';
import { IsNotEmpty, IsOptional, IsString } from 'class-validator'; import { IsNotEmpty, IsOptional, IsString } from 'class-validator';
import { Geometry } from 'geojson';
export class UpdateTerritoryRequest { export class UpdateTerritoryRequest {
@IsString() @IsString()
@ -15,5 +16,5 @@ export class UpdateTerritoryRequest {
@IsString() @IsString()
@IsOptional() @IsOptional()
@AutoMap() @AutoMap()
shape?: string; shape?: Geometry;
} }

View File

@ -25,7 +25,7 @@ export class CreateTerritoryUseCase {
); );
try { try {
const territory = await this._repository.create(entity); const territory = await this._repository.createTerritory(entity);
this._territoryMessager.publish('create', JSON.stringify(territory)); this._territoryMessager.publish('create', JSON.stringify(territory));
this._loggingMessager.publish( this._loggingMessager.publish(
'territory.create.info', 'territory.create.info',

View File

@ -12,7 +12,20 @@ import { TerritoryProfile } from '../../mappers/territory.profile';
const newTerritoryRequest: CreateTerritoryRequest = { const newTerritoryRequest: CreateTerritoryRequest = {
name: 'Grand Est', name: 'Grand Est',
shape: 'grand-est-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}; };
const newTerritoryCommand: CreateTerritoryCommand = new CreateTerritoryCommand( const newTerritoryCommand: CreateTerritoryCommand = new CreateTerritoryCommand(
newTerritoryRequest, newTerritoryRequest,

View File

@ -9,17 +9,56 @@ const mockTerritories = [
{ {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a91', uuid: 'bb281075-1b98-4456-89d6-c643d3044a91',
name: 'Grand Est', name: 'Grand Est',
shape: 'grand-est-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}, },
{ {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a92', uuid: 'bb281075-1b98-4456-89d6-c643d3044a92',
name: 'Nouvelle Aquitaine', name: 'Nouvelle Aquitaine',
shape: 'nouvelle-aquitaine-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}, },
{ {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a93', uuid: 'bb281075-1b98-4456-89d6-c643d3044a93',
name: 'Occitanie', name: 'Occitanie',
shape: 'occitanie-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}, },
]; ];

View File

@ -16,17 +16,56 @@ const mockTerritories = [
{ {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a91', uuid: 'bb281075-1b98-4456-89d6-c643d3044a91',
name: 'Grand Est', name: 'Grand Est',
shape: 'grand-est-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}, },
{ {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a92', uuid: 'bb281075-1b98-4456-89d6-c643d3044a92',
name: 'Nouvelle Aquitaine', name: 'Nouvelle Aquitaine',
shape: 'nouvelle-aquitaine-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}, },
{ {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a93', uuid: 'bb281075-1b98-4456-89d6-c643d3044a93',
name: 'Occitanie', name: 'Occitanie',
shape: 'occitanie-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}, },
]; ];

View File

@ -9,7 +9,20 @@ import { FindTerritoryByUuidQuery } from '../../queries/find-territory-by-uuid.q
const mockTerritory = { const mockTerritory = {
uuid: 'bb281075-1b98-4456-89d6-c643d3044a91', uuid: 'bb281075-1b98-4456-89d6-c643d3044a91',
name: 'Grand Est', name: 'Grand Est',
shape: 'grand-est-binary-shape', shape: {
type: 'MultiPolygon',
coordinates: [
[
[
[838383.2, 6570485.8],
[838483.8, 6570697.7],
[838688.1, 6571298.4],
[838809.5, 6571599.9],
[838383.2, 6570485.8],
],
],
],
},
}; };
const mockTerritoriesRepository = { const mockTerritoriesRepository = {