123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- namespace app\models;
- use app\models\entity\Tasks;
- use app\models\entity\Accounts;
- class ElasticLog
- {
- const LOG_PATH = 'runtime/logs/elastic/';
-
- public static function command(int $commandId, $eventName = 'Создание')
- {
- if (!$commandId) return false;
- try {
- $command = Tasks::findOne($commandId);
- $task = Tasks::findOne($command->parent_id);
- $commandType = $command->tasktypes;
- $employee = Accounts::findOne($task->assignees_arr ?? 0);
- $taskString = '(' . ($task->id ?? 0) . ', "' . ($task->tasktypes->letter ?? '?') . '", ' . ($task->tasktypes->id ?? 0) . ')';
- $projectString = '(' . ($task->project->id ?? 0) . ', "' . ($task->project->loco_type ?? '') . '", ' . ($task->project->loco_number ?? 0) . ')';
- $employeeString = '(' . ($employee->id ?? 0) . ', "' . ($employee->name ?? '') . '")';
- if ($eventName == 'Создание') {
- $text = $eventName . ' "' . $commandType->name ?? '';
- } else {
- $text = $eventName . ' "' . ($commandType->name ?? '') . '" ' . $taskString . ' ' . $projectString . ' ' . $employeeString;
- }
- self::log($text);
- return true;
- } catch (\Exception $e) {
- self::error('command:' . $e->getMessage());
- return false;
- }
- }
-
- public static function eipp($data, $workId, $userId = 0, $request = true)
- {
- if (is_array($data)) $data = serialize($data);
- try {
- $text = ($request ? 'запрос' : 'ответ') . ': ';
- $text .= '"' . ($workId ?? '') . '", ';
- $text .= ($userId ?? 0) . ', ';
- $text .= $data;
- self::log($text, 'eipp');
- return true;
- } catch (\Exception $e) {
- self::error('eipp: ' . $e->getMessage());
- return false;
- }
- }
-
- protected static function log(string $text, string $dir = 'commands')
- {
- $logDir = self::getLogDir();
- if (!is_dir($logDir)) mkdir($logDir);
- $fileName = date_create()->format('Y-m-d');
- $dir = $logDir . $dir . '/' . $fileName . '.txt';
- file_put_contents($dir, self::getDateString() . ' ' . $text . "\n", FILE_APPEND);
- }
-
- protected static function error($msg)
- {
- $fileName = self::getLogDir() . 'errors.txt';
- file_put_contents($fileName, self::getDateString() . ' ' . $msg . "\n", FILE_APPEND);
- }
-
- protected static function getDateString()
- {
- try {
- $date = new \DateTime();
- } catch (\Exception $e) {
- $date = date_create();
- }
- return '[' . $date->format('d.m.Y H:i:s') . ']';
- }
-
- protected static function getLogDir()
- {
- return \Yii::$app->basePath . '/' . self::LOG_PATH;
- }
- }
|