- Added `ticket_generation_policy` column to `catalog_items` table to manage ticket generation strategies. - Created `ticket_validity_times` table to allow multiple validity times per ticket. - Introduced `validity_time_id` column in `event_dates` table to associate event dates with validity times. - Established `ticket_validity_groups` and `ticket_validity_group_times` tables to group validity times for tickets. - Updated seeder to set default ticket generation policy for specific tenant. - Enhanced tests to cover new functionality, including ticket generation based on event dates and validity times. - Refactored ticket validity checks to accommodate multiple validity times in a group.
113 lines
3.0 KiB
PHP
113 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Ticket\Models;
|
|
|
|
use App\Domains\Catalog\Models\AttributeOption;
|
|
use App\Domains\Catalog\Models\CatalogItem;
|
|
use App\Domains\Event\Models\EventDate;
|
|
use App\Domains\Ticket\Enums\ValidityTimeType;
|
|
use Carbon\CarbonImmutable;
|
|
use Carbon\CarbonInterface;
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
|
|
#[Fillable([
|
|
'type',
|
|
'start_time',
|
|
'end_time',
|
|
'fixed_starts_at',
|
|
'fixed_expires_at',
|
|
])]
|
|
class ValidityTime extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'type' => ValidityTimeType::class,
|
|
'fixed_starts_at' => 'datetime',
|
|
'fixed_expires_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
/** @return HasMany<CatalogItem, $this> */
|
|
public function catalogItems(): HasMany
|
|
{
|
|
return $this->hasMany(CatalogItem::class);
|
|
}
|
|
|
|
/** @return HasMany<AttributeOption, $this> */
|
|
public function attributeOptions(): HasMany
|
|
{
|
|
return $this->hasMany(AttributeOption::class);
|
|
}
|
|
|
|
/** @return HasOne<EventDate, $this> */
|
|
public function eventDate(): HasOne
|
|
{
|
|
return $this->hasOne(EventDate::class);
|
|
}
|
|
|
|
/** @return BelongsToMany<TicketValidityGroup, $this> */
|
|
public function ticketValidityGroups(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(
|
|
TicketValidityGroup::class,
|
|
'ticket_validity_group_times',
|
|
'validity_time_id',
|
|
'ticket_validity_group_id',
|
|
);
|
|
}
|
|
|
|
public function startsAt(
|
|
?CarbonInterface $at = null,
|
|
): ?CarbonInterface {
|
|
if ($this->type === ValidityTimeType::FixedWindow) {
|
|
return $this->fixed_starts_at;
|
|
}
|
|
|
|
return $this->atCurrentDate($this->start_time, $at);
|
|
}
|
|
|
|
public function expiresAt(
|
|
?CarbonInterface $at = null,
|
|
): ?CarbonInterface {
|
|
if ($this->type === ValidityTimeType::FixedWindow) {
|
|
return $this->fixed_expires_at;
|
|
}
|
|
|
|
return $this->atCurrentDate($this->end_time, $at);
|
|
}
|
|
|
|
public function isValid(
|
|
?CarbonInterface $at = null,
|
|
): bool {
|
|
$at ??= now();
|
|
$startsAt = $this->startsAt($at);
|
|
$expiresAt = $this->expiresAt($at);
|
|
|
|
return ($startsAt === null || $startsAt->lessThanOrEqualTo($at))
|
|
&& ($expiresAt === null || $expiresAt->greaterThan($at));
|
|
}
|
|
|
|
private function atCurrentDate(
|
|
?string $time,
|
|
?CarbonInterface $at,
|
|
): ?CarbonInterface {
|
|
if ($time === null) {
|
|
return null;
|
|
}
|
|
|
|
$at ??= now();
|
|
$localDate = CarbonImmutable::instance($at)
|
|
->format('Y-m-d');
|
|
|
|
return CarbonImmutable::parse($localDate.' '.$time);
|
|
}
|
|
}
|