lhj-tools 0.1.27 → 0.1.28

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 30a31460c814e1615aaefd473d2553acb40523e966f00ee37872db81d06466e0
4
- data.tar.gz: d6f3348a4ce8c2a77e2a3d9e8ad6ce6393cbc4ae04b9c39d3c7cd31e19b5e45b
3
+ metadata.gz: f1205a5bdd1c7e5e4db52b49b2c60f57e62334a4630572b4f9c76258ce01aaaa
4
+ data.tar.gz: b6750102f1b8989b9316d5bd94e7a93345e999bf9b0c2f414a8c2c0a1a6351b0
5
5
  SHA512:
6
- metadata.gz: 1d722e7e3e748415b3a63e912940a2f5b84e5b4e4d7e87095a52e93204971851c9fa5decc5749d51e3b6ddafd23818844d9bb3090498b60239da0962c6a390ec
7
- data.tar.gz: 22eb054aa18a58b9b926d55af8a76419efbc82569eb60cf4a34c1f5aa8ce6630b1de9545916c1dc6a132edbd9606a838d1fbf602f111426e1f622a3dd67cf328
6
+ metadata.gz: dc99f9def782efb532b5d5e387b4a982ca59bb4e649f2edb45ac029614252a1994bbe1082ffb32ef6077a404bf711475ef3bdcb8f721d695e1cf44cb9391b035
7
+ data.tar.gz: aea91cd4ad9d94d570c2f888d6450c5e984e10457379a42910db3c64493e686d4f6ecf6737bd7b12a3957516f478f4992b9fa7414c70db20fe130bf1f138e343
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+ require 'csv'
3
+
4
+ module Lhj
5
+ class Command
6
+ class DuplicateImageset < Command
7
+ self.summary = '查找重复的图片资源'
8
+
9
+ def initialize(argv)
10
+ @current_path = argv.shift_argument || Dir.pwd
11
+ super
12
+ end
13
+
14
+ def handle
15
+ write_to_file
16
+ end
17
+
18
+ def write_to_file
19
+ map = fetch_images
20
+ file = File.join(@current_path, 'images.cvs')
21
+ FileUtils.rm_rf(file) if File.exist?(file)
22
+ CSV.open(file, 'wb:utf-8') do |csv|
23
+ csv << ['所在模块']
24
+ map.each do |k, v|
25
+ csv << [v.join(', ')] if v.length > 1
26
+ end
27
+ end
28
+ end
29
+
30
+ def fetch_images
31
+ image_map = {}
32
+ Dir.glob("#{@current_path}/**/Assets.xcassets/**/*.imageset").each do |f|
33
+ image_name = File.basename(f, '.*')
34
+ models = image_map[image_name.to_sym]
35
+ unless models
36
+ models = []
37
+ image_map[image_name.to_sym] = models
38
+ end
39
+ models << model_name_with_path(f)
40
+ end
41
+ image_map
42
+ end
43
+
44
+ def model_name_with_path(path)
45
+ reg = %r{Code/([^/]*)/}
46
+ reg = %r{Pods/([^/]*)/} if path =~ /Pods/
47
+ ma = path.match(reg)
48
+ ma[1]
49
+ end
50
+
51
+ end
52
+ end
53
+ end
data/lib/lhj/command.rb CHANGED
@@ -26,6 +26,7 @@ module Lhj
26
26
  require 'lhj/command/sync_pod_repo'
27
27
  require 'lhj/command/sync_pod_version'
28
28
  require 'lhj/command/pgyer_upload'
29
+ require 'lhj/command/duplicate_imageset'
29
30
 
30
31
  self.abstract_command = true
31
32
  self.command = 'lhj'
@@ -19,5 +19,9 @@ module Lhj
19
19
  def self.dingtalk_robot
20
20
  config['dingtalk_robot']
21
21
  end
22
+
23
+ def self.git_branch
24
+ config['git_branch']
25
+ end
22
26
  end
23
27
  end
@@ -8,7 +8,25 @@ module Lhj
8
8
  def self.post_message(title, message)
9
9
  robot_url = Lhj::DingTalkConfig.dingtalk_robot
10
10
  http_body = { 'msgtype' => 'markdown', 'markdown' => { 'title' => title, 'text' => message } }.to_json
11
+ http_post(robot_url, http_body)
12
+ post_branch_message(http_body)
13
+ end
14
+
15
+ def self.post_branch_message(http_body)
16
+ branch_name = fetch_branch
17
+ branch_map = Lhj::DingTalkConfig.git_branch
18
+ branch_robot_key = branch_map[branch_name] if branch_map && branch_name
19
+ branch_robot_url = Lhj::DingTalkConfig.config[branch_robot_key] if branch_robot_key
20
+ http_post(branch_robot_url, http_body) if branch_robot_url
21
+ end
22
+
23
+ def self.http_post(robot_url, http_body)
11
24
  Net::HTTP.post(URI(robot_url), http_body, 'Content-Type' => 'application/json')
12
25
  end
26
+
27
+ def self.fetch_branch
28
+ name = Lhj::Actions.git_branch || ''
29
+ name.split('/').last
30
+ end
13
31
  end
14
32
  end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+ require 'yaml'
3
+ require 'lhj/config'
4
+
5
+ module Lhj
6
+ # Ding Talk Config
7
+ class VikaConfig
8
+
9
+ CONFIG_NAME = 'vika_config.yml'
10
+
11
+ def self.config_file
12
+ File.join(Lhj::Config.instance.home_dir, CONFIG_NAME)
13
+ end
14
+
15
+ def self.config
16
+ @yaml ||= YAML.load_file(config_file)
17
+ end
18
+
19
+ def self.datasheet_id
20
+ config['datasheet_id']
21
+ end
22
+
23
+ def self.view_id
24
+ config['view_id']
25
+ end
26
+
27
+ def self.record_id
28
+ config['record_id']
29
+ end
30
+
31
+ def self.authorization
32
+ config['authorization']
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,23 @@
1
+ require 'lhj/helper/vika_config'
2
+ require 'json'
3
+
4
+ module Lhj
5
+ # pgyer upload
6
+ class VikaHelper
7
+
8
+ RECORDS_API_URL = 'https://api.vika.cn/fusion/v1/datasheets/dstmDXBooTe1Wj0QqE/records?viewId=viwqN84ID6mJb&fieldKey=id'.freeze
9
+
10
+ def self.all_records
11
+ url = URI("https://api.vika.cn/fusion/v1/datasheets/dstmDXBooTe1Wj0QqE/records?viewId=viwqN84ID6mJb&fieldKey=id")
12
+
13
+ https = Net::HTTP.new(url.host, url.port)
14
+ https.use_ssl = true
15
+
16
+ request = Net::HTTP::Get.new(url)
17
+ request["Authorization"] = "Bearer usk3cvEicoXG84y32J61BRg"
18
+
19
+ response = https.request(request)
20
+ puts response.read_body
21
+ end
22
+ end
23
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Lhj
4
4
  module Tools
5
- VERSION = "0.1.27"
5
+ VERSION = "0.1.28"
6
6
  end
7
7
  end
data/lib/lhj/tools.rb CHANGED
@@ -18,6 +18,7 @@ module Lhj
18
18
  require 'lhj/action/sh_helper'
19
19
  require 'lhj/helper/git_helper'
20
20
  require 'lhj/helper/log_helper'
21
+ require 'lhj/helper/vika_helper'
21
22
 
22
23
  class Error < StandardError; end
23
24
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lhj-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.27
4
+ version: 0.1.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - lihaijian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: claide
@@ -296,6 +296,7 @@ files:
296
296
  - lib/lhj/command.rb
297
297
  - lib/lhj/command/config.rb
298
298
  - lib/lhj/command/config/info.rb
299
+ - lib/lhj/command/duplicate_imageset.rb
299
300
  - lib/lhj/command/file_path.rb
300
301
  - lib/lhj/command/head_import.rb
301
302
  - lib/lhj/command/http.rb
@@ -342,6 +343,8 @@ files:
342
343
  - lib/lhj/helper/tb_helper.rb
343
344
  - lib/lhj/helper/team_member_config.rb
344
345
  - lib/lhj/helper/trans_helper.rb
346
+ - lib/lhj/helper/vika_config.rb
347
+ - lib/lhj/helper/vika_helper.rb
345
348
  - lib/lhj/jenkins/client.rb
346
349
  - lib/lhj/jenkins/exceptions.rb
347
350
  - lib/lhj/jenkins/job.rb