1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/SelfUpdateController.php

117 lines
3.6 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\Controllers;
2021-04-12 06:36:51 +02:00
use App\Exceptions\FilePermissionsFailure;
use App\Utils\Ninja;
use Illuminate\Foundation\Bus\DispatchesJobs;
2020-04-11 13:48:38 +02:00
use Illuminate\Support\Facades\Artisan;
class SelfUpdateController extends BaseController
{
use DispatchesJobs;
public function __construct()
{
}
/**
* @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)
{
2021-04-09 07:03:06 +02:00
set_time_limit(0);
define('STDIN', fopen('php://stdin', 'r'));
2020-06-04 13:42:45 +02:00
2021-05-05 00:28:55 +02:00
if (Ninja::isHosted()) {
2021-01-25 01:57:49 +01:00
return response()->json(['message' => ctrans('texts.self_update_not_available')], 403);
}
2021-04-30 06:22:36 +02:00
$this->testWritable();
2021-04-12 06:36:51 +02:00
2021-04-30 06:29:27 +02:00
// Get the new version available
$versionAvailable = $updater->source()->getVersionAvailable();
2021-04-09 02:33:54 +02:00
2021-04-30 06:29:27 +02:00
// Create a release
$release = $updater->source()->fetch($versionAvailable);
2021-04-09 02:33:54 +02:00
2021-04-30 06:29:27 +02:00
$updater->source()->update($release);
2021-04-09 02:33:54 +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('route:clear');
Artisan::call('view:clear');
Artisan::call('config:clear');
2021-04-09 07:03:06 +02:00
return response()->json(['message' => 'Update completed'], 200);
}
2020-11-11 01:13:39 +01:00
2021-04-12 06:36:51 +02:00
private function testWritable()
{
2021-04-19 02:54:16 +02:00
$directoryIterator = new \RecursiveDirectoryIterator(base_path(), \RecursiveDirectoryIterator::SKIP_DOTS);
2021-04-12 06:36:51 +02:00
foreach (new \RecursiveIteratorIterator($directoryIterator) as $file) {
2021-04-19 02:54:16 +02:00
if(strpos($file->getPathname(), '.git') !== false)
continue;
// nlog($file->getPathname());
2021-04-12 06:36:51 +02:00
if ($file->isFile() && ! $file->isWritable()) {
2021-04-30 06:22:36 +02:00
// throw new FilePermissionsFailure($file);
2021-04-30 06:29:27 +02:00
nlog("Cannot update system because {$file->getFileName()} is not writable");
2021-04-30 06:22:36 +02:00
throw new FilePermissionsFailure("Cannot update system because {$file->getFileName()} is not writable");
2021-04-12 06:36:51 +02:00
return false;
}
}
return true;
}
2020-11-11 01:13:39 +01:00
public function checkVersion()
{
return trim(file_get_contents(config('ninja.version_url')));
}
}