Class: LgPodPlugin::GitLabAPI
- Inherits:
-
Object
- Object
- LgPodPlugin::GitLabAPI
- Defined in:
- lib/lg_pod_plugin/git/gitlab_api.rb
Class Method Summary collapse
- .get_gitlab_access_token_input(uri, user_id, username = nil, password = nil) ⇒ Object
- .get_podspec_file_content(host, token, project_id, sha, filepath) ⇒ Object
-
.refresh_gitlab_access_token(host, refresh_token) ⇒ Object
刷新gitlab_token.
-
.request_github_refs_heads(git, branch, uri = nil) ⇒ Object
通过github api 获取 git 最新commit.
-
.request_gitlab_access_token(host, username, password) ⇒ Object
获取 GitLab access_token.
-
.request_gitlab_refs_heads(git, branch, uri) ⇒ Object
请求gitlab api 获取 branch 最新的 commit.
-
.request_project_info(host, project_name, access_token, git = nil) ⇒ Object
通过名称搜索项目信息.
-
.use_default_refs_heads(git, branch) ⇒ Object
使用 git 命令获取commit信息.
Class Method Details
.get_gitlab_access_token_input(uri, user_id, username = nil, password = nil) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 10 def self.get_gitlab_access_token_input(uri, user_id, username = nil, password = nil) unless username && password LgPodPlugin.log_yellow "请输入 `#{uri.to_s}` 的用户名" username = STDIN.gets.chomp LgPodPlugin.log_yellow "请输入 `#{uri.to_s}` 的密码" password = STDIN.noecho(&:gets).chomp end GitLabAPI.request_gitlab_access_token(uri.hostname, username, password) user_info = LSqliteDb.shared.query_user_info(user_id) return user_info end |
.get_podspec_file_content(host, token, project_id, sha, filepath) ⇒ Object
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 191 def self.get_podspec_file_content(host, token, project_id, sha, filepath) begin hash_map = Hash.new hash_map["ref"] = sha hash_map["access_token"] = token uri = URI("#{host}/api/v4/projects/#{project_id}/repository/files/#{filepath}") uri.query = URI.encode_www_form(hash_map) res = Net::HTTP.get_response(uri) case res when Net::HTTPSuccess, Net::HTTPRedirection json = JSON.parse(res.body) else body = JSON.parse(res.body) = body["message"] if == "404 Project Not Found" LSqliteDb.shared.delete_project_by_id(project_id) end json = nil end return nil unless json && json.is_a?(Hash) content = json["content"] return nil unless content && LUtils.is_a_string?(content) encoding = json["encoding"] ||= "base64" if encoding == "base64" require 'base64' content = Base64.decode64(content) if content.respond_to?(:encoding) && content.encoding.name != 'UTF-8' text = content.force_encoding("gb2312").force_encoding("utf-8") return text else return content end else return nil end rescue return nil end end |
.refresh_gitlab_access_token(host, refresh_token) ⇒ Object
刷新gitlab_token
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 52 def self.refresh_gitlab_access_token(host, refresh_token) begin hash_map = Hash.new hash_map["scope"] = "api" hash_map["grant_type"] = "refresh_token" hash_map["refresh_token"] = refresh_token uri = URI("#{host}/oauth/token") res = Net::HTTP.post_form(uri, hash_map) if res.body json = JSON.parse(res.body) else return nil end return nil unless json.is_a?(Hash) error = json["error"] if error != nil error_description = json["error_description"] raise error_description end access_token = json["access_token"] refresh_token = json["refresh_token"] expires_in = json["expires_in"] ||= 7200 created_at = json["created_at"] ||= Time.now.to_i user_id = LUserAuthInfo.get_user_id(host) user_model = LSqliteDb.shared.query_user_info(user_id) user_model.expires_in = (created_at + expires_in) user_model.access_token = access_token user_model.refresh_token = refresh_token LSqliteDb.shared.insert_user_info(user_model) return user_model rescue => exception LgPodPlugin.log_yellow "刷新 `access_token` 失败, error => #{exception.to_s}" return nil end end |
.request_github_refs_heads(git, branch, uri = nil) ⇒ Object
通过github api 获取 git 最新commit
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 173 def self.request_github_refs_heads(git, branch, uri = nil) return [nil, nil] unless git unless git.include?("https://github.com/") || git.include?("[email protected]:") if LgPodPlugin::LUtils.is_gitlab_uri(git, "") return self.request_gitlab_refs_heads(git, branch, uri) end return self.use_default_refs_heads git, branch end commit, _ = GithubAPI.request_github_refs_heads git, branch if commit return [commit, branch] else commit, _ = self.use_default_refs_heads git, branch return [commit, branch] end end |
.request_gitlab_access_token(host, username, password) ⇒ Object
获取 GitLab access_token
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 24 def self.request_gitlab_access_token(host, username, password) user_id = LUserAuthInfo.get_user_id(host) begin uri = URI("#{host}/oauth/token") hash_map = { "grant_type" => "password", "username" => username, "password" => password } LgPodPlugin.log_green "开始请求 access_token, url => #{uri.to_s} " req = Net::HTTP.post_form(uri, hash_map) json = JSON.parse(req.body) error = json["error"] if error != nil if error == "invalid_grant" LSqliteDb.shared.delete_user_info(user_id) end raise json["error_description"] end access_token = json["access_token"] refresh_token = json["refresh_token"] expires_in = json["expires_in"] ||= 7200 created_at = json["created_at"] ||= Time.now.to_i user_model = LUserAuthInfo.new(user_id, username, password, host, access_token, refresh_token, (created_at + expires_in)) LSqliteDb.shared.insert_user_info(user_model) LgPodPlugin.log_green "请求成功: `access_token` => #{access_token}, expires_in => #{expires_in}" rescue => exception LgPodPlugin.log_red "获取 `access_token` 失败, error => #{exception.to_s}" end end |
.request_gitlab_refs_heads(git, branch, uri) ⇒ Object
请求gitlab api 获取 branch 最新的 commit
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 126 def self.request_gitlab_refs_heads(git, branch, uri) config = LConfig.get_config(git, uri) project = config.project return self.use_default_refs_heads(git, branch) unless config unless project project_name = LUtils.get_git_project_name git project = GitLabAPI.request_project_info(config.host, project_name, config.access_token, git) end return self.use_default_refs_heads(git, branch) unless project && project.id begin new_branch = branch ? branch : "HEAD" api = uri.hostname + "/api/v4/projects/" + project.id + "/repository/commits/" + new_branch req_uri = URI(api) req_uri.query = URI.encode_www_form({ "access_token": config.access_token }) res = Net::HTTP.get_response(req_uri) case res when Net::HTTPSuccess, Net::HTTPRedirection json = JSON.parse(res.body) return [nil, nil] unless json && json.is_a?(Hash) sha = json["id"] return [sha, nil] else body = JSON.parse(res.body) = body["message"] if == "404 Project Not Found" LSqliteDb.shared.delete_project_by_id(project.id) end return self.use_default_refs_heads git, branch end rescue => exception LgPodPlugin.log_red "request_gitlab_refs_heads => #{exception}" return self.use_default_refs_heads git, branch end end |
.request_project_info(host, project_name, access_token, git = nil) ⇒ Object
通过名称搜索项目信息
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 89 def self.request_project_info(host, project_name, access_token, git = nil) begin hash_map = Hash.new hash_map["search"] = project_name hash_map["access_token"] = access_token uri = URI("#{host}/api/v4/projects") uri.query = URI.encode_www_form(hash_map) res = Net::HTTP.get_response(uri) if res.body array = JSON.parse(res.body) else array = nil end return nil unless array && array.is_a?(Array) array.each do |json| name = json["name"] ||= "" path = json["path"] ||= "" path_with_namespace = json["path_with_namespace"] ||= "" name_with_namespace = (json["name_with_namespace"] ||= "").gsub(/[ ]/, '') if git.include?(path_with_namespace) id = json["id"] web_url = json["web_url"] description = json["description"] ssh_url_to_repo = json["ssh_url_to_repo"] http_url_to_repo = json["http_url_to_repo"] project = ProjectModel.new(id, name, description, path, ssh_url_to_repo, http_url_to_repo, web_url, name_with_namespace, path_with_namespace) LSqliteDb.shared.insert_project(project) return project end end return nil rescue return nil end end |
.use_default_refs_heads(git, branch) ⇒ Object
使用 git 命令获取commit信息
162 163 164 165 166 167 168 169 170 |
# File 'lib/lg_pod_plugin/git/gitlab_api.rb', line 162 def self.use_default_refs_heads(git, branch) result = LUtils.refs_from_ls_remote git, branch unless result && !result.empty? return [nil, nil] end refs = branch ? branch : "HEAD" new_commit, new_branch = LUtils.sha_from_result(result, refs) return [new_commit, new_branch] end |