mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 10:53:35 -05:00 
			
		
		
		
	* Filter properties which can be saved on free accounts * Self Updater * Fixes for tests * Refactor for settings * Working on feature permissions - Settings Saver * Fixes for events on self-updater * Working on Self Updater * Working on free /pro settings saver * Implement free/pro/enterprise saving for settings * Update company request * Implement settings saver for hosted platform for clients and group level settings * Implement quotas for hosted version * Validation rules for hosted platform"
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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;
 | 
						|
 | 
						|
use App\Utils\Ninja;
 | 
						|
use Codedge\Updater\UpdaterManager;
 | 
						|
use Composer\Factory;
 | 
						|
use Composer\IO\NullIO;
 | 
						|
use Composer\Installer;
 | 
						|
use Illuminate\Foundation\Bus\DispatchesJobs;
 | 
						|
use Illuminate\Support\Facades\Artisan;
 | 
						|
use Illuminate\Support\Facades\Storage;
 | 
						|
 | 
						|
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"),
 | 
						|
     *       ),
 | 
						|
     *     )
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function update(UpdaterManager $updater)
 | 
						|
    {
 | 
						|
        if (Ninja::isNinja()) {
 | 
						|
            return response()->json(['message' => 'Self update not available on this system.'], 403);
 | 
						|
        }
 | 
						|
 | 
						|
        info("is new version available = ". $updater->source()->isNewVersionAvailable());
 | 
						|
 | 
						|
        // Get the new version available
 | 
						|
        $versionAvailable = $updater->source()->getVersionAvailable();
 | 
						|
 | 
						|
info($versionAvailable);
 | 
						|
 | 
						|
        // Create a release
 | 
						|
        $release = $updater->source()->fetch($versionAvailable);
 | 
						|
 | 
						|
info(print_r($release,1));
 | 
						|
 | 
						|
        // Run the update process
 | 
						|
        $res = $updater->source()->update($release);
 | 
						|
 | 
						|
info(print_r($res,1));
 | 
						|
 | 
						|
        return response()->json(['message'=>$res], 200);
 | 
						|
    }
 | 
						|
}
 |