mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
33 lines
828 B
PHP
33 lines
828 B
PHP
<?php
|
|
|
|
namespace InvoiceShelf\Http\Controllers\V1\Admin\Update;
|
|
|
|
use Illuminate\Http\Request;
|
|
use InvoiceShelf\Http\Controllers\Controller;
|
|
use InvoiceShelf\Models\Setting;
|
|
use InvoiceShelf\Space\Updater;
|
|
|
|
class CheckVersionController extends Controller
|
|
{
|
|
/**
|
|
* Handle the incoming request.
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function __invoke(Request $request)
|
|
{
|
|
if ((! $request->user()) || (! $request->user()->isOwner())) {
|
|
return response()->json([
|
|
'success' => false,
|
|
'message' => 'You are not allowed to update this app.',
|
|
], 401);
|
|
}
|
|
|
|
set_time_limit(600); // 10 minutes
|
|
|
|
$json = Updater::checkForUpdate(Setting::getSetting('version'));
|
|
|
|
return response()->json($json);
|
|
}
|
|
}
|