1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Subscription.php

121 lines
3.4 KiB
PHP
Raw Normal View History

2021-03-05 11:18:28 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2021-03-05 11:18:28 +01:00
*
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;
use App\Services\Subscription\SubscriptionService;
2021-03-05 11:18:28 +01:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
2021-03-05 11:18:28 +01:00
class Subscription extends BaseModel
2021-03-05 11:18:28 +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',
];
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',
'frequency_id',
'auto_bill',
'promo_code',
'promo_discount',
'is_amount_discount',
'allow_cancellation',
2021-03-31 22:04:53 +02:00
'per_seat_enabled',
'max_seats_limit',
'trial_enabled',
'trial_duration',
'allow_query_overrides',
'allow_plan_changes',
'refund_period',
'webhook_configuration',
'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 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',
];
public function service(): SubscriptionService
2021-03-14 22:40:07 +01:00
{
return new SubscriptionService($this);
2021-03-14 22:40:07 +01:00
}
public function company(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(Company::class);
}
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(User::class)->withTrashed();
}
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
}