2022-09-21 21:50:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
|
|
use App\Facades\Settings;
|
2022-10-12 11:10:51 +02:00
|
|
|
use App\Helpers\Helpers;
|
2022-09-21 21:50:41 +02:00
|
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
|
|
|
|
class ReleaseRadarService
|
|
|
|
{
|
|
|
|
/**
|
2022-10-12 11:10:51 +02:00
|
|
|
* Run a scheduled release scan
|
2022-09-21 21:50:41 +02:00
|
|
|
*
|
2022-10-12 11:10:51 +02:00
|
|
|
* @return void
|
2022-09-21 21:50:41 +02:00
|
|
|
*/
|
2022-10-12 11:10:51 +02:00
|
|
|
public function scheduledScan() : void
|
2022-09-21 21:50:41 +02:00
|
|
|
{
|
2022-10-12 11:10:51 +02:00
|
|
|
if ((Settings::get('lastRadarScan') + 604800) < time()) {
|
|
|
|
$this->newRelease();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run a manual release scan
|
|
|
|
*
|
|
|
|
* @return false|string False if no new release, the new release number otherwise
|
|
|
|
*/
|
|
|
|
public function manualScan() : false|string
|
|
|
|
{
|
|
|
|
return $this->newRelease();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run a release scan
|
|
|
|
*
|
|
|
|
* @return false|string False if no new release, the new release number otherwise
|
|
|
|
*/
|
|
|
|
protected function newRelease() : false|string
|
|
|
|
{
|
|
|
|
if ($latestReleaseData = json_decode($this->getLatestReleaseData()))
|
|
|
|
{
|
|
|
|
$githubVersion = Helpers::cleanVersionNumber($latestReleaseData->tag_name);
|
|
|
|
$installedVersion = Helpers::cleanVersionNumber(config('2fauth.version'));
|
|
|
|
|
|
|
|
if ($githubVersion > $installedVersion && $latestReleaseData->prerelease == false && $latestReleaseData->draft == false) {
|
|
|
|
Settings::set('latestRelease', $latestReleaseData->tag_name);
|
|
|
|
|
|
|
|
return $latestReleaseData->tag_name;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Settings::delete('latestRelease');
|
2022-09-21 21:50:41 +02:00
|
|
|
}
|
|
|
|
|
2022-10-12 11:10:51 +02:00
|
|
|
Settings::set('lastRadarScan', time());
|
|
|
|
}
|
2022-09-21 21:50:41 +02:00
|
|
|
|
2022-10-12 11:10:51 +02:00
|
|
|
return false;
|
2022-09-21 21:50:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch releases on Github
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
2022-10-12 11:10:51 +02:00
|
|
|
protected function getLatestReleaseData() : string|null
|
2022-09-21 21:50:41 +02:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
$response = Http::retry(3, 100)
|
|
|
|
->get(config('2fauth.latestReleaseUrl'));
|
|
|
|
|
|
|
|
if ($response->successful()) {
|
|
|
|
return $response->body();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (\Exception $exception) {
|
|
|
|
Log::error('cannot reach latestReleaseUrl endpoint');
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|