2020-02-05 05:06:03 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
use App\Utils\Ninja;
|
2020-02-10 10:53:02 +01:00
|
|
|
use Codedge\Updater\UpdaterManager;
|
2020-04-11 13:48:38 +02:00
|
|
|
use Composer\Factory;
|
|
|
|
use Composer\IO\NullIO;
|
|
|
|
use Composer\Installer;
|
2020-05-25 02:50:16 +02:00
|
|
|
use Cz\Git\GitRepository;
|
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-03-08 06:59:06 +01:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
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"),
|
|
|
|
* ),
|
|
|
|
* )
|
|
|
|
*
|
|
|
|
*/
|
2020-02-10 10:53:02 +01:00
|
|
|
public function update(UpdaterManager $updater)
|
2020-02-05 05:06:03 +01:00
|
|
|
{
|
2020-03-26 04:23:57 +01:00
|
|
|
if (Ninja::isNinja()) {
|
2020-03-21 06:37:30 +01:00
|
|
|
return response()->json(['message' => 'Self update not available on this system.'], 403);
|
2020-03-26 04:23:57 +01:00
|
|
|
}
|
2020-03-02 11:22:37 +01:00
|
|
|
|
2020-05-25 04:17:24 +02:00
|
|
|
/* .git MUST be owned/writable by the webserver user */
|
2020-05-25 02:50:16 +02:00
|
|
|
$repo = new GitRepository(base_path());
|
2020-03-02 11:22:37 +01:00
|
|
|
|
2020-05-25 07:14:31 +02:00
|
|
|
info("Are there changes to pull? " . $repo->hasChanges());
|
|
|
|
|
2020-05-25 07:21:26 +02:00
|
|
|
$res = $repo->pull();
|
2020-05-25 07:14:31 +02:00
|
|
|
|
2020-05-25 07:21:26 +02:00
|
|
|
info("Are there any changes to pull? " . $repo->hasChanges());
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2020-05-25 01:45:12 +02:00
|
|
|
Artisan::call('ninja:post-update');
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
return response()->json(['message'=>$res], 200);
|
2020-03-02 11:22:37 +01:00
|
|
|
}
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|