pixab 2.2.3 → 2.3.1
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 +4 -4
- data/lib/Platform.rb +8 -0
- data/lib/Utilities/UserInfo.rb +53 -0
- data/lib/feature/Feature.rb +44 -17
- data/lib/feature/FeatureCopy.rb +55 -0
- data/lib/git/Git.rb +2 -2
- data/lib/gitlab/GitRepoInfo.rb +35 -9
- data/lib/gitlab/GitlabMRManager.rb +7 -22
- data/lib/pixab/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ce14f99dbf83f98b625eefb60bd2093cf7c9322c703a7d69ab077fa3605280a
|
4
|
+
data.tar.gz: f09ac53203795a9d02901e6caabc8a9ec8c5baa5f11bb516ed848332afbc2551
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 413f91682e09d47c0c19241cd397948ca18e882f4876605c736909b05f109841bfaf34ab47536966b113521e6120df5bcbf2990c669d6d48f04dfee4315fc15e
|
7
|
+
data.tar.gz: be562d9cc8621eed03e4b61e45ed4135e52b8c7bef6e446251dceb44b2383eb9171df301499f4f41d0a1552d2d22ead2aaa4ebc09c204e9086c54f86307502b0
|
data/lib/Platform.rb
CHANGED
@@ -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
|
+
|
data/lib/feature/Feature.rb
CHANGED
@@ -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
|
-
|
28
|
-
|
29
|
-
|
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,55 @@
|
|
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
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
data/lib/git/Git.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
require_relative '../
|
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 =
|
8
|
+
git_repos = UserInfo.new.git_repos
|
9
9
|
if git_repos.empty?
|
10
10
|
puts "No Git repositories found.".red
|
11
11
|
return
|
data/lib/gitlab/GitRepoInfo.rb
CHANGED
@@ -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
|
-
|
25
|
+
# 获取目标分支
|
26
|
+
def target_branch
|
24
27
|
if @target_branch.nil?
|
25
|
-
|
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
|
-
|
29
|
-
|
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
|
-
|
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.
|
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.
|
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 =
|
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
|
-
|
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
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.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 廖再润
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
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
|