mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
233 lines
5.7 KiB
PHP
233 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon;
|
|
use Eloquent;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Laracasts\Presenter\PresentableTrait;
|
|
use Utils;
|
|
|
|
/**
|
|
* Class Company.
|
|
*/
|
|
class Company extends Eloquent
|
|
{
|
|
use SoftDeletes;
|
|
use PresentableTrait;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $presenter = 'App\Ninja\Presenters\CompanyPresenter';
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'plan',
|
|
'plan_term',
|
|
'plan_price',
|
|
'plan_paid',
|
|
'plan_started',
|
|
'plan_expires',
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $dates = [
|
|
'deleted_at',
|
|
'promo_expires',
|
|
'discount_expires',
|
|
];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function accounts()
|
|
{
|
|
return $this->hasMany('App\Models\Account');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function payment()
|
|
{
|
|
return $this->belongsTo('App\Models\Payment');
|
|
}
|
|
|
|
public function hasActivePromo()
|
|
{
|
|
if ($this->discount_expires) {
|
|
return false;
|
|
}
|
|
|
|
return $this->promo_expires && $this->promo_expires->gte(Carbon::today());
|
|
}
|
|
|
|
// handle promos and discounts
|
|
public function hasActiveDiscount(Carbon $date = null)
|
|
{
|
|
if (! $this->discount || ! $this->discount_expires) {
|
|
return false;
|
|
}
|
|
|
|
$date = $date ?: Carbon::today();
|
|
|
|
if ($this->plan_term == PLAN_TERM_MONTHLY) {
|
|
return $this->discount_expires->gt($date);
|
|
} else {
|
|
return $this->discount_expires->subMonths(11)->gt($date);
|
|
}
|
|
}
|
|
|
|
public function discountedPrice($price)
|
|
{
|
|
if (! $this->hasActivePromo() && ! $this->hasActiveDiscount()) {
|
|
return $price;
|
|
}
|
|
|
|
return $price - ($price * $this->discount);
|
|
}
|
|
|
|
public function daysUntilPlanExpires()
|
|
{
|
|
if (! $this->hasActivePlan()) {
|
|
return 0;
|
|
}
|
|
|
|
return Carbon::parse($this->plan_expires)->diffInDays(Carbon::today());
|
|
}
|
|
|
|
public function hasActivePlan()
|
|
{
|
|
return Carbon::parse($this->plan_expires) >= Carbon::today();
|
|
}
|
|
|
|
public function hasExpiredPlan($plan)
|
|
{
|
|
if ($this->plan != $plan) {
|
|
return false;
|
|
}
|
|
|
|
return Carbon::parse($this->plan_expires) < Carbon::today();
|
|
}
|
|
|
|
public function hasEarnedPromo()
|
|
{
|
|
if (! Utils::isNinjaProd() || Utils::isPro()) {
|
|
return false;
|
|
}
|
|
|
|
// if they've already been pro return false
|
|
if ($this->plan_expires && $this->plan_expires != '0000-00-00') {
|
|
return false;
|
|
}
|
|
|
|
// if they've already been pro return false
|
|
if ($this->plan_expires && $this->plan_expires != '0000-00-00') {
|
|
return false;
|
|
}
|
|
|
|
// if they've already had a discount or a promotion is active return false
|
|
if ($this->discount_expires || $this->hasActivePromo()) {
|
|
return false;
|
|
}
|
|
|
|
$discounts = [
|
|
52 => [.6, 3],
|
|
16 => [.4, 3],
|
|
10 => [.25, 5],
|
|
];
|
|
|
|
foreach ($discounts as $weeks => $promo) {
|
|
list($discount, $validFor) = $promo;
|
|
$difference = $this->created_at->diffInWeeks();
|
|
if ($difference >= $weeks && $discount > $this->discount) {
|
|
$this->discount = $discount;
|
|
$this->promo_expires = date_create()->modify($validFor . ' days')->format('Y-m-d');
|
|
$this->save();
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function getPlanDetails($includeInactive = false, $includeTrial = true)
|
|
{
|
|
$account = $this->accounts()->first();
|
|
|
|
if (! $account) {
|
|
return false;
|
|
}
|
|
|
|
return $account->getPlanDetails($includeInactive, $includeTrial);
|
|
}
|
|
|
|
public function processRefund($user)
|
|
{
|
|
if (! $this->payment) {
|
|
return false;
|
|
}
|
|
|
|
$account = $this->accounts()->first();
|
|
$planDetails = $account->getPlanDetails(false, false);
|
|
|
|
if (! empty($planDetails['started'])) {
|
|
$deadline = clone $planDetails['started'];
|
|
$deadline->modify('+30 days');
|
|
|
|
if ($deadline >= date_create()) {
|
|
$accountRepo = app('App\Ninja\Repositories\AccountRepository');
|
|
$ninjaAccount = $accountRepo->getNinjaAccount();
|
|
$paymentDriver = $ninjaAccount->paymentDriver();
|
|
$paymentDriver->refundPayment($this->payment);
|
|
|
|
\Log::info("Refunded Plan Payment: {$account->name} - {$user->email} - Deadline: {$deadline->format('Y-m-d')}");
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function applyDiscount($amount)
|
|
{
|
|
$this->discount = $amount;
|
|
$this->promo_expires = date_create()->modify('3 days')->format('Y-m-d');
|
|
}
|
|
|
|
public function applyFreeYear()
|
|
{
|
|
if ($this->plan_started && $this->plan_started != '0000-00-00') {
|
|
return;
|
|
}
|
|
|
|
$this->plan = PLAN_PRO;
|
|
$this->plan_term = PLAN_TERM_YEARLY;
|
|
$this->plan_price = PLAN_PRICE_PRO_MONTHLY;
|
|
$this->plan_started = date_create()->format('Y-m-d');
|
|
$this->plan_paid = date_create()->format('Y-m-d');
|
|
$this->plan_expires = date_create()->modify('1 year')->format('Y-m-d');
|
|
}
|
|
}
|
|
|
|
Company::deleted(function ($company)
|
|
{
|
|
if (! env('MULTI_DB_ENABLED')) {
|
|
return;
|
|
}
|
|
|
|
$server = \App\Models\DbServer::whereName(config('database.default'))->firstOrFail();
|
|
|
|
LookupCompany::deleteWhere([
|
|
'company_id' => $company->id,
|
|
'db_server_id' => $server->id,
|
|
]);
|
|
});
|