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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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;
|
2022-06-21 11:57:17 +02:00
|
|
|
use Carbon\Carbon;
|
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;
|
|
|
|
|
|
|
|
class VersionCheck implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2022-07-25 00:00:52 +02:00
|
|
|
$version_file = trim(@file_get_contents(config('ninja.version_url')));
|
2020-03-07 23:15:11 +01:00
|
|
|
|
2022-07-10 02:56:37 +02:00
|
|
|
if (Ninja::isSelfHost() && $version_file) {
|
2023-08-07 07:33:40 +02:00
|
|
|
Account::query()->whereNotNull('id')->update(['latest_version' => $version_file]);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2021-04-20 14:45:35 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (Ninja::isSelfHost()) {
|
2022-11-26 01:09:48 +01:00
|
|
|
nlog("latest version = {$version_file}");
|
|
|
|
|
2023-08-07 07:33:40 +02:00
|
|
|
/** @var \App\Models\Account $account **/
|
2021-04-20 14:45:35 +02:00
|
|
|
$account = Account::first();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $account) {
|
2021-05-01 02:48:36 +02:00
|
|
|
return;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-05-01 02:48:36 +02:00
|
|
|
|
2022-06-21 11:57:17 +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
|
|
|
}
|
|
|
|
}
|