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

169 lines
5.2 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)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
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;
2022-03-19 04:13:29 +01:00
use Illuminate\Support\Facades\Storage;
2022-03-19 04:16:45 +01:00
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"),
* ),
* )
*/
2022-03-19 04:10:00 +01:00
// public function old_update(\Codedge\Updater\UpdaterManager $updater)
// {
// set_time_limit(0);
// define('STDIN', fopen('php://stdin', 'r'));
2020-06-04 13:42:45 +02:00
2022-03-19 04:10:00 +01:00
// if (Ninja::isHosted()) {
// return response()->json(['message' => ctrans('texts.self_update_not_available')], 403);
// }
2022-03-19 04:10:00 +01:00
// $this->testWritable();
2021-04-12 06:36:51 +02:00
2022-03-19 04:10:00 +01:00
// // Get the new version available
// $versionAvailable = $updater->source()->getVersionAvailable();
2021-04-09 02:33:54 +02:00
2022-03-19 04:10:00 +01:00
// // Create a release
// $release = $updater->source()->fetch($versionAvailable);
2021-04-09 02:33:54 +02:00
2022-03-19 04:10:00 +01:00
// $updater->source()->update($release);
2021-04-09 02:33:54 +02:00
2022-03-19 04:10:00 +01: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); }
2021-04-09 07:03:06 +02:00
2022-03-19 04:10:00 +01:00
// Artisan::call('clear-compiled');
// Artisan::call('route:clear');
// Artisan::call('view:clear');
// Artisan::call('optimize');
2022-03-19 04:10:00 +01:00
// return response()->json(['message' => 'Update completed'], 200);
2022-03-19 04:10:00 +01:00
// }
2020-11-11 01:13:39 +01:00
2022-03-19 04:10:00 +01:00
public function update()
2022-03-19 03:36:47 +01:00
{
2022-03-19 04:10:00 +01:00
set_time_limit(0);
define('STDIN', fopen('php://stdin', 'r'));
if (Ninja::isHosted()) {
return response()->json(['message' => ctrans('texts.self_update_not_available')], 403);
}
$this->testWritable();
2022-03-19 03:36:47 +01:00
$contents = file_get_contents($this->getDownloadUrl());
Storage::disk('local')->put('invoiceninja.zip', $contents);
$file = Storage::disk('local')->path('invoiceninja.zip');
$zipFile = new \PhpZip\ZipFile();
$zipFile->openFile($file);
2022-03-19 04:13:29 +01:00
$zipFile->extractTo(base_path());
2022-03-19 03:36:47 +01:00
$zipFile->close();
unlink($file);
2022-03-19 04:10:00 +01: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('migrate', ['--force' => true]);
Artisan::call('optimize');
return response()->json(['message' => 'Update completed'], 200);
2022-03-19 03:36:47 +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')));
}
2022-03-19 03:00:29 +01:00
private function getDownloadUrl()
{
$version = $this->checkVersion();
2022-03-19 03:36:47 +01:00
2022-03-19 04:13:29 +01:00
return "https://github.com/invoiceninja/invoiceninja/releases/download/v{$version}/invoiceninja.zip";
2022-03-19 03:00:29 +01:00
}
}