| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <?php
- /**
- * The control file of gitea module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chenqi <chenqi@cnezsoft.com>
- * @package gitea
- * @link https://www.zentao.net
- */
- class gitea extends control
- {
- /**
- * The gitea constructor.
- * @param string $moduleName
- * @param string $methodName
- */
- public function __construct($moduleName = '', $methodName = '')
- {
- parent::__construct($moduleName, $methodName);
- if(!commonModel::hasPriv('instance', 'manage')) $this->loadModel('common')->deny('instance', 'manage', false);
- /* This is essential when changing tab(menu) from gitea to repo. */
- /* Optional: common::setMenuVars('devops', $this->session->repoID); */
- if($this->app->rawMethod != 'binduser') $this->loadModel('ci')->setMenu();
- }
- /**
- * Gitea服务器列表。
- * Browse gitea.
- *
- * @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', true);
- $pager = new pager($recTotal, $recPerPage, $pageID);
- /* Admin user don't need bind. */
- $giteaList = $this->loadModel('pipeline')->getList('gitea', $orderBy, $pager);
- $myGiteas = $this->gitea->getGiteaListByAccount();
- foreach($giteaList as $gitea)
- {
- $gitea->isBindUser = true;
- if(!$this->app->user->admin && !isset($myGiteas[$gitea->id])) $gitea->isBindUser = false;
- }
- $this->view->title = $this->lang->gitea->common . $this->lang->hyphen . $this->lang->gitea->browse;
- $this->view->giteaList = $giteaList;
- $this->view->orderBy = $orderBy;
- $this->view->pager = $pager;
- $this->display();
- }
- /**
- * 增加一个gitea服务器。
- * Create a gitea.
- *
- * @access public
- * @return void
- */
- public function create()
- {
- if($_POST)
- {
- $gitea = form::data($this->config->gitea->form->create)
- ->add('createdBy', $this->app->user->account)
- ->get();
- $result = $this->checkToken($gitea);
- if(is_array($result)) return $this->send($result);
- $giteaID = $this->loadModel('pipeline')->create($gitea);
- if(dao::isError()) return $this->sendError(dao::getError());
- $this->loadModel('action')->create('gitea', $giteaID, 'created');
- return $this->sendSuccess(array('locate' => $this->createLink('space', 'browse')));
- }
- $this->view->title = $this->lang->gitea->common . $this->lang->hyphen . $this->lang->gitea->lblCreate;
- $this->display();
- }
- /**
- * 查看一个gitea服务器。
- * View a gitea.
- * @param int $giteaID
- * @access public
- * @return void
- */
- public function view($giteaID)
- {
- $gitea = $this->gitea->fetchByID($giteaID);
- $this->view->title = $this->lang->gitea->common . $this->lang->hyphen . $this->lang->gitea->view;
- $this->view->gitea = $gitea;
- $this->view->users = $this->loadModel('user')->getPairs('noclosed');
- $this->view->actions = $this->loadModel('action')->getList('gitea', $giteaID);
- $this->display();
- }
- /**
- * 编辑一个gitea服务器。
- * Edit a gitea.
- *
- * @param int $giteaID
- * @access public
- * @return void
- */
- public function edit($giteaID)
- {
- $oldGitea = $this->gitea->fetchByID($giteaID);
- if($_POST)
- {
- $gitea = form::data($this->config->gitea->form->edit)
- ->add('editedBy', $this->app->user->account)
- ->get();
- $result = $this->checkToken($gitea);
- if(is_array($result)) return $this->send($result);
- $this->loadModel('pipeline')->update($giteaID, $gitea);
- if(dao::isError()) return $this->sendError(dao::getError());
- $gitea = $this->gitea->fetchByID($giteaID);
- $actionID = $this->loadModel('action')->create('gitea', $giteaID, 'edited');
- $changes = common::createChanges($oldGitea, $gitea);
- $this->action->logHistory($actionID, $changes);
- return $this->sendSuccess(array('load' => true, 'closeModal' => true));
- }
- $this->view->title = $this->lang->gitea->common . $this->lang->hyphen . $this->lang->gitea->edit;
- $this->view->gitea = $oldGitea;
- $this->display();
- }
- /**
- * 删除一条gitea记录
- * Delete a gitea.
- *
- * @param int $giteaID
- * @access public
- * @return void
- */
- public function delete($giteaID)
- {
- $oldGitea = $this->loadModel('pipeline')->fetchByID($giteaID);
- $actionID = $this->pipeline->deleteByObject($giteaID, 'gitea');
- if(!$actionID)
- {
- $response['result'] = 'fail';
- $response['callback'] = sprintf('zui.Modal.alert("%s");', $this->lang->pipeline->delError);
- return $this->send($response);
- }
- $gitea = $this->pipeline->fetchByID($giteaID);
- $changes = common::createChanges($oldGitea, $gitea);
- $this->loadModel('action')->logHistory($actionID, $changes);
- $response['load'] = $this->createLink('space', 'browse');
- $response['message'] = zget($this->lang->instance->notices, 'uninstallSuccess');
- $response['result'] = 'success';
- return $this->send($response);
- }
- /**
- * 绑定gitea用户到禅道用户。
- * Bind gitea user to zentao users.
- *
- * @param int $giteaID
- * @param string $type
- * @access public
- * @return void
- */
- public function bindUser($giteaID, $type = 'all')
- {
- if($_POST)
- {
- $this->gitea->bindUser($giteaID, (array)$this->post->zentaoUsers, (array)$this->post->giteaUserNames);
- if(dao::isError()) return $this->sendError(dao::getError());
- return $this->sendSuccess(array('load' => helper::createLink('space', 'browse')));
- }
- $userList = array();
- $giteaUsers = $this->gitea->apiGetUsers($giteaID);
- $matchedResult = $this->giteaZen->getMatchedUsers($giteaID, $giteaUsers);
- $bindedUsers = $this->loadModel('pipeline')->getUserBindedPairs($giteaID, 'gitea');
- $zentaoUsers = $this->loadModel('user')->getRealNameAndEmails(helper::arrayColumn($matchedResult, 'zentaoAccount'));
- foreach($giteaUsers as $giteaUser)
- {
- $user = new stdclass();
- $user->email = '';
- $user->status = 'notBind';
- $user->giteaID = $giteaUser->id;
- $user->giteaEmail = $giteaUser->email;
- $user->giteaAccount = $giteaUser->account;
- $user->giteaUser = $giteaUser->realname . '@' . $giteaUser->account;
- $user->giteaUserAvatar = $giteaUser->avatar;
- $user->zentaoUsers = isset($matchedResult[$giteaUser->id]) ? $matchedResult[$giteaUser->id]->zentaoAccount : '';
- if($user->zentaoUsers)
- {
- if(isset($zentaoUsers[$user->zentaoUsers])) $user->email = $zentaoUsers[$user->zentaoUsers]->email;
- if(isset($bindedUsers[$user->zentaoUsers]) && $bindedUsers[$user->zentaoUsers] == $giteaUser->account) $user->status = 'binded';
- }
- if($type != 'all' && $user->status != $type) continue;
- $userList[] = $user;
- }
- $this->view->title = $this->lang->gitea->bindUser;
- $this->view->type = $type;
- $this->view->giteaID = $giteaID;
- $this->view->recTotal = count($userList);
- $this->view->userList = $userList;
- $this->view->userPairs = $this->user->getPairs('noclosed|noletter');
- $this->view->zentaoUsers = $zentaoUsers;
- $this->display();
- }
- /**
- * 获取分支列表。
- * Ajax get branches.
- *
- * @param int $giteaID
- * @param string $project
- * @access public
- * @return void
- */
- public function ajaxGetProjectBranches($giteaID, $project)
- {
- $options = array(array('text' => '', 'value' => ''));
- if(!$giteaID || !$project) return print(json_encode($options));
- $project = urldecode(base64_decode($project));
- $branches = $this->gitea->apiGetBranches($giteaID, $project);
- foreach($branches as $branch)
- {
- $options[] = array('text' => $branch->name, 'value' => $branch->name);
- }
- return print(json_encode($options));
- }
- }
|