Files
gridpilot.gg/core/racing/domain/value-objects/ImageUrl.ts
2025-12-17 01:23:09 +01:00

31 lines
810 B
TypeScript

import { RacingDomainValidationError } from '../errors/RacingDomainError';
import type { IValueObject } from '@core/shared/domain';
export class ImageUrl implements IValueObject<string> {
private constructor(private readonly value: string) {}
static create(value: string): ImageUrl {
if (!value || value.trim().length === 0) {
throw new RacingDomainValidationError('Image URL cannot be empty');
}
// Basic URL validation
try {
new URL(value);
} catch {
throw new RacingDomainValidationError('Invalid image URL format');
}
return new ImageUrl(value.trim());
}
toString(): string {
return this.value;
}
equals(other: IValueObject<string>): boolean {
return this.props === other.props;
}
get props(): string {
return this.value;
}
}