@@ -17,65 +17,65 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | class DirtChecker |
| 19 | 19 | { |
| 20 | - public $dirtFilterConditions = [">", "<", "="]; |
|
| 20 | + public $dirtFilterConditions = [">", "<", "="]; |
|
| 21 | 21 | |
| 22 | - public $workingValue; |
|
| 23 | - public $conditionValue; |
|
| 24 | - public $workingConditions = []; |
|
| 22 | + public $workingValue; |
|
| 23 | + public $conditionValue; |
|
| 24 | + public $workingConditions = []; |
|
| 25 | 25 | |
| 26 | - public function __construct(string $value, string $conditionValue, array $conditions = []) |
|
| 27 | - { |
|
| 28 | - $this->workingValue = $value; |
|
| 29 | - $this->conditionValue = $conditionValue; |
|
| 26 | + public function __construct(string $value, string $conditionValue, array $conditions = []) |
|
| 27 | + { |
|
| 28 | + $this->workingValue = $value; |
|
| 29 | + $this->conditionValue = $conditionValue; |
|
| 30 | 30 | |
| 31 | - if (!empty($conditions)){ |
|
| 32 | - foreach ($conditions as $value) { |
|
| 33 | - if (!in_array($value, $this->dirtFilterConditions)){ |
|
| 34 | - throw new \Exception("Invalid Dirt Filter Condition Provided: ".$value); |
|
| 35 | - } |
|
| 36 | - } |
|
| 37 | - $this->workingConditions = $conditions; |
|
| 38 | - } |
|
| 39 | - else { |
|
| 40 | - $this->workingConditions = $this->dirtFilterConditions; |
|
| 41 | - } |
|
| 42 | - } |
|
| 31 | + if (!empty($conditions)){ |
|
| 32 | + foreach ($conditions as $value) { |
|
| 33 | + if (!in_array($value, $this->dirtFilterConditions)){ |
|
| 34 | + throw new \Exception("Invalid Dirt Filter Condition Provided: ".$value); |
|
| 35 | + } |
|
| 36 | + } |
|
| 37 | + $this->workingConditions = $conditions; |
|
| 38 | + } |
|
| 39 | + else { |
|
| 40 | + $this->workingConditions = $this->dirtFilterConditions; |
|
| 41 | + } |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - public function isDirty() : bool |
|
| 45 | - { |
|
| 46 | - $explodedString = explode(" ", $this->workingValue); |
|
| 47 | - foreach ($explodedString as $string){ |
|
| 48 | - foreach ($this->workingConditions as $condition){ |
|
| 49 | - $switchValue = false; |
|
| 50 | - switch ($condition) { |
|
| 51 | - case '=': |
|
| 52 | - $switchValue = strpos($string, $this->conditionValue) !== false; |
|
| 53 | - break; |
|
| 54 | - case '>': |
|
| 55 | - $string = self::turnToNumber($string); |
|
| 56 | - $_condition = self::turnToNumber($this->conditionValue); |
|
| 44 | + public function isDirty() : bool |
|
| 45 | + { |
|
| 46 | + $explodedString = explode(" ", $this->workingValue); |
|
| 47 | + foreach ($explodedString as $string){ |
|
| 48 | + foreach ($this->workingConditions as $condition){ |
|
| 49 | + $switchValue = false; |
|
| 50 | + switch ($condition) { |
|
| 51 | + case '=': |
|
| 52 | + $switchValue = strpos($string, $this->conditionValue) !== false; |
|
| 53 | + break; |
|
| 54 | + case '>': |
|
| 55 | + $string = self::turnToNumber($string); |
|
| 56 | + $_condition = self::turnToNumber($this->conditionValue); |
|
| 57 | 57 | |
| 58 | - $switchValue = $string > $_condition; |
|
| 59 | - break; |
|
| 60 | - case '<': |
|
| 61 | - $string = self::turnToNumber($string); |
|
| 62 | - $_condition = self::turnToNumber($this->conditionValue); |
|
| 58 | + $switchValue = $string > $_condition; |
|
| 59 | + break; |
|
| 60 | + case '<': |
|
| 61 | + $string = self::turnToNumber($string); |
|
| 62 | + $_condition = self::turnToNumber($this->conditionValue); |
|
| 63 | 63 | |
| 64 | - $switchValue = $string < $_condition; |
|
| 65 | - break; |
|
| 66 | - } |
|
| 64 | + $switchValue = $string < $_condition; |
|
| 65 | + break; |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - if (!$switchValue) { |
|
| 69 | - return true; |
|
| 70 | - } |
|
| 71 | - } |
|
| 72 | - } |
|
| 68 | + if (!$switchValue) { |
|
| 69 | + return true; |
|
| 70 | + } |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | - return false; |
|
| 75 | - } |
|
| 74 | + return false; |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - private function turnToNumber(string $string) : float |
|
| 78 | - { |
|
| 79 | - return (float) filter_var($string, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION | FILTER_FLAG_ALLOW_THOUSAND); |
|
| 80 | - } |
|
| 77 | + private function turnToNumber(string $string) : float |
|
| 78 | + { |
|
| 79 | + return (float) filter_var($string, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION | FILTER_FLAG_ALLOW_THOUSAND); |
|
| 80 | + } |
|
| 81 | 81 | } |
@@ -20,10 +20,10 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | class UnallowedOperationException extends Exception |
| 22 | 22 | { |
| 23 | - public function __construct(string $message, int $databaseUser) |
|
| 24 | - { |
|
| 25 | - parent::__construct($message, 0, null); |
|
| 23 | + public function __construct(string $message, int $databaseUser) |
|
| 24 | + { |
|
| 25 | + parent::__construct($message, 0, null); |
|
| 26 | 26 | |
| 27 | - $this->log($databaseUser, Constant::ERROR_404, Constant::ERROR_NORMAL); |
|
| 28 | - } |
|
| 27 | + $this->log($databaseUser, Constant::ERROR_404, Constant::ERROR_NORMAL); |
|
| 28 | + } |
|
| 29 | 29 | } |
@@ -21,105 +21,105 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | class MySQL implements ConnectableInterface |
| 23 | 23 | { |
| 24 | - /** |
|
| 25 | - * @var string $dsn |
|
| 26 | - */ |
|
| 27 | - protected $dsn; |
|
| 24 | + /** |
|
| 25 | + * @var string $dsn |
|
| 26 | + */ |
|
| 27 | + protected $dsn; |
|
| 28 | 28 | |
| 29 | - /** |
|
| 30 | - * @var \PDO $connectionObject |
|
| 31 | - */ |
|
| 32 | - protected $connectionObject; |
|
| 29 | + /** |
|
| 30 | + * @var \PDO $connectionObject |
|
| 31 | + */ |
|
| 32 | + protected $connectionObject; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * @var array loginData |
|
| 36 | - */ |
|
| 37 | - private $loginData = []; |
|
| 34 | + /** |
|
| 35 | + * @var array loginData |
|
| 36 | + */ |
|
| 37 | + private $loginData = []; |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * Setter for the DSN string {@see $dsn} |
|
| 41 | - * |
|
| 42 | - * @param array $dsnArray |
|
| 43 | - * @return void |
|
| 44 | - */ |
|
| 45 | - public function setDsn(array $dsnArray) |
|
| 46 | - { |
|
| 47 | - $this->dsn = $dsnArray; |
|
| 48 | - } |
|
| 39 | + /** |
|
| 40 | + * Setter for the DSN string {@see $dsn} |
|
| 41 | + * |
|
| 42 | + * @param array $dsnArray |
|
| 43 | + * @return void |
|
| 44 | + */ |
|
| 45 | + public function setDsn(array $dsnArray) |
|
| 46 | + { |
|
| 47 | + $this->dsn = $dsnArray; |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * Establishes connection |
|
| 52 | - * |
|
| 53 | - * @param string $username |
|
| 54 | - * @param string $password optional |
|
| 55 | - * @throws \EmmetBlue\Core\Exception\SQLException |
|
| 56 | - * @return void |
|
| 57 | - */ |
|
| 58 | - public function connect(string $username, string $password="") |
|
| 59 | - { |
|
| 60 | - $host = $this->dsn[0]; |
|
| 61 | - $database = $this->dsn[1]; |
|
| 50 | + /** |
|
| 51 | + * Establishes connection |
|
| 52 | + * |
|
| 53 | + * @param string $username |
|
| 54 | + * @param string $password optional |
|
| 55 | + * @throws \EmmetBlue\Core\Exception\SQLException |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 58 | + public function connect(string $username, string $password="") |
|
| 59 | + { |
|
| 60 | + $host = $this->dsn[0]; |
|
| 61 | + $database = $this->dsn[1]; |
|
| 62 | 62 | |
| 63 | - $this->loginData['username'] = $username; |
|
| 64 | - $this->loginData['password'] = $password; |
|
| 63 | + $this->loginData['username'] = $username; |
|
| 64 | + $this->loginData['password'] = $password; |
|
| 65 | 65 | |
| 66 | - try |
|
| 67 | - { |
|
| 68 | - $this->connectionObject = new \PDO("mysql:host=$host;dbname=$database;", $username, $password); |
|
| 69 | - } |
|
| 70 | - catch (\PDOException $e) |
|
| 71 | - { |
|
| 72 | - throw new SQLException("Unable to connect to database", 400, $e); |
|
| 73 | - } |
|
| 66 | + try |
|
| 67 | + { |
|
| 68 | + $this->connectionObject = new \PDO("mysql:host=$host;dbname=$database;", $username, $password); |
|
| 69 | + } |
|
| 70 | + catch (\PDOException $e) |
|
| 71 | + { |
|
| 72 | + throw new SQLException("Unable to connect to database", 400, $e); |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | - $dsn = $this->dsn; |
|
| 76 | - unset($dsn[0], $dsn[1]); |
|
| 75 | + $dsn = $this->dsn; |
|
| 76 | + unset($dsn[0], $dsn[1]); |
|
| 77 | 77 | |
| 78 | - foreach ($dsn as $attribute) |
|
| 79 | - { |
|
| 80 | - foreach ($attribute as $key=>$value) |
|
| 81 | - { |
|
| 82 | - $this->connectionObject->setAttribute($key, $value); |
|
| 83 | - } |
|
| 84 | - } |
|
| 85 | - } |
|
| 78 | + foreach ($dsn as $attribute) |
|
| 79 | + { |
|
| 80 | + foreach ($attribute as $key=>$value) |
|
| 81 | + { |
|
| 82 | + $this->connectionObject->setAttribute($key, $value); |
|
| 83 | + } |
|
| 84 | + } |
|
| 85 | + } |
|
| 86 | 86 | |
| 87 | - /** |
|
| 88 | - * Returns an instance a pdo intance of the connection object |
|
| 89 | - * |
|
| 90 | - * @return \PDO |
|
| 91 | - */ |
|
| 92 | - public function getConnection() : \PDO |
|
| 93 | - { |
|
| 94 | - if ($this->connectionObject instanceof \PDO) |
|
| 95 | - { |
|
| 96 | - return $this->connectionObject; |
|
| 97 | - } |
|
| 87 | + /** |
|
| 88 | + * Returns an instance a pdo intance of the connection object |
|
| 89 | + * |
|
| 90 | + * @return \PDO |
|
| 91 | + */ |
|
| 92 | + public function getConnection() : \PDO |
|
| 93 | + { |
|
| 94 | + if ($this->connectionObject instanceof \PDO) |
|
| 95 | + { |
|
| 96 | + return $this->connectionObject; |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - $this->connect( |
|
| 100 | - $this->loginData['username'] ?? '', |
|
| 101 | - $this->loginData['password'] ?? '' |
|
| 102 | - ); |
|
| 99 | + $this->connect( |
|
| 100 | + $this->loginData['username'] ?? '', |
|
| 101 | + $this->loginData['password'] ?? '' |
|
| 102 | + ); |
|
| 103 | 103 | |
| 104 | - return $this->connectionObject; |
|
| 105 | - } |
|
| 104 | + return $this->connectionObject; |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | - /** |
|
| 108 | - * Closes connection |
|
| 109 | - */ |
|
| 110 | - public function disableConnection() |
|
| 111 | - { |
|
| 112 | - $this->connectionObject = null; |
|
| 113 | - } |
|
| 107 | + /** |
|
| 108 | + * Closes connection |
|
| 109 | + */ |
|
| 110 | + public function disableConnection() |
|
| 111 | + { |
|
| 112 | + $this->connectionObject = null; |
|
| 113 | + } |
|
| 114 | 114 | |
| 115 | - /** |
|
| 116 | - * Sets attributes for the PDO object |
|
| 117 | - * |
|
| 118 | - * @param \PDO $attribute |
|
| 119 | - * @param \PDO $value |
|
| 120 | - */ |
|
| 121 | - public function setAttribute(\PDO $attribute, \PDO $value) |
|
| 122 | - { |
|
| 123 | - $this->connectionObject->setAttribute($attribute, $value); |
|
| 124 | - } |
|
| 115 | + /** |
|
| 116 | + * Sets attributes for the PDO object |
|
| 117 | + * |
|
| 118 | + * @param \PDO $attribute |
|
| 119 | + * @param \PDO $value |
|
| 120 | + */ |
|
| 121 | + public function setAttribute(\PDO $attribute, \PDO $value) |
|
| 122 | + { |
|
| 123 | + $this->connectionObject->setAttribute($attribute, $value); |
|
| 124 | + } |
|
| 125 | 125 | } |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | public function __construct(array $sender, array $recipients, array $message){ |
| 24 | 24 | $smtpConfigJson = file_get_contents(Constant::getGlobals()["config-dir"]["smtp-config"]); |
| 25 | 25 | |
| 26 | - $smtpConfig = json_decode($smtpConfigJson); |
|
| 26 | + $smtpConfig = json_decode($smtpConfigJson); |
|
| 27 | 27 | |
| 28 | 28 | $mail = new \PHPMailer; |
| 29 | 29 | $mail->SMTPDebug = $smtpConfig->debug; |
@@ -21,43 +21,43 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | class DatabaseConnectionFactory |
| 23 | 23 | { |
| 24 | - /** |
|
| 25 | - * @var \PDO $connectionObject |
|
| 26 | - */ |
|
| 27 | - private static $connectionObject; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Gets the config values defined in the database-config.json file |
|
| 31 | - * and uses the values to create a new connection object. |
|
| 32 | - */ |
|
| 33 | - public static function bootstrap() |
|
| 34 | - { |
|
| 35 | - $databaseConfigJson = file_get_contents(Constant::getGlobals()["config-dir"]["database-config"]); |
|
| 36 | - |
|
| 37 | - $databaseConfig = json_decode($databaseConfigJson); |
|
| 38 | - |
|
| 39 | - $adapter = $databaseConfig->adapter; |
|
| 40 | - $server = $databaseConfig->server; |
|
| 41 | - $database = $databaseConfig->database; |
|
| 42 | - $username = $databaseConfig->username; |
|
| 43 | - $password = $databaseConfig->password; |
|
| 44 | - |
|
| 45 | - self::$connectionObject = new Connection($adapter, [$server, $database], $username, $password); |
|
| 46 | - |
|
| 47 | - if ($databaseConfig->showError) |
|
| 48 | - { |
|
| 49 | - self::$connectionObject->getConnection()->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); |
|
| 50 | - } |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Returns a new connection object |
|
| 55 | - * |
|
| 56 | - * @return \PDO |
|
| 57 | - */ |
|
| 58 | - public static function getConnection() : \PDO |
|
| 59 | - { |
|
| 60 | - self::bootstrap(); |
|
| 61 | - return self::$connectionObject->getConnection(); |
|
| 62 | - } |
|
| 24 | + /** |
|
| 25 | + * @var \PDO $connectionObject |
|
| 26 | + */ |
|
| 27 | + private static $connectionObject; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Gets the config values defined in the database-config.json file |
|
| 31 | + * and uses the values to create a new connection object. |
|
| 32 | + */ |
|
| 33 | + public static function bootstrap() |
|
| 34 | + { |
|
| 35 | + $databaseConfigJson = file_get_contents(Constant::getGlobals()["config-dir"]["database-config"]); |
|
| 36 | + |
|
| 37 | + $databaseConfig = json_decode($databaseConfigJson); |
|
| 38 | + |
|
| 39 | + $adapter = $databaseConfig->adapter; |
|
| 40 | + $server = $databaseConfig->server; |
|
| 41 | + $database = $databaseConfig->database; |
|
| 42 | + $username = $databaseConfig->username; |
|
| 43 | + $password = $databaseConfig->password; |
|
| 44 | + |
|
| 45 | + self::$connectionObject = new Connection($adapter, [$server, $database], $username, $password); |
|
| 46 | + |
|
| 47 | + if ($databaseConfig->showError) |
|
| 48 | + { |
|
| 49 | + self::$connectionObject->getConnection()->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); |
|
| 50 | + } |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Returns a new connection object |
|
| 55 | + * |
|
| 56 | + * @return \PDO |
|
| 57 | + */ |
|
| 58 | + public static function getConnection() : \PDO |
|
| 59 | + { |
|
| 60 | + self::bootstrap(); |
|
| 61 | + return self::$connectionObject->getConnection(); |
|
| 62 | + } |
|
| 63 | 63 | } |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | { |
| 27 | 27 | $configJson = file_get_contents(Constant::getGlobals()["config-dir"]["http-headers-config"]); |
| 28 | 28 | |
| 29 | - self::$headers = json_decode($configJson, true); |
|
| 29 | + self::$headers = json_decode($configJson, true); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | public static function get($url, $extraHeaders = []) |
@@ -26,9 +26,9 @@ |
||
| 26 | 26 | { |
| 27 | 27 | $configJson = file_get_contents(Constant::getGlobals()["config-dir"]["elasticsearch-config"]); |
| 28 | 28 | |
| 29 | - $config = json_decode($configJson, true); |
|
| 29 | + $config = json_decode($configJson, true); |
|
| 30 | 30 | |
| 31 | - self::$clientObject = \Elasticsearch\ClientBuilder::create()->setHosts($config["hosts"])->build(); |
|
| 31 | + self::$clientObject = \Elasticsearch\ClientBuilder::create()->setHosts($config["hosts"])->build(); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public static function getClient() |
@@ -22,12 +22,12 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class DatabaseLog implements LogInterface |
| 24 | 24 | { |
| 25 | - public static function logDeprecated(string $databaseUserId, string $event, string $objectSchema, string $object, string $tSql) |
|
| 26 | - { |
|
| 27 | - $insertBuilder = (new Builder("QueryBuilder", "Insert"))->getBuilder(); |
|
| 28 | - try { |
|
| 29 | - $insertBuilder |
|
| 30 | - ->into(' |
|
| 25 | + public static function logDeprecated(string $databaseUserId, string $event, string $objectSchema, string $object, string $tSql) |
|
| 26 | + { |
|
| 27 | + $insertBuilder = (new Builder("QueryBuilder", "Insert"))->getBuilder(); |
|
| 28 | + try { |
|
| 29 | + $insertBuilder |
|
| 30 | + ->into(' |
|
| 31 | 31 | [Logs].[DatabaseLog] |
| 32 | 32 | ( |
| 33 | 33 | PostTime, |
@@ -38,25 +38,25 @@ discard block |
||
| 38 | 38 | TSQL |
| 39 | 39 | ) |
| 40 | 40 | ') |
| 41 | - ->values([ |
|
| 42 | - 'GETDATE()', |
|
| 43 | - QB::wrapString($databaseUserId, "'"), |
|
| 44 | - QB::wrapString((string)$event, "'"), |
|
| 45 | - QB::wrapString($objectSchema, "'"), |
|
| 46 | - QB::wrapString($object, "'"), |
|
| 47 | - QB::wrapString(str_replace("'", "\"", $tSql), "'") |
|
| 48 | - ]); |
|
| 41 | + ->values([ |
|
| 42 | + 'GETDATE()', |
|
| 43 | + QB::wrapString($databaseUserId, "'"), |
|
| 44 | + QB::wrapString((string)$event, "'"), |
|
| 45 | + QB::wrapString($objectSchema, "'"), |
|
| 46 | + QB::wrapString($object, "'"), |
|
| 47 | + QB::wrapString(str_replace("'", "\"", $tSql), "'") |
|
| 48 | + ]); |
|
| 49 | 49 | |
| 50 | - DBConnectionFactory::getConnection()->query((string)$insertBuilder); |
|
| 51 | - } catch (\PDOException $e) { |
|
| 52 | - echo $e->getMessage(); |
|
| 53 | - throw new SQLException(sprintf( |
|
| 54 | - "Unable to store database log" |
|
| 55 | - ), 1); |
|
| 56 | - } |
|
| 57 | - } |
|
| 50 | + DBConnectionFactory::getConnection()->query((string)$insertBuilder); |
|
| 51 | + } catch (\PDOException $e) { |
|
| 52 | + echo $e->getMessage(); |
|
| 53 | + throw new SQLException(sprintf( |
|
| 54 | + "Unable to store database log" |
|
| 55 | + ), 1); |
|
| 56 | + } |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - public static function log(string $databaseUserId, string $event, string $objectSchema, string $object, string $tSql){ |
|
| 59 | + public static function log(string $databaseUserId, string $event, string $objectSchema, string $object, string $tSql){ |
|
| 60 | 60 | |
| 61 | - } |
|
| 61 | + } |
|
| 62 | 62 | } |
@@ -22,21 +22,21 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class ErrorLog implements LogInterface |
| 24 | 24 | { |
| 25 | - public static function logDeprecated(int $databaseUserId, string $errorNumber, string $errorSeverity, string $errorMessage, string $errorObject=null) |
|
| 26 | - { |
|
| 27 | - /** |
|
| 28 | - * For now I am not doing anything with $errorObject yet. |
|
| 29 | - * |
|
| 30 | - * As soon as it can be properly serialized for the MSSQL Server db |
|
| 31 | - * it shall be saved in the database. |
|
| 32 | - * |
|
| 33 | - * FUNNY: I'M GONNA INTENTIONALLY LEAVE THIS COMMIT FOR MY AMUSEMENT |
|
| 34 | - * $errorObject, wasn't the issue. My DB schema was. |
|
| 35 | - */ |
|
| 36 | - $insertBuilder = (new Builder("QueryBuilder", "Insert"))->getBuilder(); |
|
| 25 | + public static function logDeprecated(int $databaseUserId, string $errorNumber, string $errorSeverity, string $errorMessage, string $errorObject=null) |
|
| 26 | + { |
|
| 27 | + /** |
|
| 28 | + * For now I am not doing anything with $errorObject yet. |
|
| 29 | + * |
|
| 30 | + * As soon as it can be properly serialized for the MSSQL Server db |
|
| 31 | + * it shall be saved in the database. |
|
| 32 | + * |
|
| 33 | + * FUNNY: I'M GONNA INTENTIONALLY LEAVE THIS COMMIT FOR MY AMUSEMENT |
|
| 34 | + * $errorObject, wasn't the issue. My DB schema was. |
|
| 35 | + */ |
|
| 36 | + $insertBuilder = (new Builder("QueryBuilder", "Insert"))->getBuilder(); |
|
| 37 | 37 | |
| 38 | - $insertBuilder |
|
| 39 | - ->into(' |
|
| 38 | + $insertBuilder |
|
| 39 | + ->into(' |
|
| 40 | 40 | [Logs].[ErrorLog] |
| 41 | 41 | ( |
| 42 | 42 | ErrorTime, |
@@ -46,18 +46,18 @@ discard block |
||
| 46 | 46 | ErrorMessage |
| 47 | 47 | ) |
| 48 | 48 | ') |
| 49 | - ->values([ |
|
| 50 | - 'GETDATE()', |
|
| 51 | - $databaseUserId, |
|
| 52 | - QB::wrapString($errorNumber, "'"), |
|
| 53 | - QB::wrapString($errorSeverity, "'"), |
|
| 54 | - QB::wrapString($errorMessage, "'") |
|
| 55 | - ]); |
|
| 49 | + ->values([ |
|
| 50 | + 'GETDATE()', |
|
| 51 | + $databaseUserId, |
|
| 52 | + QB::wrapString($errorNumber, "'"), |
|
| 53 | + QB::wrapString($errorSeverity, "'"), |
|
| 54 | + QB::wrapString($errorMessage, "'") |
|
| 55 | + ]); |
|
| 56 | 56 | |
| 57 | - DBConnectionFactory::getConnection()->query((string)$insertBuilder); |
|
| 58 | - } |
|
| 57 | + DBConnectionFactory::getConnection()->query((string)$insertBuilder); |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - public static function log(int $databaseUserId, string $errorNumber, string $errorSeverity, string $errorMessage, string $errorObject=null) { |
|
| 60 | + public static function log(int $databaseUserId, string $errorNumber, string $errorSeverity, string $errorMessage, string $errorObject=null) { |
|
| 61 | 61 | |
| 62 | - } |
|
| 62 | + } |
|
| 63 | 63 | } |