pixab 2.2.3 → 2.3.0

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: 8f09a9844dc68dff860b089c152670840bebb8847446fed524c4090f44382fd7
4
- data.tar.gz: c4f4db1ade058dfae0a4d7d45cf83f21920a5664ea307e545a4b1e6b6b3bfc5f
3
+ metadata.gz: 1d1ae10d6ef195b7f6c0151592fb1b12c09f98d402d22fe79508f825373d93e7
4
+ data.tar.gz: 4fda8b766e5809a9e508f967064232ac307379083fceff921642b5db4ee2db25
5
5
  SHA512:
6
- metadata.gz: f54c1b12ffb4c692064d945ed26ea9b054055563240d0fada93adfda1b628feaf2a1dcfcdcede3064f5cfea0893ab49a2b7092b3eadcf122d7fa6a8fb22d996c
7
- data.tar.gz: 6d841b0e5773e8f24e141ca893c248b3d871d7c11a46028ef63769c09c0ce6cdf7a1823d117cd660a794ce3ff8f7d41b1836a4ea571b91bf9e8acb3a1a3d3f8b
6
+ metadata.gz: 8e12fd8eb77e05b5ecea064b304475955667397c0f46de70e12bd98a37379a645f34cd8728e6be3a95e569c583e4778ec79eb36e13b40e182e1d0f0f0724e924
7
+ data.tar.gz: dbb0d5c996e7ab512e9f935546cbe47b2469342c097e514f2c6fa0bc6e7b37fc37036c14fe713bddf313dc3a4cbea6146c1e4ef16ae6d17213bd0f03322a3965
data/lib/Platform.rb CHANGED
@@ -8,6 +8,14 @@ module Pixab
8
8
  @platform = platform
9
9
  end
10
10
 
11
+ def self.iOS
12
+ self.new('iOS')
13
+ end
14
+
15
+ def self.android
16
+ self.new('android')
17
+ end
18
+
11
19
  def is_iOS
12
20
  platform == 'iOS'
13
21
  end
@@ -0,0 +1,53 @@
1
+ require_relative '../GitUtils.rb'
2
+ require_relative '../Platform.rb'
3
+
4
+ module Pixab
5
+
6
+ class UserInfo
7
+
8
+ attr_accessor :platform
9
+
10
+ def platform
11
+ if @platform.nil?
12
+ @platform = readPlatform
13
+ end
14
+ return @platform
15
+ end
16
+
17
+ def git_repos
18
+ git_repos = GitUtils.find_git_repos(Dir.pwd)
19
+ git_repos.contact(git_sub_repos)
20
+ return git_repos
21
+ end
22
+
23
+ def git_sub_repos
24
+ sub_repos_path = nil
25
+ if @platform.is_android
26
+ parent_dir = File.dirname(Dir.pwd)
27
+ sub_repos_path = File.join(parent_dir, 'pixab_libraries')
28
+ end
29
+
30
+ if sub_repos_path.nil?
31
+ return []
32
+ end
33
+
34
+ sub_git_repos = GitUtils.find_git_repos(sub_repos_path)
35
+ return sub_git_repos
36
+ end
37
+
38
+ private
39
+
40
+ def readPlatform
41
+ android_file_name = 'build.gradle.kts'
42
+ if File.exist?(android_file_name)
43
+ return Platform.android
44
+ else
45
+ return Platform.iOS
46
+ end
47
+ end
48
+
49
+ end
50
+
51
+ end
52
+
53
+
@@ -1,16 +1,12 @@
1
+ require_relative '../Utilities/UserInfo.rb'
1
2
  require_relative './FeatureStart.rb'
3
+ require_relative './FeatureCopy.rb'
2
4
 
3
5
  module Pixab
4
6
 
5
7
  class Feature
6
8
 
7
9
  def run(commands = nil)
8
- git_repos = GitUtils.find_git_repos(Dir.pwd)
9
- if git_repos.empty?
10
- puts "No Git repositories found.".red
11
- return
12
- end
13
-
14
10
  isNeedPush = true
15
11
  commands.each_index do |index|
16
12
  command = commands[index]
@@ -24,22 +20,53 @@ module Pixab
24
20
  command = commands[index]
25
21
  case command
26
22
  when 'start'
27
- feature_name = commands[index + 1]
28
- if feature_name.nil?
29
- puts "请输入要创建的分支名称".red
30
- return
31
- end
32
- feature_name = ensure_feature_prefix(feature_name)
33
-
34
- feature_start = FeatureStart.new(isNeedPush)
35
- git_repos.each do |repo|
36
- feature_start.run(repo, feature_name)
37
- end
23
+ featureStart
24
+ when 'copy'
25
+ featureCopy
38
26
  end
39
27
  end
40
28
 
41
29
  end
42
30
 
31
+ def featureStart(commands, index, isNeedPush)
32
+ git_repos = UserInfo.new.git_repos
33
+ if git_repos.empty?
34
+ puts "No Git repositories found.".red
35
+ return
36
+ end
37
+
38
+ feature_name = commands[index + 1]
39
+ if feature_name.nil?
40
+ puts "请输入要创建的分支名称".red
41
+ return
42
+ end
43
+ feature_name = ensure_feature_prefix(feature_name)
44
+
45
+ feature_start = FeatureStart.new(isNeedPush)
46
+ git_repos.each do |repo|
47
+ feature_start.run(repo, feature_name)
48
+ end
49
+ end
50
+
51
+ def featureCopy(commands, index, isNeedPush)
52
+ git_repos = UserInfo.new.git_sub_repos
53
+ if git_repos.empty?
54
+ puts "No Git repositories found.".red
55
+ return
56
+ end
57
+
58
+ feature_name = GitRepoInfo.new.branch
59
+ if feature_name.nil?
60
+ puts "无法获取当前分支名称".red
61
+ return
62
+ end
63
+
64
+ feature_copy = FeatureCopy.new(isNeedPush)
65
+ git_repos.each do |repo|
66
+ feature_copy.run(repo, feature_name)
67
+ end
68
+ end
69
+
43
70
  def ensure_feature_prefix(feature_name)
44
71
  feature_name.start_with?('feature') ? feature_name : "feature/#{feature_name}"
45
72
  end
@@ -0,0 +1,54 @@
1
+ require 'colored2'
2
+ require_relative '../GitUtils.rb'
3
+ require_relative '../gitlab/GitRepoInfo.rb'
4
+
5
+ module Pixab
6
+
7
+ class FeatureCopy
8
+
9
+ def initialize(isNeedPush)
10
+ @isNeedPush = isNeedPush
11
+ end
12
+
13
+ def run(path, feature_name)
14
+ unless Dir.exist?(path)
15
+ puts "当前目录不存在: #{path}".red
16
+ return
17
+ end
18
+
19
+ puts "\n#{File.basename(path)} 开始创建分支: #{feature_name}\n".green
20
+
21
+ Dir.chdir(path) do
22
+ create_feature_branch(feature_name)
23
+ end
24
+ end
25
+
26
+ def create_feature_branch(feature_name)
27
+ if !GitUtils.is_git_repo
28
+ puts "当前目录不是 Git 仓库!, path: #{Dir.pwd}".red
29
+ return
30
+ end
31
+
32
+ target_branch = GitRepoInfo.get_target_branch(feature_name)
33
+ if target_branch.nil?
34
+ puts "无法获取目标分支,分支:#{feature_name}".red
35
+ end
36
+
37
+ remote_target_branch = GitUtils.get_remote_branch_name(target_branch)
38
+ if remote_target_branch.nil?
39
+ puts "远程仓库不存在 #{target_branch} 分支!".red
40
+ return
41
+ end
42
+
43
+ GitUtils.fetch_origin(target_branch)
44
+
45
+ `git checkout -b #{feature_name} #{remote_target_branch}`
46
+
47
+ # 是否需要推送到远程仓库
48
+ if @isNeedPush
49
+ `git push -u origin #{feature_name}`
50
+ end
51
+
52
+ end
53
+
54
+ end
data/lib/git/Git.rb CHANGED
@@ -1,11 +1,11 @@
1
- require_relative '../GitUtils.rb'
1
+ require_relative '../Utilities/UserInfo.rb'
2
2
 
3
3
  module Pixab
4
4
 
5
5
  class Git
6
6
 
7
7
  def run(commands)
8
- git_repos = GitUtils.find_git_repos(Dir.pwd)
8
+ git_repos = UserInfo.new.git_repos
9
9
  if git_repos.empty?
10
10
  puts "No Git repositories found.".red
11
11
  return
@@ -15,20 +15,50 @@ module Pixab
15
15
 
16
16
  `git fetch origin`
17
17
 
18
+ # 获取当前分支
18
19
  @branch = GitUtils.current_branch
19
20
  if @branch.nil?
20
21
  puts "无法获取当前分支".red
21
22
  end
23
+ end
22
24
 
23
- @target_branch = get_target_branch(@branch)
25
+ # 获取目标分支
26
+ def target_branch
24
27
  if @target_branch.nil?
25
- puts "无法获取目标分支,当前分支:#{@branch}".red
28
+ @target_branch = GitRepoInfo.get_target_branch(@branch)
29
+ if @target_branch.nil?
30
+ puts "无法获取目标分支,当前分支:#{@branch}".red
31
+ end
32
+ end
33
+ return @target_branch
34
+ end
35
+
36
+ # 获取远程分支
37
+ def remote_branch
38
+ if @remote_branch.nil?
39
+ @remote_branch = "origin/#{@branch}"
26
40
  end
41
+ return @remote_branch
42
+ end
27
43
 
28
- @remote_branch = "origin/#{@branch}"
29
- @remote_target_branch = "origin/#{@target_branch}"
44
+ # 获取远程目标分支
45
+ def remote_target_branch
46
+ if @remote_target_branch.nil?
47
+ @remote_target_branch = "origin/#{@target_branch}"
48
+ end
49
+ return @remote_target_branch
30
50
  end
31
51
 
52
+ # 判断远程分支是否代码是否同步到远程目标分支
53
+ def is_remote_branch_synced
54
+ GitUtils.is_branch_synced(@remote_branch, @remote_target_branch)
55
+ end
56
+
57
+ end
58
+
59
+ class << GitRepoInfo
60
+
61
+ # 获取目标分支
32
62
  def get_target_branch(branch)
33
63
  splited_branchs = branch.split('/')
34
64
  feature_name = splited_branchs[-1]
@@ -46,6 +76,7 @@ module Pixab
46
76
  end
47
77
  end
48
78
 
79
+ # 通过分支名获取对应版本号
49
80
  def get_version(feature_name)
50
81
  # 用 '_' 分割字符串
51
82
  parts = feature_name.split('_')
@@ -65,11 +96,6 @@ module Pixab
65
96
  nil
66
97
  end
67
98
 
68
- # 判断远程分支是否代码是否同步到远程目标分支
69
- def is_remote_branch_synced
70
- GitUtils.is_branch_synced(@remote_branch, @remote_target_branch)
71
- end
72
-
73
99
  end
74
100
 
75
101
  end
@@ -3,25 +3,22 @@ require_relative '../Platform.rb'
3
3
  require_relative './GitlabInfo.rb'
4
4
  require_relative '../Utilities.rb'
5
5
  require_relative './GitlabMR.rb'
6
+ require_relative '../Utilities/UserInfo.rb'
6
7
 
7
8
  module Pixab
8
9
 
9
10
  class GitlabMRManager
10
11
 
11
12
  def run(commands = nil)
12
- platform = nil
13
- sub_repos_path = nil
14
-
13
+ user_info = UserInfo.new
15
14
  if not commands.nil?
16
15
  commands.each_index do |index|
17
16
  command = commands[index]
18
17
  case command
19
18
  when '--android'
20
- platform = Platform.new('android')
21
- parent_dir = File.dirname(Dir.pwd)
22
- sub_repos_path = File.join(parent_dir, 'pixab_libraries')
19
+ user_info.platform = Platform.android
23
20
  when '--iOS'
24
- platform = Platform.new('iOS')
21
+ user_info.platform = Platform.iOS
25
22
  when '--token'
26
23
  token = commands[index + 1]
27
24
  unless token.nil?
@@ -31,31 +28,19 @@ module Pixab
31
28
  end
32
29
  end
33
30
 
34
- if platform.nil?
35
- platform = Platform.new('iOS')
36
- end
37
-
38
31
  token = GitlabInfo.get_user_token
39
32
  if token.nil?
40
33
  puts "未设置 Gitlab Token".red
41
34
  return
42
35
  end
43
36
 
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
-
37
+ git_repos = user_info.git_repos
52
38
  if git_repos.empty?
53
39
  puts "No Git repositories found.".red
54
40
  return
55
41
  end
56
42
 
57
- is_iOS = platform.is_iOS
58
- reviewers = is_iOS ? GitlabInfo.iOS_reviewers : GitlabInfo.android_reviewers
43
+ reviewers = user_info.platform.is_iOS ? GitlabInfo.iOS_reviewers : GitlabInfo.android_reviewers
59
44
  selected_reviewers = Utilities.display_choose_list(reviewers, nil, "审核人员", "请选择审核人员:", nil, nil, true)
60
45
 
61
46
  if selected_reviewers.empty?
@@ -64,7 +49,7 @@ module Pixab
64
49
  end
65
50
 
66
51
  reviewer_ids = []
67
- if is_iOS
52
+ if user_info.platform.is_iOS
68
53
  selected_reviewers.each do |reviewer|
69
54
  reviewer_ids << GitlabInfo.iOS_reviewer_id(reviewer)
70
55
  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.3"
4
+ VERSION = "2.3.0"
5
5
  end
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.3
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - 廖再润
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-31 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored2
@@ -108,7 +108,9 @@ files:
108
108
  - lib/Platform.rb
109
109
  - lib/RepoManager.rb
110
110
  - lib/Utilities.rb
111
+ - lib/Utilities/UserInfo.rb
111
112
  - lib/feature/Feature.rb
113
+ - lib/feature/FeatureCopy.rb
112
114
  - lib/feature/FeatureStart.rb
113
115
  - lib/git/Git.rb
114
116
  - lib/gitlab/GitRepoInfo.rb