2021-03-08 15:19:45 +01:00
|
|
|
<?php
|
2021-03-10 01:08:58 +01:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2021-03-08 15:19:45 +01:00
|
|
|
|
2021-03-25 11:55:59 +01:00
|
|
|
namespace App\Http\Requests\Subscription;
|
2021-03-08 15:19:45 +01:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2021-03-25 11:55:59 +01:00
|
|
|
use App\Models\Subscription;
|
2021-03-08 15:19:45 +01:00
|
|
|
|
2021-03-25 11:55:59 +01:00
|
|
|
class StoreSubscriptionRequest extends Request
|
2021-03-08 15:19:45 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2021-03-25 11:55:59 +01:00
|
|
|
return auth()->user()->can('create', Subscription::class);
|
2021-03-08 15:19:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'user_id' => ['sometimes'],
|
|
|
|
'product_id' => ['sometimes'],
|
|
|
|
'assigned_user_id' => ['sometimes'],
|
|
|
|
'company_id' => ['sometimes'],
|
|
|
|
'is_recurring' => ['sometimes'],
|
|
|
|
'frequency_id' => ['sometimes'],
|
|
|
|
'auto_bill' => ['sometimes'],
|
|
|
|
'promo_code' => ['sometimes'],
|
|
|
|
'promo_discount' => ['sometimes'],
|
|
|
|
'is_amount_discount' => ['sometimes'],
|
|
|
|
'allow_cancellation' => ['sometimes'],
|
|
|
|
'per_set_enabled' => ['sometimes'],
|
|
|
|
'min_seats_limit' => ['sometimes'],
|
|
|
|
'max_seats_limit' => ['sometimes'],
|
|
|
|
'trial_enabled' => ['sometimes'],
|
|
|
|
'trial_duration' => ['sometimes'],
|
|
|
|
'allow_query_overrides' => ['sometimes'],
|
|
|
|
'allow_plan_changes' => ['sometimes'],
|
|
|
|
'plan_map' => ['sometimes'],
|
|
|
|
'refund_period' => ['sometimes'],
|
|
|
|
'webhook_configuration' => ['sometimes'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|