| Total Complexity | 121 |
| Total Lines | 874 |
| Duplicated Lines | 0 % |
| Changes | 6 | ||
| Bugs | 0 | Features | 0 |
Complex classes like Util often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Util, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 35 | class Util |
||
| 36 | { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param $options |
||
| 40 | * @param $manual_attributes |
||
| 41 | * @param $section |
||
| 42 | * |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | public static function overrideConfigurationArray($options, $manual_attributes, $section): string |
||
| 46 | { |
||
| 47 | $result_config = ''; |
||
| 48 | if ($manual_attributes !== null && isset($manual_attributes[$section])) { |
||
| 49 | foreach ($manual_attributes[$section] as $key => $value) { |
||
| 50 | if ($key === 'type') { |
||
| 51 | continue; |
||
| 52 | } |
||
| 53 | $options[$key] = $value; |
||
| 54 | } |
||
| 55 | } |
||
| 56 | foreach ($options as $key => $value) { |
||
| 57 | if (empty($value) || empty($key)) { |
||
| 58 | continue; |
||
| 59 | } |
||
| 60 | if (is_array($value)) { |
||
| 61 | array_unshift($value, ' '); |
||
| 62 | $result_config .= trim(implode("\n{$key} = ", $value)) . "\n"; |
||
| 63 | } else { |
||
| 64 | $result_config .= "{$key} = {$value}\n"; |
||
| 65 | } |
||
| 66 | } |
||
| 67 | |||
| 68 | return "$result_config\n"; |
||
| 69 | } |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Инициация телефонного звонка. |
||
| 73 | * |
||
| 74 | * @param $peer_number |
||
| 75 | * @param $peer_mobile |
||
| 76 | * @param $dest_number |
||
| 77 | * |
||
| 78 | * @return array |
||
| 79 | * @throws Exception |
||
| 80 | */ |
||
| 81 | public static function amiOriginate($peer_number, $peer_mobile, $dest_number): array |
||
| 82 | { |
||
| 83 | $am = self::getAstManager('off'); |
||
| 84 | $channel = 'Local/' . $peer_number . '@internal-originate'; |
||
| 85 | $context = 'all_peers'; |
||
| 86 | $IS_ORGNT = self::generateRandomString(); |
||
| 87 | $variable = "_IS_ORGNT={$IS_ORGNT},pt1c_cid={$dest_number},_extenfrom1c={$peer_number},__peer_mobile={$peer_mobile},_FROM_PEER={$peer_number}"; |
||
| 88 | |||
| 89 | return $am->Originate( |
||
| 90 | $channel, |
||
| 91 | $dest_number, |
||
| 92 | $context, |
||
| 93 | '1', |
||
| 94 | null, |
||
| 95 | null, |
||
| 96 | null, |
||
| 97 | null, |
||
| 98 | $variable, |
||
| 99 | null, |
||
| 100 | true |
||
| 101 | ); |
||
| 102 | } |
||
| 103 | |||
| 104 | /** |
||
| 105 | * Получаем объект менеджер asterisk. |
||
| 106 | * |
||
| 107 | * @param string $events |
||
| 108 | * |
||
| 109 | * @return AsteriskManager |
||
| 110 | */ |
||
| 111 | public static function getAstManager($events = 'on'): AsteriskManager |
||
| 112 | { |
||
| 113 | if ($events === 'on') { |
||
| 114 | $nameService = 'amiListner'; |
||
| 115 | } else { |
||
| 116 | $nameService = 'amiCommander'; |
||
| 117 | } |
||
| 118 | |||
| 119 | $di = Di::getDefault(); |
||
| 120 | $am = $di->getShared($nameService); |
||
| 121 | if (is_resource($am->socket)) { |
||
| 122 | return $am; |
||
| 123 | } |
||
| 124 | |||
| 125 | return $di->get($nameService); |
||
| 126 | } |
||
| 127 | |||
| 128 | /** |
||
| 129 | * Генератор произвольной строки. |
||
| 130 | * |
||
| 131 | * @param int $length |
||
| 132 | * |
||
| 133 | * @return string |
||
| 134 | */ |
||
| 135 | public static function generateRandomString($length = 10): string |
||
| 136 | { |
||
| 137 | $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; |
||
| 138 | $charactersLength = strlen($characters); |
||
| 139 | $randomString = ''; |
||
| 140 | for ($i = 0; $i < $length; $i++) { |
||
| 141 | try { |
||
| 142 | $randomString .= $characters[random_int(0, $charactersLength - 1)]; |
||
| 143 | } catch (Throwable $e) { |
||
| 144 | $randomString = ''; |
||
| 145 | } |
||
| 146 | } |
||
| 147 | |||
| 148 | return $randomString; |
||
| 149 | } |
||
| 150 | |||
| 151 | /** |
||
| 152 | * Json validate |
||
| 153 | * |
||
| 154 | * @param $jsonString |
||
| 155 | * |
||
| 156 | * @return bool |
||
| 157 | */ |
||
| 158 | public static function isJson($jsonString): bool |
||
| 159 | { |
||
| 160 | json_decode($jsonString, true); |
||
| 161 | |||
| 162 | return (json_last_error() === JSON_ERROR_NONE); |
||
| 163 | } |
||
| 164 | |||
| 165 | /** |
||
| 166 | * Возвращает размер файла в Мб. |
||
| 167 | * |
||
| 168 | * @param $filename |
||
| 169 | * |
||
| 170 | * @return float|int |
||
| 171 | */ |
||
| 172 | public static function mFileSize($filename) |
||
| 173 | { |
||
| 174 | $size = 0; |
||
| 175 | if (file_exists($filename)) { |
||
| 176 | $tmp_size = filesize($filename); |
||
| 177 | if ($tmp_size !== false) { |
||
| 178 | // Получим размер в Мб. |
||
| 179 | $size = $tmp_size; |
||
| 180 | } |
||
| 181 | } |
||
| 182 | |||
| 183 | return $size; |
||
| 184 | } |
||
| 185 | |||
| 186 | /** |
||
| 187 | * Возвращает указанное количество X. |
||
| 188 | * |
||
| 189 | * @param $length |
||
| 190 | * |
||
| 191 | * @return string |
||
| 192 | */ |
||
| 193 | public static function getExtensionX($length): string |
||
| 194 | { |
||
| 195 | $extension = ''; |
||
| 196 | for ($i = 0; $i < $length; $i++) { |
||
| 197 | $extension .= 'X'; |
||
| 198 | } |
||
| 199 | |||
| 200 | return $extension; |
||
| 201 | } |
||
| 202 | |||
| 203 | /** |
||
| 204 | * Проверяет существование файла. |
||
| 205 | * |
||
| 206 | * @param $filename |
||
| 207 | * |
||
| 208 | * @return bool |
||
| 209 | */ |
||
| 210 | public static function recFileExists($filename): ?bool |
||
| 211 | { |
||
| 212 | return (file_exists($filename) && filesize($filename) > 0); |
||
| 213 | } |
||
| 214 | |||
| 215 | /** |
||
| 216 | * Если переданный параметр - число, то будет возвращена дата. |
||
| 217 | * |
||
| 218 | * @param $data |
||
| 219 | * |
||
| 220 | * @return string |
||
| 221 | */ |
||
| 222 | public static function numberToDate($data): string |
||
| 223 | { |
||
| 224 | $re_number = '/^\d+.\d+$/'; |
||
| 225 | preg_match_all($re_number, $data, $matches, PREG_SET_ORDER, 0); |
||
| 226 | if (count($matches) > 0) { |
||
| 227 | $data = date('Y.m.d-H:i:s', $data); |
||
| 228 | } |
||
| 229 | |||
| 230 | return $data; |
||
| 231 | } |
||
| 232 | |||
| 233 | /** |
||
| 234 | * Записывает данные в файл. |
||
| 235 | * |
||
| 236 | * @param $filename |
||
| 237 | * @param $data |
||
| 238 | */ |
||
| 239 | public static function fileWriteContent($filename, $data): void |
||
| 267 | } |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Пишем лог в базу данных. |
||
| 271 | * |
||
| 272 | * @param $app |
||
| 273 | * @param $data_obj |
||
| 274 | */ |
||
| 275 | public static function logMsgDb($app, $data_obj): void |
||
| 276 | { |
||
| 277 | try { |
||
| 278 | $data = new CallEventsLogs(); |
||
| 279 | $data->writeAttribute('eventtime', date("Y-m-d H:i:s")); |
||
| 280 | $data->writeAttribute('app', $app); |
||
| 281 | $data->writeAttribute('datajson', json_encode($data_obj, JSON_UNESCAPED_SLASHES)); |
||
| 282 | |||
| 283 | if (is_array($data_obj) && isset($data_obj['linkedid'])) { |
||
| 284 | $data->writeAttribute('linkedid', $data_obj['linkedid']); |
||
| 285 | } |
||
| 286 | $data->save(); |
||
| 287 | } catch (Throwable $e) { |
||
| 288 | self::sysLogMsg(__METHOD__, $e->getMessage(), LOG_ERR); |
||
| 289 | } |
||
| 290 | } |
||
| 291 | |||
| 292 | /** |
||
| 293 | * Adds messages to Syslog. |
||
| 294 | * |
||
| 295 | * @param string $ident category, class, method |
||
| 296 | * @param string $message log message |
||
| 297 | * @param int $level log level https://docs.phalcon.io/4.0/en/logger#constants |
||
| 298 | * |
||
| 299 | */ |
||
| 300 | public static function sysLogMsg(string $ident, string $message, $level = LOG_WARNING): void |
||
| 305 | } |
||
| 306 | |||
| 307 | /** |
||
| 308 | * Возвращает текущую дату в виде строки с точностью до милисекунд. |
||
| 309 | * |
||
| 310 | * @return string |
||
| 311 | */ |
||
| 312 | public static function getNowDate(): ?string |
||
| 323 | } |
||
| 324 | |||
| 325 | /** |
||
| 326 | * Получает расширение файла. |
||
| 327 | * |
||
| 328 | * @param $filename |
||
| 329 | * |
||
| 330 | * @return mixed |
||
| 331 | */ |
||
| 332 | public static function getExtensionOfFile($filename) |
||
| 337 | } |
||
| 338 | |||
| 339 | /** |
||
| 340 | * Удаляет расширение файла. |
||
| 341 | * |
||
| 342 | * @param $filename |
||
| 343 | * @param string $delimiter |
||
| 344 | * |
||
| 345 | * @return string |
||
| 346 | */ |
||
| 347 | public static function trimExtensionForFile($filename, $delimiter = '.'): string |
||
| 357 | } |
||
| 358 | |||
| 359 | /** |
||
| 360 | * Получаем размер файла / директории. |
||
| 361 | * |
||
| 362 | * @param $filename |
||
| 363 | * |
||
| 364 | * @return float |
||
| 365 | */ |
||
| 366 | public static function getSizeOfFile($filename): float |
||
| 381 | } |
||
| 382 | |||
| 383 | /** |
||
| 384 | * Return full path to executable binary |
||
| 385 | * |
||
| 386 | * @param string $cmd - name of file |
||
| 387 | * |
||
| 388 | * @return string |
||
| 389 | */ |
||
| 390 | public static function which(string $cmd): string |
||
| 391 | { |
||
| 392 | global $_ENV; |
||
| 393 | if (array_key_exists('PATH', $_ENV)) { |
||
| 394 | $binaryFolders = $_ENV['PATH']; |
||
| 395 | |||
| 396 | foreach (explode(':', $binaryFolders) as $path) { |
||
| 397 | if (is_executable("{$path}/{$cmd}")) { |
||
| 398 | return "{$path}/{$cmd}"; |
||
| 399 | } |
||
| 400 | } |
||
| 401 | } |
||
| 402 | $binaryFolders = |
||
| 403 | [ |
||
| 404 | '/bin', |
||
| 405 | '/sbin', |
||
| 406 | '/usr/bin', |
||
| 407 | '/usr/sbin', |
||
| 408 | '/usr/local/bin', |
||
| 409 | '/usr/local/sbin', |
||
| 410 | ]; |
||
| 411 | foreach ($binaryFolders as $path) { |
||
| 412 | if (is_executable("{$path}/{$cmd}")) { |
||
| 413 | return "{$path}/{$cmd}"; |
||
| 414 | } |
||
| 415 | } |
||
| 416 | |||
| 417 | return $cmd; |
||
| 418 | } |
||
| 419 | |||
| 420 | /** |
||
| 421 | * DEPRICATED |
||
| 422 | * Executes command exec(). |
||
| 423 | * |
||
| 424 | * @param $command |
||
| 425 | * @param $outArr |
||
| 426 | * @param $retVal |
||
| 427 | * |
||
| 428 | * @return int |
||
| 429 | */ |
||
| 430 | public static function mwExec($command, &$outArr = null, &$retVal = null): int |
||
| 431 | { |
||
| 432 | self::sysLogMsg('Util', 'Deprecated call ' . __METHOD__ . ' from ' . static::class, LOG_DEBUG); |
||
| 433 | |||
| 434 | return Processes::mwExec($command, $outArr, $retVal); |
||
| 435 | } |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Устанавливаем шрифт для консоли. |
||
| 439 | */ |
||
| 440 | public static function setCyrillicFont(): void |
||
| 444 | } |
||
| 445 | |||
| 446 | /** |
||
| 447 | * Получить перевод строки текста. |
||
| 448 | * |
||
| 449 | * @param $text |
||
| 450 | * |
||
| 451 | * @return mixed |
||
| 452 | */ |
||
| 453 | public static function translate($text) |
||
| 454 | { |
||
| 455 | $di = Di::getDefault(); |
||
| 456 | if ($di !== null) { |
||
| 457 | return $di->getShared('translation')->_($text); |
||
| 458 | } else { |
||
| 459 | return $text; |
||
| 460 | } |
||
| 461 | } |
||
| 462 | |||
| 463 | /** |
||
| 464 | * |
||
| 465 | * Delete a directory RECURSIVELY |
||
| 466 | * |
||
| 467 | * @param string $dir - directory path |
||
| 468 | * |
||
| 469 | * @link http://php.net/manual/en/function.rmdir.php |
||
| 470 | */ |
||
| 471 | public static function rRmDir(string $dir): void |
||
| 472 | { |
||
| 473 | if (is_dir($dir)) { |
||
| 474 | $objects = scandir($dir); |
||
| 475 | foreach ($objects as $object) { |
||
| 476 | if ($object != "." && $object != "..") { |
||
| 477 | if (filetype($dir . "/" . $object) == "dir") { |
||
| 478 | self::rRmDir($dir . "/" . $object); |
||
| 479 | } else { |
||
| 480 | unlink($dir . "/" . $object); |
||
| 481 | } |
||
| 482 | } |
||
| 483 | } |
||
| 484 | if ($objects !== false) { |
||
| 485 | reset($objects); |
||
| 486 | } |
||
| 487 | rmdir($dir); |
||
| 488 | } |
||
| 489 | } |
||
| 490 | |||
| 491 | /** |
||
| 492 | * Генерация сертификата средствами openssl. |
||
| 493 | * |
||
| 494 | * @param ?array $options |
||
| 495 | * @param ?array $config_args_pkey |
||
| 496 | * @param ?array $config_args_csr |
||
| 497 | * |
||
| 498 | * @return array |
||
| 499 | */ |
||
| 500 | public static function generateSslCert($options = null, $config_args_pkey = null, $config_args_csr = null): array |
||
| 537 | } |
||
| 538 | |||
| 539 | /** |
||
| 540 | * @return bool |
||
| 541 | */ |
||
| 542 | public static function isSystemctl(): bool |
||
| 545 | } |
||
| 546 | |||
| 547 | public static function isDocker(): bool |
||
| 548 | { |
||
| 550 | } |
||
| 551 | |||
| 552 | /** |
||
| 553 | * Выводить текстовое сообщение "done" подсвечивает зеленым цветом. |
||
| 554 | */ |
||
| 555 | public static function echoDone(bool $result=true): void |
||
| 556 | { |
||
| 557 | if($result === false){ |
||
| 558 | echo "\033[31;1mFAIL\033[0m \n"; |
||
| 559 | }else{ |
||
| 560 | echo "\033[32;1mDONE\033[0m \n"; |
||
| 561 | } |
||
| 562 | } |
||
| 563 | |||
| 564 | public static function echoResult(string $message, bool $result = true):void |
||
| 565 | { |
||
| 566 | $cols = self::getCountCols(); |
||
| 567 | $spaces = str_repeat('.', $cols - strlen($message) - 8); |
||
| 568 | echo "\r".$message.$spaces; |
||
| 569 | self::echoDone($result); |
||
| 570 | } |
||
| 571 | |||
| 572 | public static function getCountCols():string |
||
| 573 | { |
||
| 574 | return min(shell_exec('tput cols'), 80); |
||
| 575 | } |
||
| 576 | |||
| 577 | /** |
||
| 578 | * Создание символической ссылки, если необходимо. |
||
| 579 | * |
||
| 580 | * @param $target |
||
| 581 | * @param $link |
||
| 582 | * @param bool $isFile |
||
| 583 | * |
||
| 584 | * @return bool |
||
| 585 | */ |
||
| 586 | public static function createUpdateSymlink($target, $link, $isFile=false): bool |
||
| 587 | { |
||
| 588 | $need_create_link = true; |
||
| 589 | if (is_link($link)) { |
||
| 590 | $old_target = readlink($link); |
||
| 591 | $need_create_link = ($old_target != $target); |
||
| 592 | // Если необходимо, удаляем старую ссылку. |
||
| 593 | if ($need_create_link) { |
||
| 594 | $cpPath = self::which('cp'); |
||
| 595 | Processes::mwExec("{$cpPath} {$old_target}/* {$target}"); |
||
| 596 | unlink($link); |
||
| 597 | } |
||
| 598 | } elseif (is_dir($link)) { |
||
| 599 | // Это должна быть именно ссылка. Файл удаляем. |
||
| 600 | rmdir($link); |
||
| 601 | } elseif (file_exists($link)) { |
||
| 602 | // Это должна быть именно ссылка. Файл удаляем. |
||
| 603 | unlink($link); |
||
| 604 | } |
||
| 605 | if($isFile === false){ |
||
| 606 | self::mwMkdir($target); |
||
| 607 | } |
||
| 608 | if ($need_create_link) { |
||
| 609 | $lnPath = self::which('ln'); |
||
| 610 | Processes::mwExec("{$lnPath} -s {$target} {$link}"); |
||
| 611 | } |
||
| 612 | |||
| 613 | return $need_create_link; |
||
| 614 | } |
||
| 615 | |||
| 616 | /** |
||
| 617 | * Create folder if it not exist. |
||
| 618 | * |
||
| 619 | * @param $parameters string one or multiple paths separated by space |
||
| 620 | * |
||
| 621 | * @param bool $addWWWRights |
||
| 622 | * |
||
| 623 | * @return bool |
||
| 624 | */ |
||
| 625 | public static function mwMkdir(string $parameters, bool $addWWWRights = false): bool |
||
| 626 | { |
||
| 627 | $result = true; |
||
| 628 | if (posix_getuid() === 0) { |
||
| 629 | $arrPaths = explode(' ', $parameters); |
||
| 630 | if (count($arrPaths) > 0) { |
||
| 631 | foreach ($arrPaths as $path) { |
||
| 632 | if ( ! empty($path) |
||
| 633 | && ! file_exists($path) |
||
| 634 | && ! mkdir($path, 0755, true) |
||
| 635 | && ! is_dir($path)) { |
||
| 636 | $result = false; |
||
| 637 | self::sysLogMsg('Util', 'Error on create folder ' . $path, LOG_ERR); |
||
| 638 | } |
||
| 639 | if ($addWWWRights) { |
||
| 640 | self::addRegularWWWRights($path); |
||
| 641 | } |
||
| 642 | } |
||
| 643 | } |
||
| 644 | } |
||
| 645 | |||
| 646 | return $result; |
||
| 647 | } |
||
| 648 | |||
| 649 | /** |
||
| 650 | * Apply regular rights for folders and files |
||
| 651 | * |
||
| 652 | * @param $folder |
||
| 653 | */ |
||
| 654 | public static function addRegularWWWRights($folder): void |
||
| 655 | { |
||
| 656 | if (posix_getuid() === 0) { |
||
| 657 | $findPath = self::which('find'); |
||
| 658 | $chownPath = self::which('chown'); |
||
| 659 | $chmodPath = self::which('chmod'); |
||
| 660 | Processes::mwExec("{$findPath} {$folder} -type d -exec {$chmodPath} 755 {} \;"); |
||
| 661 | Processes::mwExec("{$findPath} {$folder} -type f -exec {$chmodPath} 644 {} \;"); |
||
| 662 | Processes::mwExec("{$chownPath} -R www:www {$folder}"); |
||
| 663 | } |
||
| 664 | } |
||
| 665 | |||
| 666 | /** |
||
| 667 | * Print message and write it to syslog |
||
| 668 | * |
||
| 669 | * @param $message |
||
| 670 | */ |
||
| 671 | public static function echoWithSyslog($message): void |
||
| 672 | { |
||
| 673 | echo $message; |
||
| 674 | self::sysLogMsg(static::class, $message, LOG_INFO); |
||
| 675 | } |
||
| 676 | |||
| 677 | /** |
||
| 678 | * Apply executable rights for files |
||
| 679 | * |
||
| 680 | * @param $folder |
||
| 681 | */ |
||
| 682 | public static function addExecutableRights($folder): void |
||
| 683 | { |
||
| 684 | if (posix_getuid() === 0) { |
||
| 685 | $findPath = self::which('find'); |
||
| 686 | $chmodPath = self::which('chmod'); |
||
| 687 | Processes::mwExec("{$findPath} {$folder} -type f -exec {$chmodPath} 755 {} \;"); |
||
| 688 | } |
||
| 689 | } |
||
| 690 | |||
| 691 | /** |
||
| 692 | * Разбор INI конфига |
||
| 693 | * |
||
| 694 | * @param string $manual_attributes |
||
| 695 | * |
||
| 696 | * @return array |
||
| 697 | */ |
||
| 698 | public static function parseIniSettings(string $manual_attributes): array |
||
| 699 | { |
||
| 700 | $tmp_data = base64_decode($manual_attributes); |
||
| 701 | if (base64_encode($tmp_data) === $manual_attributes) { |
||
| 702 | $manual_attributes = $tmp_data; |
||
| 703 | } |
||
| 704 | unset($tmp_data); |
||
| 705 | // TRIMMING |
||
| 706 | $tmp_arr = explode("\n", $manual_attributes); |
||
| 707 | foreach ($tmp_arr as &$row) { |
||
| 708 | $row = trim($row); |
||
| 709 | $pos = strpos($row, ']'); |
||
| 710 | if ($pos !== false && strpos($row, '[') === 0) { |
||
| 711 | $row = "\n" . substr($row, 0, $pos); |
||
| 712 | } |
||
| 713 | } |
||
| 714 | unset($row); |
||
| 715 | $manual_attributes = implode("\n", $tmp_arr); |
||
| 716 | // TRIMMING END |
||
| 717 | |||
| 718 | $manual_data = []; |
||
| 719 | $sections = explode("\n[", str_replace(']', '', $manual_attributes)); |
||
| 720 | foreach ($sections as $section) { |
||
| 721 | $data_rows = explode("\n", trim($section)); |
||
| 722 | $section_name = trim($data_rows[0] ?? ''); |
||
| 723 | if ( ! empty($section_name)) { |
||
| 724 | unset($data_rows[0]); |
||
| 725 | $manual_data[$section_name] = []; |
||
| 726 | foreach ($data_rows as $row) { |
||
| 727 | if (strpos($row, '=') === false) { |
||
| 728 | continue; |
||
| 729 | } |
||
| 730 | $key = ''; |
||
| 731 | $arr_value = explode('=', $row); |
||
| 732 | if (count($arr_value) > 1) { |
||
| 733 | $key = trim($arr_value[0]); |
||
| 734 | unset($arr_value[0]); |
||
| 735 | $value = trim(implode('=', $arr_value)); |
||
| 736 | } |
||
| 737 | if (empty($value) || empty($key)) { |
||
| 738 | continue; |
||
| 739 | } |
||
| 740 | $manual_data[$section_name][$key] = $value; |
||
| 741 | } |
||
| 742 | } |
||
| 743 | } |
||
| 744 | |||
| 745 | return $manual_data; |
||
| 746 | } |
||
| 747 | |||
| 748 | /** |
||
| 749 | * Converts multidimensional array into single array |
||
| 750 | * |
||
| 751 | * @param $array |
||
| 752 | * |
||
| 753 | * @return array |
||
| 754 | */ |
||
| 755 | public static function flattenArray(array $array) |
||
| 756 | { |
||
| 757 | $result = []; |
||
| 758 | foreach ($array as $value) { |
||
| 759 | if (is_array($value)) { |
||
| 760 | $result = array_merge($result, self::flattenArray($value)); |
||
| 761 | } else { |
||
| 762 | $result[] = $value; |
||
| 763 | } |
||
| 764 | } |
||
| 765 | |||
| 766 | return $result; |
||
| 767 | } |
||
| 768 | |||
| 769 | /** |
||
| 770 | * Try to find full path to php file by class name |
||
| 771 | * |
||
| 772 | * @param $className |
||
| 773 | * |
||
| 774 | * @return string|null |
||
| 775 | */ |
||
| 776 | public static function getFilePathByClassName($className): ?string |
||
| 777 | { |
||
| 778 | $filename = null; |
||
| 779 | try { |
||
| 780 | $reflection = new ReflectionClass($className); |
||
| 781 | $filename = $reflection->getFileName(); |
||
| 782 | } catch (ReflectionException $exception) { |
||
| 783 | self::sysLogMsg(__METHOD__, 'ReflectionException ' . $exception->getMessage(), LOG_ERR); |
||
| 784 | } |
||
| 785 | |||
| 786 | return $filename; |
||
| 787 | } |
||
| 788 | |||
| 789 | /** |
||
| 790 | * DEPRICATED |
||
| 791 | * Возвращает PID процесса по его имени. |
||
| 792 | * |
||
| 793 | * @param $name |
||
| 794 | * @param string $exclude |
||
| 795 | * |
||
| 796 | * @return string |
||
| 797 | */ |
||
| 798 | public static function getPidOfProcess($name, $exclude = ''): string |
||
| 799 | { |
||
| 800 | self::sysLogMsg('Util', 'Deprecated call ' . __METHOD__ . ' from ' . static::class, LOG_DEBUG); |
||
| 801 | |||
| 802 | return Processes::getPidOfProcess($name, $exclude); |
||
| 803 | } |
||
| 804 | |||
| 805 | /** |
||
| 806 | * DEPRICATED |
||
| 807 | * Manages a daemon/worker process |
||
| 808 | * Returns process statuses by name of it |
||
| 809 | * |
||
| 810 | * @param $cmd |
||
| 811 | * @param $param |
||
| 812 | * @param $proc_name |
||
| 813 | * @param $action |
||
| 814 | * @param $out_file |
||
| 815 | * |
||
| 816 | * @return array | bool |
||
| 817 | */ |
||
| 818 | public static function processWorker($cmd, $param, $proc_name, $action, $out_file = '/dev/null') |
||
| 819 | { |
||
| 820 | self::sysLogMsg('Util', 'Deprecated call ' . __METHOD__ . ' from ' . static::class, LOG_DEBUG); |
||
| 821 | |||
| 822 | return Processes::processWorker($cmd, $param, $proc_name, $action, $out_file); |
||
| 823 | } |
||
| 824 | |||
| 825 | /** |
||
| 826 | * DEPRICATED |
||
| 827 | * Process PHP workers |
||
| 828 | * |
||
| 829 | * @param string $className |
||
| 830 | * @param string $param |
||
| 831 | * @param string $action |
||
| 832 | */ |
||
| 833 | public static function processPHPWorker( |
||
| 834 | string $className, |
||
| 835 | string $param = 'start', |
||
| 836 | string $action = 'restart' |
||
| 837 | ): void { |
||
| 838 | self::sysLogMsg('Util', 'Deprecated call ' . __METHOD__ . ' from ' . static::class, LOG_DEBUG); |
||
| 839 | Processes::processPHPWorker($className, $param, $action); |
||
| 840 | } |
||
| 841 | |||
| 842 | /** |
||
| 843 | * DEPRICATED |
||
| 844 | * Kills process/daemon by name |
||
| 845 | * |
||
| 846 | * @param $procName |
||
| 847 | * |
||
| 848 | * @return int|null |
||
| 849 | */ |
||
| 850 | public static function killByName($procName): ?int |
||
| 855 | } |
||
| 856 | |||
| 857 | /** |
||
| 858 | * DEPRICATED |
||
| 859 | * Executes command exec() as background process. |
||
| 860 | * |
||
| 861 | * @param $command |
||
| 862 | * @param $out_file |
||
| 863 | * @param $sleep_time |
||
| 864 | */ |
||
| 865 | public static function mwExecBg($command, $out_file = '/dev/null', $sleep_time = 0): void |
||
| 866 | { |
||
| 867 | self::sysLogMsg('Util', 'Deprecated call ' . __METHOD__ . ' from ' . static::class, LOG_DEBUG); |
||
| 868 | Processes::mwExecBg($command, $out_file, $sleep_time); |
||
| 869 | } |
||
| 870 | |||
| 871 | /** |
||
| 872 | * DEPRICATED |
||
| 873 | * Executes command exec() as background process with an execution timeout. |
||
| 874 | * |
||
| 875 | * @param $command |
||
| 876 | * @param int $timeout |
||
| 877 | * @param string $logname |
||
| 878 | */ |
||
| 879 | public static function mwExecBgWithTimeout($command, $timeout = 4, $logname = '/dev/null'): void |
||
| 883 | } |
||
| 884 | |||
| 885 | /** |
||
| 886 | * DEPRICATED |
||
| 887 | * Executes multiple commands. |
||
| 888 | * |
||
| 889 | * @param $arr_cmds |
||
| 890 | * @param array $out |
||
| 891 | * @param string $logname |
||
| 892 | */ |
||
| 893 | public static function mwExecCommands($arr_cmds, &$out = [], $logname = ''): void |
||
| 897 | } |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Добавляем задачу для уведомлений. |
||
| 901 | * |
||
| 902 | * @param string $tube |
||
| 903 | * @param $data |
||
| 904 | */ |
||
| 905 | public function addJobToBeanstalk(string $tube, $data): void |
||
| 909 | } |
||
| 910 | |||
| 912 | } |