mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
9f4481d35f
Add test.pdf to .gitignore
276 lines
8.5 KiB
PHP
276 lines
8.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\Http\Requests\Setup\CheckDatabaseRequest;
|
|
use App\Http\Requests\Setup\CheckMailRequest;
|
|
use App\Http\Requests\Setup\StoreSetupRequest;
|
|
use App\Jobs\Account\CreateAccount;
|
|
use App\Jobs\Util\VersionCheck;
|
|
use App\Models\Account;
|
|
use App\Utils\CurlUtils;
|
|
use App\Utils\SystemHealth;
|
|
use App\Utils\Traits\AppSetup;
|
|
use Beganovich\ChromiumPdf\ChromiumPdf;
|
|
use DB;
|
|
use Exception;
|
|
use Illuminate\Contracts\Foundation\Application;
|
|
use Illuminate\Contracts\Routing\ResponseFactory;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Response;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Request;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Spatie\Browsershot\Browsershot;
|
|
|
|
/**
|
|
* Class SetupController.
|
|
*/
|
|
class SetupController extends Controller
|
|
{
|
|
use AppSetup;
|
|
|
|
public function index()
|
|
{
|
|
$check = SystemHealth::check(false);
|
|
|
|
if ($check['system_health'] == true && $check['simple_db_check'] && Schema::hasTable('accounts') && $account = Account::all()->first()) {
|
|
return redirect('/');
|
|
}
|
|
|
|
return view('setup.index', ['check' => $check]);
|
|
}
|
|
|
|
public function doSetup(StoreSetupRequest $request)
|
|
{
|
|
try {
|
|
$check = SystemHealth::check(false);
|
|
} catch (\Exception $e) {
|
|
info(['message' => $e->getMessage(), 'action' => 'SetupController::doSetup()']);
|
|
|
|
return response()->json(['message' => $e->getMessage()], 400);
|
|
}
|
|
|
|
if ($check['system_health'] === false) {
|
|
info($check);
|
|
|
|
return response('Oops, something went wrong. Check your logs.'); /* We should never reach this block, but just in case. */
|
|
}
|
|
|
|
try {
|
|
$db = SystemHealth::dbCheck($request);
|
|
|
|
if ($db['success'] == false) {
|
|
throw new \Exception($db['message']);
|
|
}
|
|
} catch (\Exception $e) {
|
|
return response([
|
|
'message' => 'Oops, connection to database was not successful.',
|
|
'error' => $e->getMessage(),
|
|
]);
|
|
}
|
|
|
|
try {
|
|
if ($request->mail_driver != 'log') {
|
|
$smtp = SystemHealth::testMailServer($request);
|
|
|
|
if ($smtp['success'] == false) {
|
|
throw new \Exception($smtp['message']);
|
|
}
|
|
}
|
|
} catch (\Exception $e) {
|
|
return response([
|
|
'message' => 'Oops, connection to mail server was not successful.',
|
|
'error' => $e->getMessage(),
|
|
]);
|
|
}
|
|
|
|
$mail_driver = $request->input('mail_driver');
|
|
|
|
$url = $request->input('url');
|
|
|
|
if (substr($url, -1) != '/') {
|
|
$url = $url . '/';
|
|
}
|
|
|
|
$env_values = [
|
|
'APP_URL' => $url,
|
|
'REQUIRE_HTTPS' => $request->input('https') ? 'true' : 'false',
|
|
'APP_DEBUG' => $request->input('debug') ? 'true' : 'false',
|
|
|
|
'DB_HOST1' => $request->input('db_host'),
|
|
'DB_DATABASE1' => $request->input('db_database'),
|
|
'DB_USERNAME1' => $request->input('db_username'),
|
|
'DB_PASSWORD1' => $request->input('db_password'),
|
|
|
|
'MAIL_MAILER' => $mail_driver,
|
|
'MAIL_PORT' => $request->input('mail_port'),
|
|
'MAIL_ENCRYPTION' => $request->input('encryption'),
|
|
'MAIL_HOST' => $request->input('mail_host'),
|
|
'MAIL_USERNAME' => $request->input('mail_username'),
|
|
'MAIL_FROM_NAME' => $request->input('mail_name'),
|
|
'MAIL_FROM_ADDRESS' => $request->input('mail_address'),
|
|
'MAIL_PASSWORD' => $request->input('mail_password'),
|
|
|
|
'NINJA_ENVIRONMENT' => 'selfhost',
|
|
'DB_CONNECTION' => 'db-ninja-01',
|
|
];
|
|
|
|
try {
|
|
foreach ($env_values as $property => $value) {
|
|
$this->updateEnvironmentProperty($property, $value);
|
|
}
|
|
|
|
/* We need this in some environments that do not have STDIN defined */
|
|
define('STDIN', fopen('php://stdin', 'r'));
|
|
|
|
/* Make sure no stale connections are cached */
|
|
DB::purge('db-ninja-01');
|
|
|
|
/* Run migrations */
|
|
Artisan::call('optimize');
|
|
Artisan::call('migrate', ['--force' => true]);
|
|
Artisan::call('db:seed', ['--force' => true]);
|
|
|
|
Storage::disk('local')->delete('test.pdf');
|
|
|
|
/* Create the first account. */
|
|
if (Account::count() == 0) {
|
|
CreateAccount::dispatchNow($request->all());
|
|
}
|
|
|
|
VersionCheck::dispatchNow();
|
|
|
|
$this->buildCache(true);
|
|
|
|
return redirect('/');
|
|
} catch (Exception $e) {
|
|
info($e->getMessage());
|
|
|
|
return redirect()
|
|
->back()
|
|
->with('setup_error', $e->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return status based on check of database connection.
|
|
*
|
|
* @param CheckDatabaseRequest $request
|
|
* @return Response
|
|
*/
|
|
public function checkDB(CheckDatabaseRequest $request): Response
|
|
{
|
|
try {
|
|
$status = SystemHealth::dbCheck($request);
|
|
|
|
if (is_array($status) && $status['success'] === true) {
|
|
return response([], 200);
|
|
}
|
|
|
|
return response($status, 400);
|
|
} catch (\Exception $e) {
|
|
info(['message' => $e->getMessage(), 'action' => 'SetupController::checkDB()']);
|
|
|
|
return response()->json(['message' => $e->getMessage()], 400);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return status based on check of SMTP connection.
|
|
*
|
|
* @param CheckMailRequest $request
|
|
* @return Application|ResponseFactory|JsonResponse|Response
|
|
*/
|
|
public function checkMail(CheckMailRequest $request)
|
|
{
|
|
try {
|
|
$response = SystemHealth::testMailServer($request);
|
|
|
|
if ($response['success']) {
|
|
return response([], 200);
|
|
} else {
|
|
return response()->json(['message' => $response['message']], 400);
|
|
}
|
|
} catch (Exception $e) {
|
|
info(['message' => $e->getMessage(), 'action' => 'SetupController::checkMail()']);
|
|
|
|
return response()->json(['message' => $e->getMessage()], 400);
|
|
}
|
|
}
|
|
|
|
private function failsafeMailCheck($request)
|
|
{
|
|
$response = SystemHealth::testMailServer($request);
|
|
|
|
if ($response['success']) {
|
|
true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function checkPdf(Request $request)
|
|
{
|
|
try {
|
|
if (config('ninja.phantomjs_key')) {
|
|
return $this->testPhantom();
|
|
}
|
|
|
|
if (config('ninja.experimental_pdf_engine')) {
|
|
$chromium_pdf = new ChromiumPdf();
|
|
|
|
$pdf = $chromium_pdf
|
|
->setChromiumPath(config('ninja.experimental_pdf_engine_chromium_path'))
|
|
->setHtml('GENERATING PDFs WORKS! Thank you for using Invoice Ninja!')
|
|
->generate();
|
|
|
|
Storage::put('public/test.pdf', $pdf);
|
|
} else {
|
|
Browsershot::html('GENERATING PDFs WORKS! Thank you for using Invoice Ninja!')
|
|
->setNodeBinary(config('ninja.system.node_path'))
|
|
->setNpmBinary(config('ninja.system.npm_path'))
|
|
->noSandbox()
|
|
->savePdf(
|
|
public_path('storage/test.pdf')
|
|
);
|
|
}
|
|
|
|
return response(['url' => asset('storage/test.pdf')], 200);
|
|
} catch (Exception $e) {
|
|
info($e->getMessage());
|
|
|
|
return response([], 500);
|
|
}
|
|
}
|
|
|
|
private function testPhantom()
|
|
{
|
|
try {
|
|
$key = config('ninja.phantomjs_key');
|
|
$url = 'https://www.invoiceninja.org/';
|
|
|
|
$phantom_url = "https://phantomjscloud.com/api/browser/v2/{$key}/?request=%7Burl:%22{$url}%22,renderType:%22pdf%22%7D";
|
|
$pdf = CurlUtils::get($phantom_url);
|
|
|
|
Storage::disk(config('filesystems.default'))->put('test.pdf', $pdf);
|
|
Storage::disk('local')->put('test.pdf', $pdf);
|
|
|
|
return response(['url' => Storage::disk('local')->url('test.pdf')], 200);
|
|
} catch (Exception $e) {
|
|
return response([], 500);
|
|
}
|
|
}
|
|
}
|