2020-02-05 05:06:03 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-05 05:06:03 +01: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-02-05 05:06:03 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2021-04-12 06:36:51 +02:00
|
|
|
use App\Exceptions\FilePermissionsFailure;
|
2020-03-21 06:37:30 +01:00
|
|
|
use App\Utils\Ninja;
|
2020-02-10 10:53:02 +01:00
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
2020-04-11 13:48:38 +02:00
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2020-02-10 10:53:02 +01:00
|
|
|
|
2020-02-05 05:06:03 +01:00
|
|
|
class SelfUpdateController extends BaseController
|
|
|
|
{
|
|
|
|
use DispatchesJobs;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-02-12 11:06:59 +01:00
|
|
|
/**
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/self-update",
|
|
|
|
* operationId="selfUpdate",
|
|
|
|
* tags={"update"},
|
|
|
|
* summary="Performs a system update",
|
|
|
|
* description="Performs a system update",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Password"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="Success/failure response"
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=422,
|
|
|
|
* description="Validation error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
|
|
|
*
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response="default",
|
|
|
|
* description="Unexpected Error",
|
|
|
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*/
|
2021-04-09 03:22:11 +02:00
|
|
|
public function update(\Codedge\Updater\UpdaterManager $updater)
|
2020-02-05 05:06:03 +01:00
|
|
|
{
|
2021-04-09 07:03:06 +02:00
|
|
|
set_time_limit(0);
|
2020-09-06 11:38:10 +02:00
|
|
|
define('STDIN', fopen('php://stdin', 'r'));
|
2020-06-04 13:42:45 +02:00
|
|
|
|
2020-03-26 04:23:57 +01:00
|
|
|
if (Ninja::isNinja()) {
|
2021-01-25 01:57:49 +01:00
|
|
|
return response()->json(['message' => ctrans('texts.self_update_not_available')], 403);
|
2020-03-26 04:23:57 +01:00
|
|
|
}
|
2020-03-02 11:22:37 +01:00
|
|
|
|
2021-04-12 06:36:51 +02:00
|
|
|
if(!$this->testWritable())
|
|
|
|
throw new FilePermissionsFailure('Cannot update system because files are not writable!');
|
|
|
|
|
2021-04-09 02:33:54 +02:00
|
|
|
// Check if new version is available
|
|
|
|
if($updater->source()->isNewVersionAvailable()) {
|
|
|
|
|
|
|
|
// Get the new version available
|
|
|
|
$versionAvailable = $updater->source()->getVersionAvailable();
|
|
|
|
|
|
|
|
// Create a release
|
|
|
|
$release = $updater->source()->fetch($versionAvailable);
|
|
|
|
|
|
|
|
$updater->source()->update($release);
|
|
|
|
|
2021-04-09 07:03:06 +02:00
|
|
|
}
|
2021-03-30 09:01:20 +02:00
|
|
|
|
2021-04-09 07:03:06 +02:00
|
|
|
$cacheCompiled = base_path('bootstrap/cache/compiled.php');
|
|
|
|
if (file_exists($cacheCompiled)) { unlink ($cacheCompiled); }
|
|
|
|
$cacheServices = base_path('bootstrap/cache/services.php');
|
|
|
|
if (file_exists($cacheServices)) { unlink ($cacheServices); }
|
|
|
|
|
|
|
|
Artisan::call('clear-compiled');
|
|
|
|
Artisan::call('cache:clear');
|
|
|
|
Artisan::call('debugbar:clear');
|
|
|
|
Artisan::call('route:clear');
|
|
|
|
Artisan::call('view:clear');
|
|
|
|
Artisan::call('config:clear');
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2021-04-09 07:03:06 +02:00
|
|
|
return response()->json(['message' => 'Update completed'], 200);
|
2020-05-25 01:45:12 +02:00
|
|
|
|
2020-03-02 11:22:37 +01:00
|
|
|
}
|
2020-11-11 01:13:39 +01:00
|
|
|
|
2021-04-12 06:36:51 +02:00
|
|
|
private function testWritable()
|
|
|
|
{
|
|
|
|
$directoryIterator = new \RecursiveDirectoryIterator(base_path());
|
|
|
|
|
|
|
|
foreach (new \RecursiveIteratorIterator($directoryIterator) as $file) {
|
|
|
|
if ($file->isFile() && ! $file->isWritable()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-11 01:13:39 +01:00
|
|
|
public function checkVersion()
|
|
|
|
{
|
|
|
|
return trim(file_get_contents(config('ninja.version_url')));
|
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|