certstepper 1.1.4 → 1.2.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/certstepper.rb +115 -49
  3. metadata +65 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d79605fedd8df288f566664fd269a516bea782ea
4
- data.tar.gz: a5fea3b5b2ee819702b93befaec705b18823f7f5
3
+ metadata.gz: 0037ea84791c538ca76c2c6023a07ee457551bc1
4
+ data.tar.gz: 246f6d20f6c1a43a8fad2ace118fed87f3777ff8
5
5
  SHA512:
6
- metadata.gz: 40915f36c73f9f45ccf0115d04af05916d398e31af8870f6ac95768b4522897b6a1114343f0a82153f3b1d0841a365512932ebcf891d782c7b1610da783a1c96
7
- data.tar.gz: 4e3e1bc30fe3c99965cb982e4be32e5bd8ec2a248cc2ec8e0926028405bea1ef7a0d50a143c2b26e6a0ba9476ff7cdfaa9cc7761a513de95f2e12dbb0501d60e
6
+ metadata.gz: 212c55f435ed3b7a2f4dddb2cdfb739d9319d9acb66172968fbdd67e89f584f5b6a5dc90f1cc5f42cd2c289defab35d97add0cf3eac2f4c319441d61e3000acf
7
+ data.tar.gz: caf2b3ec14bb41ad8ae2b88148173dd4d527658c3c0a271b9f21bc69f43bde9d8b26f76904caa3022f255abf219c529ee1a4a14b33fca190abbabf0c53661002
data/lib/certstepper.rb CHANGED
@@ -1,6 +1,9 @@
1
1
  require "pathname"
2
2
  require "fileutils"
3
3
  require "json"
4
+ require "cert"
5
+ require "sigh"
6
+ require 'optparse'
4
7
 
5
8
  class String
6
9
  def strip_control_characters()
@@ -28,13 +31,13 @@ module CertStepper
28
31
 
29
32
 
30
33
  def self.startStep
31
- # if ARGV.length==0 || ARGV == nil
34
+ # if ARGV.length==0 || ARGV == nil
32
35
  # puts "error: Parameter does not match,there is not any parameter"
33
36
  # return nil
34
37
  # end
35
38
 
39
+ #self.logMessage("#{ARGV}\n")
36
40
 
37
- self.logMessage("#{ARGV}\n")
38
41
 
39
42
  begin
40
43
  if ARGV[0].start_with? "chrome-extension:"
@@ -59,6 +62,38 @@ module CertStepper
59
62
  end
60
63
  end
61
64
  else
65
+
66
+ check_xcode_select = `which xcode-select`.strip
67
+ if !File.exists? check_xcode_select
68
+ `xcode-select --install`
69
+ end
70
+
71
+
72
+ @options = {}
73
+ option_parser = OptionParser.new do |opts|
74
+ opts.banner = "certstepper File_Path [Options]命令行生成证书和配置文件!\n文件的内容:三行一个循环,依次是开发者账号、密码、唯一标识"
75
+ @options[:cert_type] = ""
76
+ @options[:profile_type] = "--adhoc"
77
+ @options[:force] = false
78
+
79
+ opts.on('-t cert_type','--type cert_type','生成证书和配置文件的类型') do |value|
80
+ if value.start_with? 'ad'
81
+ @options[:cert_type] = ""
82
+ @options[:profile_type] = "--adhoc"
83
+ elsif value.start_with? 'dev'
84
+ @options[:cert_type] = "--development"
85
+ @options[:profile_type] = "--development"
86
+ elsif value.start_with? 'dis'
87
+ @options[:cert_type] = ""
88
+ @options[:profile_type] = ""
89
+ end
90
+ end
91
+
92
+ opts.on('-f', '--force', '强制重新获取证书,默认生成成功后不再重新获取') do
93
+ @options[:force] = true
94
+ end
95
+ end.parse!
96
+
62
97
  self.parseData ARGV[0]
63
98
  self.startWork
64
99
  end
@@ -85,50 +120,67 @@ module CertStepper
85
120
  end
86
121
 
87
122
  def self.startWork
88
-
123
+ puts "总共要生成#{@@certs.length}个证书"
89
124
  console_root_path = @@root_path.gsub /[\s]/ , "\\ "
90
125
  open_dir ="open #{console_root_path}"
91
126
  system("open #{console_root_path}")
92
127
  puts "Apple Cert Create Stepper\n"
128
+
129
+ failed_cert_array = []
130
+
93
131
  @@certs.each do |cert|
94
132
  puts "----------- begin #{cert.profile_id} Cert ----------- \n"
95
- self.createDir @@root_path + "/#{cert.profile_name}"
96
- puts "1. copy email. <press enter>"
97
- self.getUserInput
98
- self.copyToClipboard cert.email
99
- puts "email coppied : #{cert.email}\n"
100
- puts "2. copy password. <press enter>"
101
- self.getUserInput
102
- self.copyToClipboard cert.password
103
- puts "password coppied : #{cert.password}\n"
104
- puts "3.import and export cert"
105
- self.dealCert cert
106
- puts "4. copy profile name. <press enter>"
107
- self.getUserInput
108
- self.copyToClipboard cert.profile_name
109
- puts "name coppied : #{cert.profile_name}\n"
110
- puts "\n5. copy profile id. <press enter>"
111
- self.getUserInput
112
- self.copyToClipboard cert.profile_id
113
- puts "id coppied : #{cert.profile_id}"
114
- puts "\n6. copy profile name. <press enter>"
115
- self.getUserInput
116
- self.copyToClipboard cert.profile_name
117
- puts "name coppied : #{cert.profile_name}\n"
118
- puts "\n7. move profile to destination from download. <press enter>"
119
- self.getUserInput
120
- mobileprovision_name = "#{cert.profile_name}.mobileprovision"
121
- source_file = "#{File.expand_path('~')}/Downloads/#{mobileprovision_name}"
122
- dest_file = "#{@@root_path}/#{cert.profile_name}/#{mobileprovision_name}"
123
- if File.exist? source_file
124
- FileUtils.mv source_file , dest_file
125
- puts "#{mobileprovision_name} moved\n\n"
126
- else
127
- puts "#{mobileprovision_name} doesn't exist. Please download and move by yourself !\n\n"
128
- end
133
+
134
+ if !generateCertSuccessfully?(cert) || @options[:force]
135
+
136
+ cert_path = console_root_path + "/#{cert.profile_name}"
137
+ createDir cert_path
138
+
139
+ keychain_entry = CredentialsManager::AccountManager.new(user:cert.email , password: cert.password)
140
+ keychain_entry.add_to_keychain
141
+
142
+
143
+ createKeychain cert_path
144
+ system "cert -u #{cert.email} -o #{cert_path} #{@options[:cert_type]}"
145
+ dealCert cert_path
146
+
147
+
148
+ system "produce -u #{cert.email} -a #{cert.profile_id} --app_name #{cert.profile_name} --skip_itc"
149
+ system "sigh -a #{cert.profile_id} -u #{cert.email} -o #{cert_path} #{@options[:profile_type]}"
150
+ #system "sigh -a #{cert.profile_id} -u #{cert.email} -o #{cert_path} --adhoc"
151
+
152
+ if !generateCertSuccessfully? cert
153
+ failed_cert_array << cert.email
154
+ end
155
+
156
+ end
157
+
158
+
159
+ failed_content = "以下账号的证书和配置文件创建失败:\n" + failed_cert_array.join("\n") + "请重新尝试执行命令,如果多次不成功,请检查账号密码的正确性!"
160
+ puts failed_content
129
161
 
130
162
  end
163
+
164
+
131
165
  end
166
+
167
+ def self.generateCertSuccessfully?(cert)
168
+ cert_path = @@root_path + "/#{cert.profile_name}"
169
+ is_p12_exist = false
170
+ is_cer_exist = false
171
+ is_provision_exist = false
172
+ Dir.entries(de_path).each do |file_name|
173
+ if file_name.end_with? ".p12"
174
+ is_p12_exist = true
175
+ elsif file_name.end_with? ".cer"
176
+ is_cer_exist = true
177
+ elsif file_name.end_with? ".mobileprovision"
178
+ is_provision_exist = true
179
+ end
180
+ end
181
+
182
+ return is_p12_exist && is_cer_exist && is_provision_exist
183
+ end
132
184
 
133
185
  def self.parseData(start_path)
134
186
  @@certs = Array.new
@@ -154,9 +206,7 @@ module CertStepper
154
206
  new_cert.password = line_content.strip
155
207
  when 2
156
208
  new_cert.profile_id = line_content.strip
157
- line_content.strip.split(".").each do |comp|
158
- new_cert.profile_name = comp if comp =~ /\b\w?\d+\b/
159
- end
209
+ new_cert.profile_name = line_content.strip.scan(/\b\w?\d+\b/).join ""
160
210
  end
161
211
  index+=1
162
212
  end
@@ -170,7 +220,12 @@ module CertStepper
170
220
  end
171
221
 
172
222
  def self.createDir(filePath)
173
- Dir.mkdir filePath if !Dir.exist? filePath
223
+ if !Dir.exist? filePath
224
+ Dir.mkdir filePath
225
+ else
226
+ FileUtils.rm_r filePath
227
+ Dir.mkdir filePath
228
+ end
174
229
  end
175
230
 
176
231
  def self.getUserInput
@@ -181,11 +236,21 @@ module CertStepper
181
236
  end
182
237
  end
183
238
 
184
- def self.dealCert(cert)
185
- system "security create-keychain -P 123456"
186
- system "security add-trusted-cert -r unspecified -k 123456 #{File.expand_path('~')}/Downloads/ios_development.cer"
187
- system "security export -k 123456 -t certs -f pkcs12 -o #{@@root_path}/#{cert.profile_name}/cert.p12"
188
- system "security delete-keychain 123456"
239
+ def self.createKeychain(de_path)
240
+ @keychain_path = File.expand_path "#{de_path}/CertTempleContainor"
241
+ system "security create-keychain -p 123456 #{@keychain_path}"
242
+ end
243
+
244
+ def self.dealCert(de_path)
245
+ console_de_path = de_path.gsub /[\s]/ , "\\ "
246
+ Dir.entries(de_path).each do |file_name|
247
+ if file_name.end_with? '.cer'
248
+ #system "security add-trusted-cert -r unspecified -k 123456 #{File.expand_path('~')}/Downloads/ios_development.cer"
249
+ system "security import #{de_path}/#{file_name} -k #{@keychain_path}"
250
+ system "security export -k #{@keychain_path} -t certs -f pkcs12 -P 123 -o #{console_de_path}/cert.p12"
251
+ system "security delete-keychain #{@keychain_path}"
252
+ end
253
+ end
189
254
  end
190
255
 
191
256
  def self.dealCertByChrome(root_path , profile_name)
@@ -197,9 +262,10 @@ module CertStepper
197
262
 
198
263
 
199
264
  def self.logMessage(message)
200
- file = File.open("#{File.expand_path('~')}/certstepper.log", "w+")
201
- file.write message
202
- file.close
265
+ puts message
266
+ #file = File.open("#{File.expand_path('~')}/certstepper.log", "w+")
267
+ #file.write message
268
+ #file.close
203
269
  end
204
270
 
205
271
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: certstepper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - chengkai
@@ -9,7 +9,67 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-07-20 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cert
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.2'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.2.8
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.2'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.2.8
33
+ - !ruby/object:Gem::Dependency
34
+ name: sigh
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.3'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 1.3.0
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '1.3'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 1.3.0
53
+ - !ruby/object:Gem::Dependency
54
+ name: produce
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '1.1'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 1.1.1
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '1.1'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 1.1.1
13
73
  description: create ios dev cert simple
14
74
  email: chengkai@1853.com
15
75
  executables:
@@ -28,17 +88,17 @@ require_paths:
28
88
  - lib
29
89
  required_ruby_version: !ruby/object:Gem::Requirement
30
90
  requirements:
31
- - - '>='
91
+ - - ">="
32
92
  - !ruby/object:Gem::Version
33
93
  version: '0'
34
94
  required_rubygems_version: !ruby/object:Gem::Requirement
35
95
  requirements:
36
- - - '>='
96
+ - - ">="
37
97
  - !ruby/object:Gem::Version
38
98
  version: '0'
39
99
  requirements: []
40
100
  rubyforge_project:
41
- rubygems_version: 2.4.8
101
+ rubygems_version: 2.4.5
42
102
  signing_key:
43
103
  specification_version: 4
44
104
  summary: cert simplefy