59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use CodeIgniter\CLI\BaseCommand;
|
|
use CodeIgniter\CLI\CLI;
|
|
use App\Controllers\HumanResource\HumanResourceController;
|
|
use App\Services\LoggerService;
|
|
|
|
class HumanResource extends BaseCommand
|
|
{
|
|
/**
|
|
* The Command's Group
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $group = 'cron';
|
|
|
|
/**
|
|
* The Command's Name
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $name = 'HumanResource';
|
|
|
|
/**
|
|
* The Command's Description
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = '';
|
|
|
|
/**
|
|
* Actually execute a command.
|
|
*
|
|
* @param array $params
|
|
*/
|
|
public function run(array $params)
|
|
{
|
|
CLI::write('그룹웨어 데이터 연동 작업을 시작합니다.', 'green');
|
|
try{
|
|
$hr = new HumanResourceController();
|
|
$hr->gwData();
|
|
CLI::write('그룹웨어 데이터 연동 작업 완료', 'green');
|
|
} catch (\Exception $e) {
|
|
$this->showError($e);
|
|
}
|
|
|
|
//로그 기록
|
|
$data = [
|
|
'type' => 'tasks',
|
|
'command' => $this->name
|
|
];
|
|
|
|
$logger = new LoggerService();
|
|
$logger->insertLog($data);
|
|
}
|
|
}
|