mirror of
https://gitlab.com/mobicoop/v3/service/territory.git
synced 2026-01-12 02:22:40 +00:00
basic insert
This commit is contained in:
@@ -5,6 +5,7 @@ import { DatabaseException } from '../../exceptions/database.exception';
|
||||
import { ICollection } from '../../interfaces/collection.interface';
|
||||
import { IRepository } from '../../interfaces/repository.interface';
|
||||
import { PrismaService } from './prisma-service';
|
||||
import { Territory } from 'src/modules/territories/domain/entities/territory';
|
||||
|
||||
/**
|
||||
* 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>> {
|
||||
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);
|
||||
return Promise.resolve({
|
||||
data: territories,
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { AutoMap } from '@automapper/classes';
|
||||
import { IsNotEmpty, IsOptional, IsString } from 'class-validator';
|
||||
import { Geometry } from 'geojson';
|
||||
|
||||
export class UpdateTerritoryRequest {
|
||||
@IsString()
|
||||
@@ -15,5 +16,5 @@ export class UpdateTerritoryRequest {
|
||||
@IsString()
|
||||
@IsOptional()
|
||||
@AutoMap()
|
||||
shape?: string;
|
||||
shape?: Geometry;
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ export class CreateTerritoryUseCase {
|
||||
);
|
||||
|
||||
try {
|
||||
const territory = await this._repository.create(entity);
|
||||
const territory = await this._repository.createTerritory(entity);
|
||||
this._territoryMessager.publish('create', JSON.stringify(territory));
|
||||
this._loggingMessager.publish(
|
||||
'territory.create.info',
|
||||
|
||||
@@ -12,7 +12,20 @@ import { TerritoryProfile } from '../../mappers/territory.profile';
|
||||
|
||||
const newTerritoryRequest: CreateTerritoryRequest = {
|
||||
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(
|
||||
newTerritoryRequest,
|
||||
|
||||
@@ -9,17 +9,56 @@ const mockTerritories = [
|
||||
{
|
||||
uuid: 'bb281075-1b98-4456-89d6-c643d3044a91',
|
||||
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',
|
||||
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',
|
||||
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],
|
||||
],
|
||||
],
|
||||
],
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -16,17 +16,56 @@ const mockTerritories = [
|
||||
{
|
||||
uuid: 'bb281075-1b98-4456-89d6-c643d3044a91',
|
||||
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',
|
||||
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',
|
||||
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],
|
||||
],
|
||||
],
|
||||
],
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
@@ -9,7 +9,20 @@ import { FindTerritoryByUuidQuery } from '../../queries/find-territory-by-uuid.q
|
||||
const mockTerritory = {
|
||||
uuid: 'bb281075-1b98-4456-89d6-c643d3044a91',
|
||||
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 = {
|
||||
|
||||
Reference in New Issue
Block a user