Files
sam-api/app/Models/Tenants/Plan.php

176 lines
4.5 KiB
PHP
Raw Normal View History

<?php
2025-07-29 13:00:25 +09:00
namespace App\Models\Tenants;
use App\Traits\Auditable;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* 요금제 모델
*
* @property int $id
* @property string $name 요금제명
* @property string $code 요금제 코드
* @property string|null $description 설명
* @property float $price 가격
* @property string $billing_cycle 결제 주기
* @property array|null $features 기능 목록
* @property bool $is_active 활성 여부
*
* @mixin IdeHelperPlan
*/
class Plan extends Model
{
use Auditable, SoftDeletes;
// =========================================================================
// 상수 정의
// =========================================================================
/** 결제 주기 */
public const BILLING_MONTHLY = 'monthly';
public const BILLING_YEARLY = 'yearly';
public const BILLING_LIFETIME = 'lifetime';
public const BILLING_CYCLES = [
self::BILLING_MONTHLY,
self::BILLING_YEARLY,
self::BILLING_LIFETIME,
];
/** 결제 주기 라벨 */
public const BILLING_CYCLE_LABELS = [
self::BILLING_MONTHLY => '월간',
self::BILLING_YEARLY => '연간',
self::BILLING_LIFETIME => '평생',
];
// =========================================================================
// 모델 설정
// =========================================================================
protected $fillable = [
'name',
'code',
'description',
'price',
'billing_cycle',
'features',
'is_active',
'created_by',
'updated_by',
'deleted_by',
];
protected $casts = [
'features' => 'array',
'is_active' => 'boolean',
'price' => 'float',
];
protected $attributes = [
'is_active' => true,
'billing_cycle' => self::BILLING_MONTHLY,
];
// =========================================================================
// 스코프
// =========================================================================
/**
* 활성 요금제만
*/
public function scopeActive(Builder $query): Builder
{
return $query->where('is_active', true);
}
/**
* 결제 주기별 필터
*/
public function scopeOfCycle(Builder $query, string $cycle): Builder
{
return $query->where('billing_cycle', $cycle);
}
// =========================================================================
// 관계
// =========================================================================
public function subscriptions(): HasMany
{
return $this->hasMany(Subscription::class);
}
// =========================================================================
// 접근자
// =========================================================================
/**
* 결제 주기 라벨
*/
public function getBillingCycleLabelAttribute(): string
{
return self::BILLING_CYCLE_LABELS[$this->billing_cycle] ?? $this->billing_cycle;
}
/**
* 포맷된 가격
*/
public function getFormattedPriceAttribute(): string
{
return number_format($this->price).'원';
}
/**
* 활성 구독
*/
public function getActiveSubscriptionCountAttribute(): int
{
return $this->subscriptions()
->where('status', Subscription::STATUS_ACTIVE)
->count();
}
// =========================================================================
// 헬퍼 메서드
// =========================================================================
/**
* 환산 가격 계산
*/
public function getMonthlyPrice(): float
{
return match ($this->billing_cycle) {
self::BILLING_YEARLY => round($this->price / 12, 2),
self::BILLING_LIFETIME => 0,
default => $this->price,
};
}
/**
* 환산 가격 계산
*/
public function getYearlyPrice(): float
{
return match ($this->billing_cycle) {
self::BILLING_MONTHLY => $this->price * 12,
self::BILLING_LIFETIME => 0,
default => $this->price,
};
}
/**
* 특정 기능 포함 여부
*/
public function hasFeature(string $feature): bool
{
return in_array($feature, $this->features ?? [], true);
}
}