json(['message' => 'Self update not available on this system.'], 403); } /* .git MUST be owned/writable by the webserver user */ $repo = new GitRepository(base_path()); nlog('Are there changes to pull? '.$repo->hasChanges()); try { $res = $repo->pull(); } catch (GitException $e) { nlog($e->getMessage()); return response()->json(['message'=>$e->getMessage()], 500); } dispatch(function () { Artisan::call('ninja:post-update'); }); return response()->json(['message' => ''], 200); } public function checkVersion() { return trim(file_get_contents(config('ninja.version_url'))); } }