| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- <?php
- /**
- * The model file of gogs 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 gogs
- * @link https://www.zentao.net
- */
- class gogsModel extends model
- {
- /**
- * 获取请求地址信息。
- * Get gogs api base url by gogs id.
- *
- * @param int $gogsID
- * @access public
- * @return string
- */
- public function getApiRoot($gogsID)
- {
- $gogs = $this->fetchByID($gogsID);
- if(!$gogs || $gogs->type != 'gogs') return '';
- return rtrim($gogs->url, '/') . '/api/v1%s' . "?token={$gogs->token}";
- }
- /**
- * Gogs用户和禅道用户绑定。
- * Bind gogs user and zentao user.
- *
- * @param int $gogsID
- * @param array $users
- * @param array $gogsNames
- * @access public
- * @return array
- */
- public function bindUser($gogsID, $users, $gogsNames)
- {
- $repeatUsers = array();
- $userPairs = array();
- foreach($users as $openID => $account)
- {
- if(empty($account)) continue;
- if(in_array($account, $userPairs)) $repeatUsers[] = $account;
- $userPairs[$openID] = $account;
- }
- /* Check user repeat bind. */
- if($repeatUsers)
- {
- $userList = $this->loadModel('user')->getRealNameAndEmails($repeatUsers);
- dao::$errors = sprintf($this->lang->gogs->bindUserError, join(',', helper::arrayColumn($userList, 'realname')));
- return false;
- }
- $bindedUsers = $this->dao->select('openID,account')->from(TABLE_OAUTH)
- ->where('providerType')->eq('gogs')
- ->andWhere('providerID')->eq($gogsID)
- ->fetchPairs();
- $this->dao->delete()->from(TABLE_OAUTH)->where('providerType')->eq('gogs')->andWhere('providerID')->eq($gogsID)->exec();
- $this->loadModel('action');
- foreach($userPairs as $openID => $account)
- {
- /* If user binded user is change, delete it. */
- if(isset($bindedUsers[$openID]) && $bindedUsers[$openID] != $account) $this->action->create('gogsuser', $gogsID, 'unbind', '', $gogsNames[$openID]);
- /* Add zentao user and gogs user binded. */
- $user = new stdclass();
- $user->providerID = $gogsID;
- $user->providerType = 'gogs';
- $user->account = $account;
- $user->openID = $gogsNames[$openID];
- $this->dao->insert(TABLE_OAUTH)->data($user)->exec();
- $this->action->create('gogsuser', $gogsID, 'bind', '', $gogsNames[$openID]);
- }
- return !dao::isError();
- }
- /**
- * 检测token是否有效。
- * Check token access.
- *
- * @param string $url
- * @param string $token
- * @access public
- * @return void
- */
- public function checkTokenAccess($url = '', $token = '')
- {
- $apiRoot = rtrim($url, '/') . '/api/v1%s' . "?token={$token}";
- $url = sprintf($apiRoot, "/user");
- $user = json_decode(commonModel::http($url));
- if(empty($user) || isset($user->message)) return false;
- /* Check whether the token belongs to the administrator by edit user. */
- $editUserUrl = sprintf($apiRoot, "/admin/users/" . $user->username);
- $data = new stdclass();
- $data->login_name = $user->login;
- $data->email = $user->email;
- $result = commonModel::http($editUserUrl, $data, array(), array(), 'data', 'PATCH');
- $user = json_decode($result);
- if(empty($user)) return false;
- return true;
- }
- /**
- * 通过API获取Gogs项目信息。
- * Get project by api.
- *
- * @param int $gogsID
- * @param string $projectID
- * @access public
- * @return object|null
- */
- public function apiGetSingleProject($gogsID, $projectID)
- {
- $apiRoot = $this->getApiRoot($gogsID);
- if(!$apiRoot) return null;
- $url = sprintf($apiRoot, "/repos/$projectID");
- $project = json_decode(commonModel::http($url));
- if(isset($project->name))
- {
- $project->name_with_namespace = $project->full_name;
- $project->path_with_namespace = $project->full_name;
- $project->http_url_to_repo = $project->html_url;
- $project->name_with_namespace = $project->full_name;
- $gogs = $this->fetchByID($gogsID);
- $project->tokenCloneUrl = preg_replace('/(http(s)?:\/\/)/', '${1}' . $gogs->token . '@', $project->html_url);
- }
- return $project;
- }
- /**
- * 通过API获取Gogs项目列表。
- * Get projects by api.
- *
- * @param int $gogsID
- * @access public
- * @return array
- */
- public function apiGetProjects($gogsID)
- {
- $apiRoot = $this->getApiRoot($gogsID);
- if(!$apiRoot) return array();
- $url = sprintf($apiRoot, "/user");
- $user = json_decode(commonModel::http($url));
- if(!isset($user->username)) return array();
- $url = sprintf($apiRoot, "/users/{$user->username}/repos");
- $projects = array();
- $results = json_decode(commonModel::http($url));
- if(!is_array($results) || empty($results)) return array();
- if(!empty($results)) $projects = array_merge($projects, $results);
- return $projects;
- }
- /**
- * 通过API获取Gogs用户列表。
- * Get gogs user list.
- *
- * @param int $gogsID
- * @param bool $onlyLinked
- * @access public
- * @return array
- */
- public function apiGetUsers($gogsID, $onlyLinked = false)
- {
- $users = array();
- $apiRoot = $this->getApiRoot($gogsID, strtolower($this->app->rawMethod) != 'binduser');
- $page = 1;
- while(true)
- {
- $url = sprintf($apiRoot, "/admin/users") . "&page={$page}&limit=20";
- $result = json_decode(commonModel::http($url));
- if(empty($result->data)) break;
- $users = array_merge($users, $result->data);
- $page ++;
- }
- if(empty($users)) return array();
- /* Get linked users. */
- $linkedUsers = array();
- if($onlyLinked) $linkedUsers = $this->loadModel('pipeline')->getUserBindedPairs($gogsID, 'gogs', 'openID,account');
- $userList = array();
- foreach($users as $gogsUser)
- {
- if($onlyLinked and !isset($linkedUsers[$gogsUser->username])) continue;
- $user = new stdclass;
- $user->id = $gogsUser->id;
- $user->realname = $gogsUser->full_name ? $gogsUser->full_name : $gogsUser->username;
- $user->account = $gogsUser->username;
- $user->email = zget($gogsUser, 'email', '');
- $user->avatar = $gogsUser->avatar_url;
- $user->createdAt = zget($gogsUser, 'created', '');
- $user->lastActivityOn = zget($gogsUser, 'login', '');
- $userList[] = $user;
- }
- return $userList;
- }
- /**
- * 通过API获取Gogs项目分支列表。
- * Get project repository branches by api.
- *
- * @param int $gogsID
- * @param string $project
- * @access public
- * @return array
- */
- public function apiGetBranches($gogsID, $project)
- {
- $url = sprintf($this->getApiRoot($gogsID), "/repos/{$project}/branches");
- $branches = array();
- $page = 1;
- while(true)
- {
- $results = json_decode(commonModel::http($url . "&page={$page}&limit=50"));
- if(!is_array($results)) break;
- if(!empty($results)) $branches = array_merge($branches, $results);
- if(count($results) < 100) break;
- $page ++;
- }
- return $branches;
- }
- /**
- * 通过API获取Gogs项目分支信息。
- * Get single branch by API.
- *
- * @param int $gogsID
- * @param string $project
- * @param string $branchName
- * @access public
- * @return object|null
- */
- public function apiGetSingleBranch($gogsID, $project, $branchName)
- {
- if(empty($branchName)) return null;
- $url = sprintf($this->getApiRoot($gogsID), "/repos/$project/branches/$branchName");
- $branch = json_decode(commonModel::http($url));
- if(isset($branch->name))
- {
- $gogs = $this->fetchByID($gogsID);
- $branch->web_url = "{$gogs->url}/$project/src/$branchName";
- }
- return $branch;
- }
- /**
- * 通过API获取Gogs项目分支保护信息。
- * Get protect branches of one project.
- *
- * @param int $gogsID
- * @param string $project
- * @param string $keyword
- * @access public
- * @return array
- */
- public function apiGetBranchPrivs($gogsID, $project, $keyword = '')
- {
- $keyword = urlencode($keyword);
- $url = sprintf($this->getApiRoot($gogsID), "/repos/$project/branch_protections");
- $branches = json_decode(commonModel::http($url));
- if(!is_array($branches)) return array();
- $newBranches = array();
- foreach($branches as $branch)
- {
- $branch->name = $branch->Name;
- if(empty($keyword) || stristr($branch->name, $keyword)) $newBranches[] = $branch;
- }
- return $newBranches;
- }
- /**
- * 通过API删除Gogs分支。
- * Api delete branch.
- *
- * @param int $gogsID
- * @param string $project
- * @param string $branch
- * @access public
- * @return object|null
- */
- public function apiDeleteBranch($gogsID, $project, $branch)
- {
- if(empty($branch) || empty($project)) return null;
- $url = sprintf($this->getApiRoot($gogsID), "/repos/$project/branches/$branch");
- if(!$url) return null;
- return json_decode(commonModel::http($url, null, array(CURLOPT_CUSTOMREQUEST => 'DELETE')));
- }
- /**
- * API获取项目的合并请求列表。
- * Get Merge Requests by API.
- *
- * @param int $giteaID
- * @param string $project
- * @access public
- * @return array
- */
- public function apiGetMergeRequests($giteaID, $project)
- {
- $apiRoot = $this->getApiRoot($giteaID);
- if(!$apiRoot) return array();
- $apiPath = "/repos/{$project}/pulls";
- $url = sprintf($apiRoot, $apiPath);
- $mrList = json_decode(common::http($url));
- if(!is_array($mrList)) return array();
- foreach($mrList as $mr)
- {
- $mr->web_url = $mr->html_url;
- $mr->iid = $mr->id;
- $mr->state = $mr->state == 'open' ? 'opened' : $mr->state;
- if($mr->merged) $mr->state = 'merged';
- $mr->merge_status = $mr->mergeable ? 'can_be_merged' : 'cannot_be_merged';
- $mr->changes_count = empty($diff) ? 0 : 1;
- $mr->description = $mr->body;
- $mr->target_branch = $mr->base_branch;
- $mr->source_branch = $mr->head_branch;
- $mr->source_project_id = $project;
- $mr->target_project_id = $project;
- $mr->has_conflicts = empty($diff) ? true : false;
- $mr->is_draft = strpos($mr->title, 'Draft:') === 0;
- }
- return $mrList;
- }
- }
|