* @package webhook * @version $Id$ * @link http://www.zentao.net */ class webhook extends control { /** * Construct * * @param string $moduleName * @param string $methodName * @access public * @return void */ public function __construct($moduleName = '', $methodName = '') { parent::__construct($moduleName, $methodName); $this->loadModel('message'); } /** * Browse webhooks. * * @param string $orderBy * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function browse($orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { $this->app->loadClass('pager', $static = true); $pager = new pager($recTotal, $recPerPage, $pageID); $this->view->title = $this->lang->webhook->api . $this->lang->colon . $this->lang->webhook->list; $this->view->webhooks = $this->webhook->getList($orderBy, $pager); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->api); $this->view->position[] = $this->lang->webhook->common; $this->view->orderBy = $orderBy; $this->view->pager = $pager; $this->display(); } /** * Create a webhook. * * @access public * @return void */ public function create() { if($_POST) { $this->webhook->create(); if(dao::isError()) $this->send(array('result' => 'fail', 'message' => dao::getError())); $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => inlink('browse'))); } $this->app->loadLang('action'); $this->view->title = $this->lang->webhook->api . $this->lang->colon . $this->lang->webhook->create; $this->view->products = $this->loadModel('product')->getPairs(); $this->view->projects = $this->loadModel('project')->getPairs(); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->api); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->common); $this->view->position[] = $this->lang->webhook->create; $this->display(); } /** * Edit a webhook. * * @param int $id * @access public * @return void */ public function edit($id) { $webhook = $this->webhook->getByID($id); if($_POST) { $this->webhook->update($id); if(dao::isError()) $this->send(array('result' => 'fail', 'message' => dao::getError())); $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => inlink('browse'))); } $this->app->loadLang('action'); $this->view->title = $this->lang->webhook->edit . $this->lang->colon . $webhook->name; $this->view->products = $this->loadModel('product')->getPairs(); $this->view->projects = $this->loadModel('project')->getPairs(); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->api); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->common); $this->view->position[] = $this->lang->webhook->edit; $this->view->webhook = $webhook; $this->display(); } /** * Delete a webhook. * * @param int $id * @access public * @return void */ public function delete($id) { $this->webhook->delete(TABLE_WEBHOOK, $id); if(dao::isError()) $this->send(array('result' => 'fail', 'message' => dao::getError())); $this->send(array('result' => 'success')); } /** * Browse logs of a webhook. * * @param int $id * @param string $orderBy * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function log($id, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { $this->app->loadClass('pager', $static = true); $pager = new pager($recTotal, $recPerPage, $pageID); $webhook = $this->webhook->getByID($id); $this->view->title = $this->lang->webhook->log . $this->lang->colon . $webhook->name; $this->view->logs = $this->webhook->getLogList($id, $orderBy, $pager); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->api); $this->view->position[] = html::a(inlink('browse'), $this->lang->webhook->common); $this->view->position[] = $this->lang->webhook->log; $this->view->webhook = $webhook; $this->view->orderBy = $orderBy; $this->view->pager = $pager; $this->display(); } /** * Bind dingtalk userid. * * @param int $id * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function bind($id, $recTotal = 0, $recPerPage = 50, $pageID = 1) { if($_POST) { $this->webhook->bind($id); if(dao::isError()) die(js::error(dao::getError())); die(js::reload('parent')); } $webhook = $this->webhook->getById($id); if($webhook->type != 'dingapi') { echo js::alert($this->lang->webhook->note->bind); die(js::locate($this->createLink('webhook', 'browse'))); } $webhook->secret = json_decode($webhook->secret); $this->app->loadClass('dingapi', true); $dingapi = new dingapi($webhook->secret->appKey, $webhook->secret->appSecret, $webhook->secret->agentId); $response = $dingapi->getAllUsers(); if($response['result'] == 'fail') { echo js::error($response['message']); die(js::locate($this->createLink('webhook', 'browse'))); } $dingUsers = $response['data']; $bindedPairs = $this->webhook->getBindUsers($id); $useridPairs = array('' => ''); foreach($dingUsers as $name => $userid) $useridPairs[$userid] = $name; $this->app->loadClass('pager', $static = true); $pager = new pager($recTotal, $recPerPage, $pageID); $users = $this->loadModel('user')->getByQuery($query = '', $pager); $unbindUsers = array(); $bindedUsers = array(); foreach($users as $user) { if(isset($bindedPairs[$user->account])) $bindedUsers[$user->account] = $user; if(!isset($bindedPairs[$user->account])) $unbindUsers[$user->account] = $user; } $users = $unbindUsers + $bindedUsers; $this->view->title = $this->lang->webhook->bind; $this->view->position[] = html::a($this->createLink('webhook', 'browse'), $this->lang->webhook->common); $this->view->position[] = $this->lang->webhook->bind; $this->view->dingUsers = $dingUsers; $this->view->useridPairs = $useridPairs; $this->view->users = $users; $this->view->pager = $pager; $this->view->bindedUsers = $bindedPairs; $this->display(); } /** * Send data by async. * * @access public * @return void */ public function asyncSend() { $webhooks = $this->webhook->getList($orderBy = 'id_desc', $pager = null, $decode = false); if(empty($webhooks)) { echo "NO WEBHOOK EXIST.\n"; return false; } $dataList = $this->webhook->getDataList(); if(empty($dataList)) { echo "OK\n"; return true; } $now = helper::now(); $diff = 0; foreach($dataList as $data) { $webhook = zget($webhooks, $data->objectID, ''); if($webhook) { /* if connect time is out then ignore it.*/ if($diff < 29) { $time = time(); $result = $this->webhook->fetchHook($webhook, $data->data, $data->action); $diff = time() - $time; } $this->webhook->saveLog($webhook, $data->action, $data->data, $result); } $this->dao->update(TABLE_NOTIFY)->set('status')->eq('sended')->set('sendTime')->eq($now)->where('id')->eq($data->id)->exec(); } $this->dao->delete()->from(TABLE_NOTIFY)->where('status')->eq('sended')->exec(); echo "OK\n"; return true; } }