2020-03-07 23:15:11 +01:00
|
|
|
<?php
|
2020-04-30 13:45:47 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-30 13:45:47 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-30 13:45:47 +02:00
|
|
|
*/
|
2020-03-07 23:15:11 +01:00
|
|
|
|
|
|
|
namespace App\Jobs\Util;
|
|
|
|
|
2020-03-08 06:59:06 +01:00
|
|
|
use App\Models\Account;
|
2021-04-20 14:45:35 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-03-07 23:15:11 +01:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2021-07-11 06:54:57 +02:00
|
|
|
use Carbon\Carbon;
|
2020-03-07 23:15:11 +01:00
|
|
|
|
|
|
|
class VersionCheck implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2020-10-26 21:46:06 +01:00
|
|
|
$version_file = trim(file_get_contents(config('ninja.version_url')));
|
2020-03-07 23:15:11 +01:00
|
|
|
|
2020-07-06 00:28:19 +02:00
|
|
|
info("latest version = {$version_file}");
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($version_file) {
|
2020-03-08 06:59:06 +01:00
|
|
|
Account::whereNotNull('id')->update(['latest_version' => $version_file]);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2021-04-20 14:45:35 +02:00
|
|
|
|
|
|
|
if(Ninja::isSelfHost())
|
|
|
|
{
|
|
|
|
$account = Account::first();
|
|
|
|
|
2021-05-01 02:48:36 +02:00
|
|
|
if(!$account)
|
|
|
|
return;
|
|
|
|
|
2021-07-11 06:54:57 +02:00
|
|
|
if($account->plan == 'white_label' && $account->plan_expires && Carbon::parse($account->plan_expires)->lt(now())){
|
2021-04-20 14:45:35 +02:00
|
|
|
$account->plan = null;
|
|
|
|
$account->plan_expires = null;
|
|
|
|
$account->save();
|
|
|
|
}
|
|
|
|
}
|
2020-03-07 23:15:11 +01:00
|
|
|
}
|
|
|
|
}
|