Class: LgPodPlugin::GitLabArchive
- Inherits:
-
Object
- Object
- LgPodPlugin::GitLabArchive
- Defined in:
- lib/lg_pod_plugin/gitlab_archive.rb
Instance Method Summary collapse
- #git_clone_by_branch(path, temp_name) ⇒ Object
-
#git_clone_by_commit(path, temp_name) ⇒ Object
git clone commit.
- #git_clone_by_tag(path, temp_name) ⇒ Object
-
#git_download_command(temp_name, git, branch, tag) ⇒ Object
封装 git clone命令.
-
#github_download_branch_zip(path, temp_name) ⇒ Object
从 Github下载 zip 包 根据branch 下载 zip 包.
-
#github_download_commit_zip(path, temp_name) ⇒ Object
通过 commit 下载zip包.
-
#github_download_tag_zip(path, temp_name) ⇒ Object
通过tag下载zip包.
-
#gitlab_download_branch_zip(root_path, temp_name) ⇒ Object
从 GitLab下载 zip包 根据branch 下载 zip 包.
-
#gitlab_download_commit_zip(root_path, temp_name) ⇒ Object
通过 commit 下载zip包.
-
#gitlab_download_file_by_name(path, filename, temp_name, project_name) ⇒ Object
下载某个文件zip格式.
-
#gitlab_download_tag_zip(root_path, temp_name) ⇒ Object
通过tag下载zip包.
-
#initialize(name, git, branch, tag, commit) ⇒ GitLabArchive
constructor
A new instance of GitLabArchive.
Constructor Details
#initialize(name, git, branch, tag, commit) ⇒ GitLabArchive
Returns a new instance of GitLabArchive.
14 15 16 17 18 19 20 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 14 def initialize(name, git, branch, tag, commit) self.git = git ||= LRequest.shared.request_params[:git] self.tag = tag ||= LRequest.shared.request_params[:tag] self.name = name ||= LRequest.shared.request_params[:name] self.commit = commit ||= LRequest.shared.request_params[:commit] self.branch = branch ||= LRequest.shared.request_params[:branch] end |
Instance Method Details
#git_clone_by_branch(path, temp_name) ⇒ Object
301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 301 def git_clone_by_branch(path, temp_name) download_temp_path = path.join(temp_name) if self.git && self.branch git_download_command(temp_name, self.git, self.branch, nil) else git_download_command(temp_name, self.git, nil, nil) if File.exist?(temp_name) system("git -C #{download_temp_path.to_path} rev-parse HEAD") end end download_temp_path end |
#git_clone_by_commit(path, temp_name) ⇒ Object
git clone commit
320 321 322 323 324 325 326 327 328 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 320 def git_clone_by_commit(path, temp_name) Git.init(temp_name) FileUtils.chdir(temp_name) LgPodPlugin.log_blue "git clone #{self.git}" system("git remote add origin #{self.git}") system("git fetch origin #{self.commit}") system("git reset --hard FETCH_HEAD") path.join(temp_name) end |
#git_clone_by_tag(path, temp_name) ⇒ Object
314 315 316 317 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 314 def git_clone_by_tag(path, temp_name) git_download_command(temp_name, self.git, nil, self.tag) path.join(temp_name) end |
#git_download_command(temp_name, git, branch, tag) ⇒ Object
封装 git clone命令
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 331 def git_download_command(temp_name, git, branch, tag) cmds = ['git'] cmds << "clone" cmds << "#{git}" cmds << "#{temp_name} " cmds << "--template=" cmds << "--single-branch --depth 1" if branch cmds << "--branch" cmds << branch elsif tag cmds << "--branch" cmds << tag end cmds_to_s = cmds.join(" ") LgPodPlugin.log_blue cmds_to_s system(cmds_to_s) end |
#github_download_branch_zip(path, temp_name) ⇒ Object
从 Github下载 zip 包 根据branch 下载 zip 包
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 230 231 232 233 234 235 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 199 def github_download_branch_zip(path, temp_name) file_name = "#{temp_name}.zip" branch = self.branch ||= "HEAD" if self.git.include?(".git") base_url = self.git[0...self.git.length - 4] else base_url = self.git end project_name = base_url.split("/").last if base_url url_path = base_url.split("https://github.com/").last if branch == "HEAD" download_url = "https://gh.api.99988866.xyz/" + "#{base_url}" + "/archive/#{branch}.zip" else download_url = "https://codeload.github.com/#{url_path}/zip/refs/heads/#{branch}" end LgPodPlugin.log_blue "开始下载 => #{download_url}" LUtils.download_github_zip_file(download_url, file_name) unless File.exist?(file_name) LgPodPlugin.log_red("下载zip包失败, 尝试git clone #{self.git}") return self.git_clone_by_branch(path, temp_name) end # 解压文件 result = LUtils.unzip_file(path.join(file_name).to_path, "./") temp_zip_folder = nil path.each_child do |f| ftype = File::ftype(f) next unless ftype == "directory" next unless f.to_path.include?("#{branch}") || f.to_path.include?("#{project_name}") temp_zip_folder = f break end unless temp_zip_folder && File.exist?(temp_zip_folder) LgPodPlugin.log_red("正在尝试git clone #{self.git}") return self.git_clone_by_branch(path, temp_name) end temp_zip_folder end |
#github_download_commit_zip(path, temp_name) ⇒ Object
通过 commit 下载zip包
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 274 def github_download_commit_zip(path, temp_name) file_name = "#{temp_name}.zip" if self.git.include?(".git") base_url = self.git[0...self.git.length - 4] else base_url = self.git end uri = URI(base_url) project_name = base_url.split("/").last if base_url download_url = "https://codeload.github.com#{uri.path}/zip/#{self.commit}" # 下载文件 LgPodPlugin.log_blue "开始下载 => #{download_url}" LUtils.download_github_zip_file(download_url, file_name) unless File.exist?(file_name) LgPodPlugin.log_red("正在尝试git clone #{self.git}") return self.git_clone_by_commit(path, temp_name) end # 解压文件 result = LUtils.unzip_file(path.join(file_name).to_path, "./") new_file_name = "#{project_name}-#{self.commit}" unless result && File.exist?(new_file_name) LgPodPlugin.log_red("正在尝试git clone #{self.git}") return self.git_clone_by_commit(path, temp_name) end path.join(new_file_name) end |
#github_download_tag_zip(path, temp_name) ⇒ Object
通过tag下载zip包
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 238 def github_download_tag_zip(path, temp_name) file_name = "#{temp_name}.zip" if self.git.include?(".git") base_url = self.git[0...self.git.length - 4] else base_url = self.git end uri = URI(base_url) project_name = base_url.split("/").last if base_url download_url = "https://codeload.github.com#{uri.path}/zip/refs/tags/#{self.tag}" # 下载文件 LgPodPlugin.log_blue "开始下载 => #{download_url}" LUtils.download_github_zip_file(download_url, file_name) unless File.exist?(file_name) LgPodPlugin.log_red("正在尝试git clone #{self.git}") return self.git_clone_by_tag(path, temp_name) end # 解压文件 result = LUtils.unzip_file(path.join(file_name).to_path, "./") temp_zip_folder = nil path.each_child do |f| ftype = File::ftype(f) next unless ftype == "directory" version = self.tag.split("v").last ||= self.tag next unless f.to_path.include?("#{project_name}") || f.to_path.include?(version) temp_zip_folder = f break end unless temp_zip_folder && File.exist?(temp_zip_folder) LgPodPlugin.log_red("正在尝试git clone #{self.git}") return self.git_clone_by_tag(path, temp_name) end temp_zip_folder end |
#gitlab_download_branch_zip(root_path, temp_name) ⇒ Object
从 GitLab下载 zip包 根据branch 下载 zip 包
76 77 78 79 80 81 82 83 84 85 86 87 88 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 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 76 def gitlab_download_branch_zip(root_path, temp_name) project_path = root_path.join(self.name) unless project_path.exist? project_path.mkdir FileUtils.chdir(project_path) end branch = self.branch ||= "HEAD" token = LRequest.shared.config.access_token base_url = LRequest.shared.config.project.web_url project_name = LRequest.shared.config.project.path podspec_name = self.name + ".podspec" LgPodPlugin.log_blue "开始下载 => #{base_url}" self.gitlab_download_file_by_name(project_path, podspec_name,"#{podspec_name}.zip", project_name) podspec_path = project_path.join(podspec_name) return nil unless File.exist?(podspec_path) begin need_download_files = PodSpec.form_file(podspec_path).source_files rescue need_download_files = Set[] end unless !need_download_files.empty? FileUtils.chdir(root_path) file_name = "#{temp_name}.zip" download_url = LUtils.get_gitlab_download_url(base_url, branch, nil, nil, project_name) raise "download_url不存在" unless download_url # LgPodPlugin.log_blue "开始下载 => #{download_url}" LUtils.download_gitlab_zip_file(download_url, token, file_name) raise "下载zip包失败, 尝试git clone #{self.git}" unless File.exist?(file_name) # 解压文件 result = LUtils.unzip_file(root_path.join(file_name).to_path, "./") new_file_name = "#{project_name}-#{branch}" raise "解压文件失败, #{new_file_name}不存在" unless result && File.exist?(new_file_name) return root_path.join(new_file_name) end need_download_files.each do |file| next if project_path.join(file).exist? self.gitlab_download_file_by_name(project_path, file,"#{file}.zip", project_name) end return project_path end |
#gitlab_download_commit_zip(root_path, temp_name) ⇒ Object
通过 commit 下载zip包
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 158 def gitlab_download_commit_zip(root_path, temp_name) project_path = root_path.join(self.name) unless project_path.exist? project_path.mkdir FileUtils.chdir(project_path) end token = LRequest.shared.config.access_token base_url = LRequest.shared.config.project.web_url project_name = LRequest.shared.config.project.path podspec_name = self.name + ".podspec" LgPodPlugin.log_blue "开始下载 => #{base_url}" self.gitlab_download_file_by_name(project_path, podspec_name,"#{podspec_name}.zip", project_name) podspec_path = project_path.join(podspec_name) return nil unless File.exist?(podspec_path) begin need_download_files = PodSpec.form_file(podspec_path).source_files rescue need_download_files = Set[] end unless !need_download_files.empty? FileUtils.chdir(root_path) file_name = "#{temp_name}.zip" download_url = LUtils.get_gitlab_download_url(base_url, nil, nil, self.commit, project_name) raise "download_url不存在" unless download_url # LgPodPlugin.log_blue "开始下载 => #{download_url}" LUtils.download_gitlab_zip_file(download_url, token, file_name) raise "下载zip包失败, 尝试git clone #{self.git}" unless File.exist?(file_name) # 解压文件 result = LUtils.unzip_file(root_path.join(file_name).to_path, "./") new_file_name = "#{project_name}-#{self.commit}" raise "解压文件失败, #{new_file_name}不存在" unless result && File.exist?(new_file_name) return root_path.join(new_file_name) end need_download_files.each do |file| self.gitlab_download_file_by_name(project_path, file,"#{file}.zip", project_name) end return project_path end |
#gitlab_download_file_by_name(path, filename, temp_name, project_name) ⇒ Object
下载某个文件zip格式
23 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 23 def gitlab_download_file_by_name(path, filename, temp_name, project_name) host = LRequest.shared.config.host project = LRequest.shared.config.project unless host http = Ping.new(project.web_url) host = http.uri.scheme + "://" + http.uri.hostname end if self.git && self.tag sha = self.tag elsif self.git && self.branch sha = self.branch elsif self.git && self.commit sha = self.commit end token = LRequest.shared.config.access_token begin encode_fiename = LUtils.url_encode(filename) download_url = host + "/api/v4/projects/" + "#{project.id}" + "/repository/archive.zip#{"\\?"}" + "path#{"\\="}#{encode_fiename}#{"\\&"}sha#{"\\="}#{sha}" rescue => exception return nil end LUtils.download_gitlab_zip_file(download_url, token, temp_name) return nil unless File.exist?(temp_name) result = LUtils.unzip_file(temp_name, "./") FileUtils.rm_rf temp_name unless result return nil unless result temp_zip_folder = nil path.each_child do |f| ftype = File::ftype(f) next unless ftype == "directory" next unless f.to_path.include?("#{filename}") || f.to_path.include?("#{project_name}") temp_zip_folder = f break end return nil unless temp_zip_folder && temp_zip_folder.exist? begin FileUtils.chdir(temp_zip_folder) temp_zip_folder.each_child do |f| ftype = File::ftype(f) FileUtils.mv(f, path) end FileUtils.chdir(path) FileUtils.rm_rf(temp_zip_folder) FileUtils.rm_rf("./#{temp_name}") return path rescue => exception pp exception return path end end |
#gitlab_download_tag_zip(root_path, temp_name) ⇒ Object
通过tag下载zip包
118 119 120 121 122 123 124 125 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 |
# File 'lib/lg_pod_plugin/gitlab_archive.rb', line 118 def gitlab_download_tag_zip(root_path, temp_name) project_path = root_path.join(self.name) unless project_path.exist? project_path.mkdir FileUtils.chdir(project_path) end token = LRequest.shared.config.access_token base_url = LRequest.shared.config.project.web_url project_name = LRequest.shared.config.project.path podspec_name = self.name + ".podspec" LgPodPlugin.log_blue "开始下载 => #{base_url}" self.gitlab_download_file_by_name(project_path, podspec_name,"#{podspec_name}.zip", project_name) podspec_path = project_path.join(podspec_name) return nil unless File.exist?(podspec_path) begin need_download_files = PodSpec.form_file(podspec_path).source_files rescue need_download_files = Set[] end unless !need_download_files.empty? tag = self.tag FileUtils.chdir(root_path) file_name = "#{temp_name}.zip" download_url = LUtils.get_gitlab_download_url(base_url, nil, tag, nil, project_name) raise "download_url不存在" unless download_url LUtils.download_gitlab_zip_file(download_url, token, file_name) raise "下载zip包失败, 尝试git clone #{self.git}" unless File.exist?(file_name) # 解压文件 result = LUtils.unzip_file(root_path.join(file_name).to_path, "./") new_file_name = "#{project_name}-#{tag}" raise "解压文件失败, #{new_file_name}不存在" unless result && File.exist?(new_file_name) return root_path.join(new_file_name) end need_download_files.each do |file| self.gitlab_download_file_by_name(project_path, file,"#{file}.zip", project_name) end return project_path end |