@@ -1,9 +1,8 @@
|
||||
import { IsEmail, IsNotEmpty, IsOptional, IsPhoneNumber, IsString } from 'class-validator';
|
||||
import { IsEmail, IsInt, IsNotEmpty, IsOptional, IsPhoneNumber, IsString } from 'class-validator';
|
||||
import { getConnectionManager } from 'typeorm';
|
||||
import { AddressNotFoundError, AddressWrongTypeError } from '../../errors/AddressErrors';
|
||||
import { Address } from '../entities/Address';
|
||||
import { GroupContact } from '../entities/GroupContact';
|
||||
import { CreateAddress } from './CreateAddress';
|
||||
|
||||
export class CreateGroupContact {
|
||||
/**
|
||||
@@ -32,8 +31,9 @@ export class CreateGroupContact {
|
||||
* The contact's address.
|
||||
* Optional
|
||||
*/
|
||||
@IsInt()
|
||||
@IsOptional()
|
||||
address?: Address | CreateAddress | number;
|
||||
address?: number;
|
||||
|
||||
/**
|
||||
* The contact's phone number.
|
||||
@@ -58,12 +58,6 @@ export class CreateGroupContact {
|
||||
if (this.address === undefined) {
|
||||
return null;
|
||||
}
|
||||
if (this.address! instanceof Address) {
|
||||
return this.address;
|
||||
}
|
||||
if (this.address! instanceof CreateAddress) {
|
||||
return this.address.toAddress();
|
||||
}
|
||||
if (!isNaN(this.address)) {
|
||||
let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address });
|
||||
if (!address) { throw new AddressNotFoundError; }
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import { IsEmail, IsNotEmpty, IsObject, IsOptional, IsPhoneNumber, IsString } from 'class-validator';
|
||||
import { IsEmail, IsInt, IsNotEmpty, IsOptional, IsPhoneNumber, IsString } from 'class-validator';
|
||||
import { getConnectionManager } from 'typeorm';
|
||||
import { AddressNotFoundError, AddressWrongTypeError } from '../../errors/AddressErrors';
|
||||
import { Address } from '../entities/Address';
|
||||
import { CreateAddress } from './CreateAddress';
|
||||
|
||||
export abstract class CreateParticipant {
|
||||
/**
|
||||
@@ -50,8 +49,9 @@ export abstract class CreateParticipant {
|
||||
* Must be of type number (address id), createAddress (new address) or address (existing address)
|
||||
* Optional.
|
||||
*/
|
||||
@IsObject()
|
||||
address?: number | CreateAddress | Address;
|
||||
@IsInt()
|
||||
@IsOptional()
|
||||
address?: number;
|
||||
|
||||
/**
|
||||
* Get's this participant's address from this.address.
|
||||
@@ -60,12 +60,6 @@ export abstract class CreateParticipant {
|
||||
if (this.address === undefined) {
|
||||
return null;
|
||||
}
|
||||
if (this.address! instanceof Address) {
|
||||
return this.address;
|
||||
}
|
||||
if (this.address! instanceof CreateAddress) {
|
||||
return this.address.toAddress();
|
||||
}
|
||||
if (!isNaN(this.address)) {
|
||||
let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address });
|
||||
if (!address) { throw new AddressNotFoundError; }
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { IsInt, IsOptional } from 'class-validator';
|
||||
import { IsInt } from 'class-validator';
|
||||
import { getConnectionManager } from 'typeorm';
|
||||
import { RunnerGroupNeededError, RunnerGroupNotFoundError, RunnerOnlyOneGroupAllowedError } from '../../errors/RunnerErrors';
|
||||
import { RunnerGroupNotFoundError } from '../../errors/RunnerErrors';
|
||||
import { RunnerOrganisationWrongTypeError } from '../../errors/RunnerOrganisationErrors';
|
||||
import { RunnerTeamNeedsParentError } from '../../errors/RunnerTeamErrors';
|
||||
import { Runner } from '../entities/Runner';
|
||||
import { RunnerGroup } from '../entities/RunnerGroup';
|
||||
import { RunnerOrganisation } from '../entities/RunnerOrganisation';
|
||||
import { RunnerTeam } from '../entities/RunnerTeam';
|
||||
import { CreateParticipant } from './CreateParticipant';
|
||||
|
||||
export class CreateRunner extends CreateParticipant {
|
||||
@@ -14,16 +14,7 @@ export class CreateRunner extends CreateParticipant {
|
||||
* Either provide this or his organisation's id.
|
||||
*/
|
||||
@IsInt()
|
||||
@IsOptional()
|
||||
teamId?: number;
|
||||
|
||||
/**
|
||||
* The new runner's organisation's id.
|
||||
* Either provide this or his teams's id.
|
||||
*/
|
||||
@IsInt()
|
||||
@IsOptional()
|
||||
orgId?: number;
|
||||
group: number;
|
||||
|
||||
/**
|
||||
* Creates a Runner entity from this.
|
||||
@@ -46,23 +37,15 @@ export class CreateRunner extends CreateParticipant {
|
||||
* Manages all the different ways a group can be provided.
|
||||
*/
|
||||
public async getGroup(): Promise<RunnerGroup> {
|
||||
let group: RunnerGroup;
|
||||
if (this.teamId !== undefined && this.orgId !== undefined) {
|
||||
throw new RunnerOnlyOneGroupAllowedError();
|
||||
if (this.group === undefined) {
|
||||
throw new RunnerTeamNeedsParentError();
|
||||
}
|
||||
if (this.teamId === undefined && this.orgId === undefined) {
|
||||
throw new RunnerGroupNeededError();
|
||||
if (!isNaN(this.group)) {
|
||||
let group = await getConnectionManager().get().getRepository(RunnerGroup).findOne({ id: this.group });
|
||||
if (!group) { throw new RunnerGroupNotFoundError; }
|
||||
return group;
|
||||
}
|
||||
|
||||
if (this.teamId) {
|
||||
group = await getConnectionManager().get().getRepository(RunnerTeam).findOne({ id: this.teamId });
|
||||
}
|
||||
if (this.orgId) {
|
||||
group = await getConnectionManager().get().getRepository(RunnerOrganisation).findOne({ id: this.orgId });
|
||||
}
|
||||
if (!group) {
|
||||
throw new RunnerGroupNotFoundError();
|
||||
}
|
||||
return group;
|
||||
throw new RunnerOrganisationWrongTypeError;
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,7 @@
|
||||
import { IsNotEmpty, IsObject, IsOptional, IsString } from 'class-validator';
|
||||
import { IsInt, IsNotEmpty, IsOptional, IsString } from 'class-validator';
|
||||
import { getConnectionManager } from 'typeorm';
|
||||
import { GroupContactNotFoundError, GroupContactWrongTypeError } from '../../errors/GroupContactErrors';
|
||||
import { GroupContact } from '../entities/GroupContact';
|
||||
import { CreateGroupContact } from './CreateGroupContact';
|
||||
|
||||
export abstract class CreateRunnerGroup {
|
||||
/**
|
||||
@@ -16,9 +15,9 @@ export abstract class CreateRunnerGroup {
|
||||
* The group's contact.
|
||||
* Optional
|
||||
*/
|
||||
@IsObject()
|
||||
@IsInt()
|
||||
@IsOptional()
|
||||
contact?: number | CreateGroupContact | GroupContact;
|
||||
contact?: number;
|
||||
|
||||
/**
|
||||
* Deals with the contact for groups this.
|
||||
@@ -27,12 +26,6 @@ export abstract class CreateRunnerGroup {
|
||||
if (this.contact === undefined) {
|
||||
return null;
|
||||
}
|
||||
if (this.contact! instanceof GroupContact) {
|
||||
return this.contact;
|
||||
}
|
||||
if (this.contact! instanceof CreateGroupContact) {
|
||||
return this.contact.toGroupContact();
|
||||
}
|
||||
if (!isNaN(this.contact)) {
|
||||
let address = await getConnectionManager().get().getRepository(GroupContact).findOne({ id: this.contact });
|
||||
if (!address) { throw new GroupContactNotFoundError; }
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import { IsObject } from 'class-validator';
|
||||
import { IsInt, IsOptional } from 'class-validator';
|
||||
import { getConnectionManager } from 'typeorm';
|
||||
import { AddressNotFoundError, AddressWrongTypeError } from '../../errors/AddressErrors';
|
||||
import { Address } from '../entities/Address';
|
||||
import { RunnerOrganisation } from '../entities/RunnerOrganisation';
|
||||
import { CreateAddress } from './CreateAddress';
|
||||
import { CreateRunnerGroup } from './CreateRunnerGroup';
|
||||
|
||||
export class CreateRunnerOrganisation extends CreateRunnerGroup {
|
||||
@@ -12,8 +11,9 @@ export class CreateRunnerOrganisation extends CreateRunnerGroup {
|
||||
* Must be of type number (address id), createAddress (new address) or address (existing address)
|
||||
* Optional.
|
||||
*/
|
||||
@IsObject()
|
||||
address?: number | CreateAddress | Address;
|
||||
@IsInt()
|
||||
@IsOptional()
|
||||
address?: number;
|
||||
|
||||
/**
|
||||
* Creates a Participant entity from this.
|
||||
@@ -22,12 +22,6 @@ export class CreateRunnerOrganisation extends CreateRunnerGroup {
|
||||
if (this.address === undefined) {
|
||||
return null;
|
||||
}
|
||||
if (this.address! instanceof Address) {
|
||||
return this.address;
|
||||
}
|
||||
if (this.address! instanceof CreateAddress) {
|
||||
return this.address.toAddress();
|
||||
}
|
||||
if (!isNaN(this.address)) {
|
||||
let address = await getConnectionManager().get().getRepository(Address).findOne({ id: this.address });
|
||||
if (!address) { throw new AddressNotFoundError; }
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { IsNotEmpty } from 'class-validator';
|
||||
import { IsInt, IsNotEmpty } from 'class-validator';
|
||||
import { getConnectionManager } from 'typeorm';
|
||||
import { RunnerOrganisationNotFoundError, RunnerOrganisationWrongTypeError } from '../../errors/RunnerOrganisationErrors';
|
||||
import { RunnerTeamNeedsParentError } from '../../errors/RunnerTeamErrors';
|
||||
@@ -11,22 +11,19 @@ export class CreateRunnerTeam extends CreateRunnerGroup {
|
||||
/**
|
||||
* The team's parent group (organisation).
|
||||
*/
|
||||
@IsInt()
|
||||
@IsNotEmpty()
|
||||
parentGroup: number | RunnerOrganisation
|
||||
parentGroup: number;
|
||||
|
||||
public async getParent(): Promise<RunnerOrganisation> {
|
||||
if (this.parentGroup === undefined) {
|
||||
throw new RunnerTeamNeedsParentError();
|
||||
}
|
||||
if (this.parentGroup! instanceof RunnerOrganisation) {
|
||||
return this.parentGroup;
|
||||
}
|
||||
if (!isNaN(this.parentGroup)) {
|
||||
let parentGroup = await getConnectionManager().get().getRepository(RunnerOrganisation).findOne({ id: this.parentGroup });
|
||||
if (!parentGroup) { throw new RunnerOrganisationNotFoundError();; }
|
||||
return parentGroup;
|
||||
}
|
||||
console.log(this.parentGroup);
|
||||
|
||||
throw new RunnerOrganisationWrongTypeError;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user