100 lines
3.8 KiB
PHP
100 lines
3.8 KiB
PHP
<?php
|
|
namespace App\Libraries\Douzone;
|
|
use App\Controllers\BaseController;
|
|
use App\Libraries\Douzone\DouzoneModel;
|
|
use PHPHtmlParser\Dom;
|
|
use App\Libraries\slack_api\SlackChat;
|
|
class Douzone extends BaseController {
|
|
private $douzone;
|
|
public function __construct()
|
|
{
|
|
$this->douzone = new DouzoneModel();
|
|
}
|
|
|
|
public function getDayOff() { //연차
|
|
$list = $this->douzone->getDayOff();
|
|
$result = [];
|
|
foreach($list as $row) {
|
|
$desc = $this->getDayOffDesc($row);
|
|
// dd($desc);
|
|
foreach($desc as $v) {
|
|
if(preg_match('/시간차/', $row['doc_title']) || preg_match('/시간차/', $v['reason'])) continue;
|
|
preg_match_all('/(오전|오후)/', $v['reason'], $matches);
|
|
preg_match_all('/(오전|오후)/', $row['doc_title'], $titles);
|
|
if(isset($matches[1][0]) && $matches[1][0]) $v['type'] = $matches[1][0] . $v['type'];
|
|
else if(isset($titles[1][0]) && $titles[1][0]) $v['type'] = $titles[1][0] . $v['type'];
|
|
$data = [
|
|
'email' => $row['email_addr'] . "@carelabs.co.kr",
|
|
'name' => preg_replace('/^.+_(.+)$/', '$1', $row['user_nm']),
|
|
'title' => $row['doc_title'],
|
|
'status' => $row['doc_sts'],
|
|
'reg_time' => $row['rep_dt'],
|
|
'end_time' => $row['end_dt'],
|
|
'rep_dt' => $row['rep_dt'],
|
|
...$v
|
|
];
|
|
$result[] = $data;
|
|
}
|
|
}
|
|
// dd($result);
|
|
return $result;
|
|
}
|
|
|
|
private function getDayOffDesc($data) {
|
|
$xml = new DOM;
|
|
$xml->loadStr($data['doc_xml']);
|
|
$contents = new DOM;
|
|
$contents->loadStr($data['doc_contents']);
|
|
$info = $xml->find('div',0)->find('table thead td',0)->text();
|
|
preg_match_all('/([가-힣\s]+)\s\:\s([\d\.]+)/', $info, $m);
|
|
$total = [
|
|
'all' => $m[2][0],
|
|
'used' => $m[2][1],
|
|
'remain' => $m[2][2]
|
|
];
|
|
$rows = $xml->find('div',1)->find('table tbody',0)->find('tr');
|
|
$result = [];
|
|
foreach($rows as $row) {
|
|
$reason = trim($contents->find('table tbody')->find('tr',1)->find('td',1)->innerText());
|
|
if(trim($row->find('td',5)->text()))
|
|
$reason .= "/".trim($row->find('td',5)->text());
|
|
$result[] = [
|
|
'type' => trim($row->find('td',0)->text()), //근태구분
|
|
'start' => trim($row->find('td',1)->text()), //시작일자
|
|
'end' => trim($row->find('td',2)->text()), //종료일자
|
|
'used' => trim($row->find('td',4)->text()), //연차차감
|
|
'reason' => trim(str_replace(" ", " ", $reason)), //사유
|
|
'total' => $total
|
|
];
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function getMemberList() { //그룹웨어 직원 목록
|
|
$list = $this->douzone->getMemberList();
|
|
$result = [];
|
|
foreach($list as $row) {
|
|
$div = explode("|", $row['path_name']);
|
|
if(empty($div[1])) $div[1] = $row['path_name'];
|
|
$division = $div[1];
|
|
$team = (isset($div[2])?$div[2]:$div[1]) .(isset($div[3])?"[{$div[3]}]":"");
|
|
$data = [
|
|
'email' => $row['email_addr'] . "@carelabs.co.kr",
|
|
'name' => $row['name'],
|
|
'position' => $row['position'],
|
|
'phone' => $row['phone'],
|
|
'division' => $division,
|
|
'team' => $team
|
|
];
|
|
$result[] = $data;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function sendToSlackForGetDayOff() {
|
|
$slack = new SlackChat();
|
|
$slack->sendMessage(['channel'=>'C05G82NMG8G','text'=>'message test']);
|
|
}
|
|
} |