mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 00:48:13 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			232 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			232 lines
		
	
	
		
			6.7 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\Utils;
 | |
| 
 | |
| use App\Http\Requests\Setup\CheckDatabaseRequest;
 | |
| use App\Http\Requests\Setup\CheckMailRequest;
 | |
| use App\Libraries\MultiDB;
 | |
| use App\Mail\TestMailServer;
 | |
| use Illuminate\Support\Arr;
 | |
| use Illuminate\Support\Facades\DB;
 | |
| use Illuminate\Support\Facades\Mail;
 | |
| 
 | |
| /**
 | |
|  * Class SystemHealth.
 | |
|  */
 | |
| class SystemHealth
 | |
| {
 | |
|     private static $extensions = [
 | |
|         'mysqli',
 | |
|         'gd',
 | |
|         'curl',
 | |
|         'zip',
 | |
|         'gmp',
 | |
|         'openssl',
 | |
|         'mbstring',
 | |
|         'xml',
 | |
|         'bcmath',
 | |
|         'mysqlnd',
 | |
|     ];
 | |
| 
 | |
|     private static $php_version = 7.3;
 | |
| 
 | |
|     /**
 | |
|      * Check loaded extensions / PHP version / DB Connections.
 | |
|      *
 | |
|      * @return     array  Result set of checks
 | |
|      */
 | |
|     public static function check($check_database = true) : array
 | |
|     {
 | |
|         $system_health = true;
 | |
| 
 | |
|         if (in_array(false, Arr::dot(self::extensions()))) {
 | |
|             $system_health = false;
 | |
|         }
 | |
| 
 | |
|         if (phpversion() < self::$php_version) {
 | |
|             $system_health = false;
 | |
|         }
 | |
| 
 | |
|         if (! self::simpleDbCheck() && $check_database) {
 | |
|             info('db fails');
 | |
|             $system_health = false;
 | |
|         }
 | |
| 
 | |
|         return [
 | |
|             'system_health' => $system_health,
 | |
|             'extensions' => self::extensions(),
 | |
|             'php_version' => [
 | |
|                 'minimum_php_version' => (string) self::$php_version,
 | |
|                 'current_php_version' => phpversion(),
 | |
|                 'current_php_cli_version' => (string) self::checkPhpCli(),
 | |
|                 'is_okay' => version_compare(phpversion(), self::$php_version, '>='),
 | |
|             ],
 | |
|             'env_writable' => self::checkEnvWritable(),
 | |
|             //'mail' => self::testMailServer(),
 | |
|             'simple_db_check' => (bool) self::simpleDbCheck(),
 | |
|             'npm_status' => self::checkNpm(),
 | |
|             'node_status' => self::checkNode(),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public static function checkNode()
 | |
|     {
 | |
|         try {
 | |
|             exec('node -v', $foo, $exitCode);
 | |
| 
 | |
|             if ($exitCode === 0) {
 | |
|                 return empty($foo[0]) ? 'Found node, but no version information' : $foo[0];
 | |
|             }
 | |
|         } catch (\Exception $e) {
 | |
|             return false;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public static function checkNpm()
 | |
|     {
 | |
|         try {
 | |
|             exec('npm -v', $foo, $exitCode);
 | |
| 
 | |
|             if ($exitCode === 0) {
 | |
|                 return empty($foo[0]) ? 'Found npm, but no version information' : $foo[0];
 | |
|             }
 | |
|         } catch (\Exception $e) {
 | |
|             return false;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     private static function simpleDbCheck() :bool
 | |
|     {
 | |
|         $result = true;
 | |
| 
 | |
|         try {
 | |
|             $pdo = DB::connection()->getPdo();
 | |
|             $result = true;
 | |
|         } catch (\Exception $e) {
 | |
|             $result = false;
 | |
|         }
 | |
| 
 | |
|         return $result;
 | |
|     }
 | |
| 
 | |
|     private static function checkPhpCli()
 | |
|     {
 | |
| 
 | |
|         try {
 | |
|             exec('php -v', $foo, $exitCode);
 | |
| 
 | |
|             if ($exitCode === 0) {
 | |
|                 return empty($foo[0]) ? 'Found php cli, but no version information' : $foo[0];
 | |
|             }
 | |
|         } catch (\Exception $e) {
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     private static function extensions() :array
 | |
|     {
 | |
|         $loaded_extensions = [];
 | |
| 
 | |
|         foreach (self::$extensions as $extension) {
 | |
|             $loaded_extensions[] = [$extension => extension_loaded($extension)];
 | |
|         }
 | |
| 
 | |
|         return $loaded_extensions;
 | |
|     }
 | |
| 
 | |
|     public static function dbCheck($request = null): array
 | |
|     {
 | |
|         $result = ['success' => false];
 | |
| 
 | |
|         if ($request && $request instanceof CheckDatabaseRequest) {
 | |
|             config(['database.connections.db-ninja-01.host'=> $request->input('host')]);
 | |
|             config(['database.connections.db-ninja-01.database'=> $request->input('database')]);
 | |
|             config(['database.connections.db-ninja-01.username'=> $request->input('username')]);
 | |
|             config(['database.connections.db-ninja-01.password'=> $request->input('password')]);
 | |
|             config(['database.default' => 'db-ninja-01']);
 | |
| 
 | |
|             DB::purge('db-ninja-01');
 | |
|         }
 | |
| 
 | |
|         if (! config('ninja.db.multi_db_enabled')) {
 | |
|             try {
 | |
|                 $pdo = DB::connection()->getPdo();
 | |
|                 $result[] = [DB::connection()->getDatabaseName() => true];
 | |
|                 $result['success'] = true;
 | |
|             } catch (\Exception $e) {
 | |
|                 $result[] = [config('database.connections.'.config('database.default').'.database') => false];
 | |
|                 $result['success'] = false;
 | |
|             }
 | |
|         } else {
 | |
|             foreach (MultiDB::$dbs as $db) {
 | |
|                 MultiDB::setDB($db);
 | |
| 
 | |
|                 try {
 | |
|                     $pdo = DB::connection()->getPdo();
 | |
|                     $result[] = [DB::connection()->getDatabaseName() => true];
 | |
|                     $result['success'] = true;
 | |
|                 } catch (\Exception $e) {
 | |
|                     $result[] = [config('database.connections.'.config('database.default').'.database') => false];
 | |
|                     $result['success'] = false;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $result;
 | |
|     }
 | |
| 
 | |
|     private static function checkDbConnection()
 | |
|     {
 | |
|         return DB::connection()->getPdo();
 | |
|     }
 | |
| 
 | |
|     public static function testMailServer($request = null)
 | |
|     {
 | |
|         if ($request && $request instanceof CheckMailRequest) {
 | |
|             config(['mail.driver' => $request->input('driver')]);
 | |
|             config(['mail.host' => $request->input('host')]);
 | |
|             config(['mail.port' => $request->input('port')]);
 | |
|             config(['mail.from.address' => $request->input('from_address')]);
 | |
|             config(['mail.from.name' => $request->input('from_name')]);
 | |
|             config(['mail.encryption' => $request->input('encryption')]);
 | |
|             config(['mail.username' => $request->input('username')]);
 | |
|             config(['mail.password' => $request->input('password')]);
 | |
|         }
 | |
| 
 | |
|         try {
 | |
|             Mail::to(config('mail.from.address'))
 | |
|             ->send(new TestMailServer('Email Server Works!', config('mail.from.address')));
 | |
|         } catch (\Exception $e) {
 | |
|             return $e->getMessage();
 | |
|         }
 | |
| 
 | |
|         /*
 | |
|          * 'message' => 'count(): Parameter must be an array or an object that implements Countable',
 | |
|          * 'action' => 'SetupController::checkMail()',
 | |
|          *
 | |
|          * count(Mail::failures())
 | |
|          */
 | |
| 
 | |
|         if (Mail::failures() > 0) {
 | |
|             return Mail::failures();
 | |
|         }
 | |
| 
 | |
|         return response()->json(['message'=>'Success'], 200);
 | |
|     }
 | |
| 
 | |
|     private static function checkEnvWritable()
 | |
|     {
 | |
|         return is_writable(base_path().'/.env');
 | |
|     }
 | |
| }
 |