Implemented deep address validation

ref #105
This commit is contained in:
2021-01-16 20:12:17 +01:00
parent f245840cde
commit 9dc9ce37d8
9 changed files with 83 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ export class UpdateDonor extends CreateParticipant {
donor.email = this.email;
donor.receiptNeeded = this.receiptNeeded;
donor.address = this.address;
Address.validate(donor.address);
if (this.receiptNeeded == true && Address.isValidAddress(donor.address) == false) {
throw new DonorReceiptAddressNeededError()
}

View File

@@ -2,6 +2,7 @@ import { IsInt, IsPositive } from 'class-validator';
import { getConnectionManager } from 'typeorm';
import { RunnerGroupNotFoundError } from '../../../errors/RunnerGroupErrors';
import { RunnerTeamNeedsParentError } from '../../../errors/RunnerTeamErrors';
import { Address } from '../../entities/Address';
import { Runner } from '../../entities/Runner';
import { RunnerGroup } from '../../entities/RunnerGroup';
import { CreateParticipant } from '../create/CreateParticipant';
@@ -36,6 +37,7 @@ export class UpdateRunner extends CreateParticipant {
runner.email = this.email;
runner.group = await this.getGroup();
runner.address = this.address;
Address.validate(runner.address);
return runner;
}

View File

@@ -30,6 +30,7 @@ export class UpdateRunnerOrganisation extends CreateRunnerGroup {
organisation.name = this.name;
organisation.contact = await this.getContact();
organisation.address = this.address;
Address.validate(organisation.address);
return organisation;
}