pixab 2.2.1 → 2.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40bdedbf96ae1aad98cea6889c0cd32dafc9d9d6634ed181ea5d3aad9fc50c53
4
- data.tar.gz: f097ad80dcff665eb3f0e6a77f7717fbed41bc7e7503e6819a09e0591e5b43f2
3
+ metadata.gz: 8f09a9844dc68dff860b089c152670840bebb8847446fed524c4090f44382fd7
4
+ data.tar.gz: c4f4db1ade058dfae0a4d7d45cf83f21920a5664ea307e545a4b1e6b6b3bfc5f
5
5
  SHA512:
6
- metadata.gz: 74c4e32db81e84edf7d54c6a7bf719290bf458978440435e231113ba1e08eefb6dc659934742f295a1660733887c4adbb24f00f408adc303c22e050a57264d4f
7
- data.tar.gz: fec66d4eac0ed930fa2052a3d02d77e8a482b1da15edf8f068e6fdbb5c98f81bf25649b0bdf0d707115fa54b15b69639dd192a3ce3ec7313040a622f59ccf705
6
+ metadata.gz: f54c1b12ffb4c692064d945ed26ea9b054055563240d0fada93adfda1b628feaf2a1dcfcdcede3064f5cfea0893ab49a2b7092b3eadcf122d7fa6a8fb22d996c
7
+ data.tar.gz: 6d841b0e5773e8f24e141ca893c248b3d871d7c11a46028ef63769c09c0ce6cdf7a1823d117cd660a794ce3ff8f7d41b1836a4ea571b91bf9e8acb3a1a3d3f8b
@@ -1,3 +1,5 @@
1
+ require 'yaml'
2
+
1
3
  module Pixab
2
4
 
3
5
  class GitlabInfo
@@ -5,8 +7,8 @@ module Pixab
5
7
  # Gitlab API endpoint
6
8
  API_ENDPOINT = 'https://techgit.meitu.com/api/v4'
7
9
 
8
- # Gitlab private token
9
- TOKEN = 'glpat-BZWgys9gsAQ8mnGYTajr'
10
+ # Gitlab token key
11
+ TOKEN_KEY = 'user_token'
10
12
 
11
13
  end
12
14
 
@@ -58,6 +60,37 @@ module Pixab
58
60
  end
59
61
  end
60
62
 
63
+ def get_config
64
+ config_file = get_config_file
65
+ if File.exist?(config_file)
66
+ return YAML.load_file(config_file)
67
+ else
68
+ return {}
69
+ end
70
+ end
71
+
72
+ def get_user_token
73
+ config = get_config
74
+ return config[GitlabInfo::TOKEN_KEY]
75
+ end
76
+
77
+ def set_user_token(token)
78
+ config = get_config
79
+ config[GitlabInfo::TOKEN_KEY] = token
80
+ config_dir = get_config_dir
81
+ config_file = get_config_file
82
+ Dir.mkdir(config_dir) unless Dir.exist?(config_dir)
83
+ File.write(config_file, config.to_yaml)
84
+ end
85
+
86
+ def get_config_dir
87
+ File.expand_path('~/.pixab')
88
+ end
89
+
90
+ def get_config_file
91
+ File.join(get_config_dir, 'mrConfig.yml')
92
+ end
93
+
61
94
  end
62
95
 
63
96
  end
@@ -9,6 +9,10 @@ module Pixab
9
9
 
10
10
  class GitlabMR
11
11
 
12
+ def initialize(token)
13
+ @token = token
14
+ end
15
+
12
16
  def run(path, reviewers_ids)
13
17
  unless Dir.exist?(path)
14
18
  puts "当前目录不存在: #{path}".red
@@ -45,7 +49,7 @@ module Pixab
45
49
 
46
50
  # 构建 HTTP 请求
47
51
  request = Net::HTTP::Post.new(uri)
48
- request['PRIVATE-TOKEN'] = GitlabInfo::TOKEN
52
+ request['PRIVATE-TOKEN'] = @token
49
53
  request['Content-Type'] = 'application/json'
50
54
 
51
55
  body = {
@@ -94,7 +98,7 @@ module Pixab
94
98
 
95
99
  uri = URI("#{GitlabInfo::API_ENDPOINT}/projects/#{URI.encode_www_form_component(project_path)}")
96
100
  request = Net::HTTP::Get.new(uri)
97
- request['PRIVATE-TOKEN'] = GitlabInfo::TOKEN
101
+ request['PRIVATE-TOKEN'] = @token
98
102
 
99
103
  http = Net::HTTP.new(uri.hostname, uri.port)
100
104
  http.use_ssl = (uri.scheme == 'https') # 如果是 HTTPS,启用 SSL
@@ -10,6 +10,7 @@ module Pixab
10
10
 
11
11
  def run(commands = nil)
12
12
  platform = nil
13
+ sub_repos_path = nil
13
14
 
14
15
  if not commands.nil?
15
16
  commands.each_index do |index|
@@ -17,8 +18,15 @@ module Pixab
17
18
  case command
18
19
  when '--android'
19
20
  platform = Platform.new('android')
21
+ parent_dir = File.dirname(Dir.pwd)
22
+ sub_repos_path = File.join(parent_dir, 'pixab_libraries')
20
23
  when '--iOS'
21
24
  platform = Platform.new('iOS')
25
+ when '--token'
26
+ token = commands[index + 1]
27
+ unless token.nil?
28
+ GitlabInfo.set_user_token(token)
29
+ end
22
30
  end
23
31
  end
24
32
  end
@@ -27,8 +35,20 @@ module Pixab
27
35
  platform = Platform.new('iOS')
28
36
  end
29
37
 
30
- git_repos = Pixab::GitlabMRManager.new.find_git_repos(Dir.pwd)
38
+ token = GitlabInfo.get_user_token
39
+ if token.nil?
40
+ puts "未设置 Gitlab Token".red
41
+ return
42
+ end
31
43
 
44
+ git_repos = GitUtils.find_git_repos(Dir.pwd)
45
+ unless sub_repos_path.nil?
46
+ sub_git_repos = GitUtils.find_git_repos(sub_repos_path)
47
+ unless sub_git_repos.nil?
48
+ git_repos.concat(sub_git_repos)
49
+ end
50
+ end
51
+
32
52
  if git_repos.empty?
33
53
  puts "No Git repositories found.".red
34
54
  return
@@ -54,19 +74,13 @@ module Pixab
54
74
  end
55
75
  end
56
76
 
57
- gitlab_mr = GitlabMR.new
77
+ gitlab_mr = GitlabMR.new(token)
58
78
  git_repos.each do |repo|
59
79
  gitlab_mr.run(repo, reviewer_ids)
60
80
  end
61
81
 
62
82
  end
63
83
 
64
- # 查找包含 Git 仓库的目录
65
- def find_git_repos(root_dir)
66
- # 使用 Dir.glob 匹配所有包含 .git 子目录的目录
67
- Dir.glob("#{root_dir}/**/.git").map { |git_dir| File.dirname(File.expand_path(git_dir)) }
68
- end
69
-
70
84
  end
71
85
 
72
86
  end
data/lib/pixab/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pixab
4
- VERSION = "2.2.1"
4
+ VERSION = "2.2.3"
5
5
  end
data/pixab.gemspec CHANGED
@@ -37,6 +37,7 @@ Gem::Specification.new do |spec|
37
37
  spec.add_dependency 'rubyzip'
38
38
  spec.add_dependency 'nokogiri'
39
39
  spec.add_dependency 'rest-client'
40
+ spec.add_dependency 'yaml'
40
41
 
41
42
  # For more information and examples about making a new gem, check out our
42
43
  # guide at: https://bundler.io/guides/creating_gem.html
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pixab
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - 廖再润
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-27 00:00:00.000000000 Z
11
+ date: 2024-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored2
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: yaml
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  description: Write a longer description or delete this line.
70
84
  email:
71
85
  - lzr3@us.meitu.com