pixab 2.2.0 → 2.2.2

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: 7c2253162bf9e37eaaaa541ca25d978ee6ced4fdeda468101b90fc0758ecc805
4
- data.tar.gz: 42237eb540beb23065e0ccc03f267cdaa03f82f27122b1f8e51c6d7f1ff247e2
3
+ metadata.gz: 7e4ecbfcfe6d0ab2d1d8ee3f3df1260f010a390779ebd217b7f277dd6fe62e40
4
+ data.tar.gz: d6545ec0fb08269c0454f3dda5606d45b2233d4a15ccc1c9b646ca7e4acc6885
5
5
  SHA512:
6
- metadata.gz: d1a0f1839ea57b8e810a4ef2c019566b1b2b20d7c9923f160edf1a055f04af2d65d97e4c72d7a71c0482a688d2fb31b029a1cba0501b09164f7a98e3db5957d9
7
- data.tar.gz: 76c95d7addbd2ce3425e3b5c975d775e4e87ea645e53e82d40bd7d08266f17abfe7fb3bc2488e74166d971a88381f9bc6eb24ac636f6b3def7323d9750b9b939
6
+ metadata.gz: 5a88385f99379bf784232c343f6e04b08a7d908eb8f29df0f8dc6aca21de69fba4f72b2b3d68124a6dfa35cb6948d06fd5792f6bda4779a22fd9e5a81ae3b271
7
+ data.tar.gz: 18b809e1f690cc39ae2b96b982c3f6bfb77e9971804b185f853bd9819938fffd86d5300bc8a3c5134f894ea9197ed70ed7676773c075e5c33c1ab02e27964dd8
@@ -16,9 +16,17 @@ module Pixab
16
16
  `git fetch origin`
17
17
 
18
18
  @branch = GitUtils.current_branch
19
+ if @branch.nil?
20
+ puts "无法获取当前分支".red
21
+ end
22
+
19
23
  @target_branch = get_target_branch(@branch)
20
- @remote_branch = GitUtils.remote_branch(@branch)
21
- @remote_target_branch = GitUtils.remote_branch(@target_branch)
24
+ if @target_branch.nil?
25
+ puts "无法获取目标分支,当前分支:#{@branch}".red
26
+ end
27
+
28
+ @remote_branch = "origin/#{@branch}"
29
+ @remote_target_branch = "origin/#{@target_branch}"
22
30
  end
23
31
 
24
32
  def get_target_branch(branch)
@@ -39,13 +47,22 @@ module Pixab
39
47
  end
40
48
 
41
49
  def get_version(feature_name)
50
+ # 用 '_' 分割字符串
42
51
  parts = feature_name.split('_')
43
- parts.map do |part|
44
- is_numeric = part.match?(/^\d+$/) # 检查是否为纯数字
45
- if is_numeric
52
+
53
+ # 遍历分割的部分
54
+ parts.each do |part|
55
+ # 判断是否为纯数字
56
+ if part.match?(/^\d+$/)
57
+ return part
58
+ # 判断是否为类似 7.5.0 的格式
59
+ elsif part.match?(/^\d+(\.\d+)*$/)
46
60
  return part
47
61
  end
48
62
  end
63
+
64
+ # 如果没有满足条件的字符串,返回 nil
65
+ nil
49
66
  end
50
67
 
51
68
  # 判断远程分支是否代码是否同步到远程目标分支
@@ -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,7 +10,6 @@ module Pixab
10
10
 
11
11
  def run(commands = nil)
12
12
  platform = nil
13
-
14
13
  if not commands.nil?
15
14
  commands.each_index do |index|
16
15
  command = commands[index]
@@ -19,6 +18,11 @@ module Pixab
19
18
  platform = Platform.new('android')
20
19
  when '--iOS'
21
20
  platform = Platform.new('iOS')
21
+ when '--token'
22
+ token = commands[index + 1]
23
+ unless token.nil?
24
+ GitlabInfo.set_user_token(token)
25
+ end
22
26
  end
23
27
  end
24
28
  end
@@ -27,6 +31,12 @@ module Pixab
27
31
  platform = Platform.new('iOS')
28
32
  end
29
33
 
34
+ token = GitlabInfo.get_user_token
35
+ if token.nil?
36
+ puts "未设置 Gitlab Token".red
37
+ return
38
+ end
39
+
30
40
  git_repos = Pixab::GitlabMRManager.new.find_git_repos(Dir.pwd)
31
41
 
32
42
  if git_repos.empty?
@@ -54,7 +64,7 @@ module Pixab
54
64
  end
55
65
  end
56
66
 
57
- gitlab_mr = GitlabMR.new
67
+ gitlab_mr = GitlabMR.new(token)
58
68
  git_repos.each do |repo|
59
69
  gitlab_mr.run(repo, reviewer_ids)
60
70
  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.0"
4
+ VERSION = "2.2.2"
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pixab
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - 廖再润
@@ -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