2021-03-05 11:18:28 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-03-05 11:18:28 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2021-04-08 01:21:09 +02:00
|
|
|
use App\Models\RecurringInvoice;
|
2021-03-25 11:55:59 +01:00
|
|
|
use App\Services\Subscription\SubscriptionService;
|
2021-03-05 11:18:28 +01:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2021-03-08 15:18:34 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2021-03-05 11:18:28 +01:00
|
|
|
|
2021-03-25 11:55:59 +01:00
|
|
|
class Subscription extends BaseModel
|
2021-03-05 11:18:28 +01:00
|
|
|
{
|
2021-03-08 15:18:34 +01:00
|
|
|
use HasFactory, SoftDeletes;
|
|
|
|
|
2021-04-04 14:14:33 +02:00
|
|
|
protected $hidden = [
|
|
|
|
'id',
|
|
|
|
'user_id',
|
|
|
|
'assigned_user_id',
|
|
|
|
'company_id',
|
|
|
|
'product_ids',
|
|
|
|
'recurring_product_ids',
|
|
|
|
'group_id',
|
|
|
|
];
|
|
|
|
|
2021-03-08 15:18:34 +01:00
|
|
|
protected $fillable = [
|
2021-04-01 11:33:50 +02:00
|
|
|
'assigned_user_id',
|
2021-03-25 20:42:25 +01:00
|
|
|
'product_ids',
|
|
|
|
'recurring_product_ids',
|
2021-03-08 15:18:34 +01:00
|
|
|
'frequency_id',
|
|
|
|
'auto_bill',
|
|
|
|
'promo_code',
|
|
|
|
'promo_discount',
|
|
|
|
'is_amount_discount',
|
|
|
|
'allow_cancellation',
|
2021-03-31 22:04:53 +02:00
|
|
|
'per_seat_enabled',
|
2021-03-08 15:18:34 +01:00
|
|
|
'max_seats_limit',
|
|
|
|
'trial_enabled',
|
|
|
|
'trial_duration',
|
|
|
|
'allow_query_overrides',
|
|
|
|
'allow_plan_changes',
|
|
|
|
'refund_period',
|
|
|
|
'webhook_configuration',
|
2021-03-09 14:24:31 +01:00
|
|
|
'currency_id',
|
2021-03-25 20:42:25 +01:00
|
|
|
'group_id',
|
2021-03-26 21:28:56 +01:00
|
|
|
'price',
|
2021-03-27 22:45:46 +01:00
|
|
|
'name',
|
2021-04-02 00:09:01 +02:00
|
|
|
'currency_id',
|
2021-03-08 15:18:34 +01:00
|
|
|
];
|
|
|
|
|
2021-03-08 22:29:59 +01:00
|
|
|
protected $casts = [
|
|
|
|
'is_deleted' => 'boolean',
|
2021-03-30 11:41:58 +02:00
|
|
|
'webhook_configuration' => 'array',
|
2021-03-08 22:29:59 +01:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
|
|
|
];
|
|
|
|
|
2021-10-08 07:03:26 +02:00
|
|
|
protected $with = [
|
|
|
|
'company',
|
|
|
|
];
|
|
|
|
|
2021-03-25 16:52:03 +01:00
|
|
|
public function service(): SubscriptionService
|
2021-03-14 22:40:07 +01:00
|
|
|
{
|
2021-03-25 11:55:59 +01:00
|
|
|
return new SubscriptionService($this);
|
2021-03-14 22:40:07 +01:00
|
|
|
}
|
|
|
|
|
2021-03-08 15:18:34 +01:00
|
|
|
public function company(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
{
|
2021-09-08 01:29:20 +02:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2021-03-08 15:18:34 +01:00
|
|
|
}
|
2021-04-08 01:21:09 +02:00
|
|
|
|
|
|
|
public function nextDateByInterval($date, $frequency_id)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch ($frequency_id) {
|
|
|
|
|
|
|
|
case RecurringInvoice::FREQUENCY_DAILY:
|
|
|
|
return $date->addDay();
|
|
|
|
case RecurringInvoice::FREQUENCY_WEEKLY:
|
|
|
|
return $date->addWeek();
|
|
|
|
case RecurringInvoice::FREQUENCY_TWO_WEEKS:
|
|
|
|
return $date->addWeeks(2);
|
|
|
|
case RecurringInvoice::FREQUENCY_FOUR_WEEKS:
|
|
|
|
return $date->addWeeks(4);
|
|
|
|
case RecurringInvoice::FREQUENCY_MONTHLY:
|
|
|
|
return $date->addMonthNoOverflow();
|
|
|
|
case RecurringInvoice::FREQUENCY_TWO_MONTHS:
|
|
|
|
return $date->addMonthsNoOverflow(2);
|
|
|
|
case RecurringInvoice::FREQUENCY_THREE_MONTHS:
|
|
|
|
return $date->addMonthsNoOverflow(3);
|
|
|
|
case RecurringInvoice::FREQUENCY_FOUR_MONTHS:
|
|
|
|
return $date->addMonthsNoOverflow(4);
|
|
|
|
case RecurringInvoice::FREQUENCY_SIX_MONTHS:
|
|
|
|
return $date->addMonthsNoOverflow(6);
|
|
|
|
case RecurringInvoice::FREQUENCY_ANNUALLY:
|
|
|
|
return $date->addYear();
|
|
|
|
case RecurringInvoice::FREQUENCY_TWO_YEARS:
|
|
|
|
return $date->addYears(2);
|
|
|
|
case RecurringInvoice::FREQUENCY_THREE_YEARS:
|
|
|
|
return $date->addYears(3);
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-05 11:18:28 +01:00
|
|
|
}
|