Module: FIR::Publish

Included in:
Util::ClassMethods
Defined in:
lib/fir/util/publish.rb

Instance Method Summary collapse

Instance Method Details

#binary_informationObject



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/fir/util/publish.rb', line 117

def binary_information
  {
    build: @app_info[:build],
    fname: File.basename(@file_path),
    key: @binary_cert[:key],
    name: @app_info[:display_name] || @app_info[:name],
    origin: 'fir-cli',
    parent_id: @app_id,
    release_tag: 'develop',
    fsize: File.size(@file_path),
    release_type: @app_info[:release_type],
    distribution_name: @app_info[:distribution_name],
    token: @binary_cert[:token],
    version: @app_info[:version],
    changelog: @changelog,
    user_id: @user_info[:id]
  }.reject { |x| x.nil? || x == '' }
end

#dingtalk(*args, options) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/fir/util/publish.rb', line 4

def dingtalk(*args, options)
  if options[:dingtalk_access_token]
    payload = {
      "msgtype": 'markdown',
      "markdown": {
        "title": "ceshi",
        "text": options[:dingtalk_robot_msg]
      }
    }
    url = "https://oapi.dingtalk.com/robot/send?access_token=#{options[:dingtalk_access_token]}"
    DefaultRest.post(url, payload)
  end
end

#fetch_app_infoObject



185
186
187
188
189
190
191
# File 'lib/fir/util/publish.rb', line 185

def fetch_app_info
  logger.info 'Fetch app info from fir.im'

  @fir_app_info = get(fir_api[:app_url] + "/#{@app_id}", api_token: @token)
  write_app_info(id: @fir_app_info[:id], short: @fir_app_info[:short], name: @fir_app_info[:name])
  @fir_app_info
end

#fetch_release_idObject



181
182
183
# File 'lib/fir/util/publish.rb', line 181

def fetch_release_id
  get "#{fir_api[:base_url]}/apps/#{@app_id}/releases/find_release_by_key", api_token: @token, key: @binary_cert[:key]
end

#fetch_release_infoObject



194
195
196
197
198
199
200
201
202
# File 'lib/fir/util/publish.rb', line 194

def fetch_release_info
  logger.info 'Fetch release info from fir.im'

  release_info = get(fir_api[:app_url] + "/#{@app_id}" + "/releases", api_token: @token, page: 1)
  if release_info[:datas].count > 0
    @release_id = release_info[:datas][0][:id]
  end

end

#fetch_uploading_infoObject



171
172
173
174
175
176
177
178
179
# File 'lib/fir/util/publish.rb', line 171

def fetch_uploading_info
  logger.info "Fetching #{@app_info[:identifier]}@fir.im uploading info......"
  logger.info "Uploading app: #{@app_info[:name]}-#{@app_info[:version]}(Build #{@app_info[:build]})"

  post fir_api[:app_url], type: @app_info[:type],
                          bundle_id: @app_info[:identifier],
                          manual_callback: true,
                          api_token: @token
end

#icon_informationObject



106
107
108
109
110
111
112
113
114
115
# File 'lib/fir/util/publish.rb', line 106

def icon_information
  {
    key: @icon_cert[:key],
    token: @icon_cert[:token],
    origin: 'fir-cli',
    parent_id: @app_id,
    fsize: File.size(@uncrushed_icon_path),
    fname: 'blob'
  }
end

#initialize_dtalk_options(args, options) ⇒ Object



18
19
20
21
# File 'lib/fir/util/publish.rb', line 18

def initialize_dtalk_options(args, options)
    @token         = options[:token] || current_token
    @content       = options[:content].to_s
end

#logger_info_app_short_and_qrcode(options) ⇒ Object



223
224
225
226
227
228
229
230
231
232
233
# File 'lib/fir/util/publish.rb', line 223

def logger_info_app_short_and_qrcode(options)
  @download_url = "#{fir_api[:domain]}/#{@fir_app_info[:short]}"
  @download_url += "?release_id=#{@app_uploaded_callback_data[:release_id]}" if !!options[:need_release_id]

  logger.info "Published succeed: #{@download_url}"

  @qrcode_path = "#{File.dirname(@file_path)}/fir-#{@app_info[:name]}.png"
  FIR.generate_rqrcode(@download_url, @qrcode_path)

  logger.info "Local qrcode file: #{@qrcode_path}" if @export_qrcode
end

#logger_info_publishing_messageObject



49
50
51
52
53
54
55
56
57
# File 'lib/fir/util/publish.rb', line 49

def logger_info_publishing_message
   = (@token)

  email = .fetch(:email, '')
  name  = .fetch(:name, '')

  logger.info "Publishing app via #{name}<#{email}>......."
  logger_info_dividing_line
end

#publish(*args, options) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/fir/util/publish.rb', line 23

def publish(*args, options)
  initialize_publish_options(args, options)
  check_supported_file_and_token

  logger_info_publishing_message

  @app_info = send("#{@file_type}_info", @file_path, full_info: true)
  @user_info      = (@token)
  @uploading_info = fetch_uploading_info
  @app_id         = @uploading_info[:id]

  upload_app

  logger_info_dividing_line
  logger_info_app_short_and_qrcode(options)

  # logger.info ">>>> #{options[:dingtalk_notify]}"
  if options[:dingtalk_notify]
    dingtalk_notifier(options)  
  end
  
  upload_mapping_file_with_publish(options)
  logger_info_blank_line
  clean_files
end

#update_app_infoObject



161
162
163
164
165
166
167
168
169
# File 'lib/fir/util/publish.rb', line 161

def update_app_info
  update_info = { short: @short, passwd: @passwd, is_opened: @is_opened }.compact

  return if update_info.blank?

  logger.info 'Updating app info......'

  patch fir_api[:app_url] + "/#{@app_id}", update_info.merge(api_token: @token)
end

#update_release_infoObject



204
205
206
207
208
209
210
# File 'lib/fir/util/publish.rb', line 204

def update_release_info
  logger.info "Update release" ":#{@release_id}" + " info from fir.im"

  if nil != @release_id
    patch fir_api[:app_url] + "/#{@app_id}" + "/releases" + "/#{@release_id}", api_token: @token, is_history: true
  end
end

#upload_appObject



59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/fir/util/publish.rb', line 59

def upload_app
  @icon_cert   = @uploading_info[:cert][:icon]
  @binary_cert = @uploading_info[:cert][:binary]
 
  fetch_release_info
  upload_app_icon unless @app_info[:icons].blank?
  @app_uploaded_callback_data = upload_app_binary
  logger.info "App id is #{@app_id}"
  logger.info "Release id is #{@app_uploaded_callback_data[:release_id]}"
  upload_device_info
  update_app_info
  fetch_app_info
  update_release_info
end

#upload_device_infoObject



151
152
153
154
155
156
157
158
159
# File 'lib/fir/util/publish.rb', line 151

def upload_device_info
return if @app_info[:devices].blank?

logger.info 'Updating devices info......'

post fir_api[:udids_url], key: @binary_cert[:key],
                          udids: @app_info[:devices].join(','),
                          api_token: @token
end

#upload_file(postfix) ⇒ Object



82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/fir/util/publish.rb', line 82

def upload_file(postfix)
  logger.info "Uploading app #{postfix}......"
  url = @uploading_info[:cert][postfix.to_sym][:upload_url]
  info = send("uploading_#{postfix}_info")
  logger.debug "url = #{url}, info = #{info}"
  uploaded_info = post(url, info.merge(manual_callback: true),
                       params_to_json: false,
                       header: nil)
rescue StandardError
  logger.error "Uploading app #{postfix} failed"
  exit 1
end

#upload_mapping_file_with_publish(options) ⇒ Object



212
213
214
215
216
217
218
219
220
221
# File 'lib/fir/util/publish.rb', line 212

def upload_mapping_file_with_publish(options)
  return if !options[:mappingfile] || !options[:proj]

  logger_info_blank_line

  mapping options[:mappingfile], proj: options[:proj],
                                 build: @app_info[:build],
                                 version: @app_info[:version],
                                 token: @token
end

#uploading_binary_infoObject



136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/fir/util/publish.rb', line 136

def uploading_binary_info
  {
    key: @binary_cert[:key],
    token: @binary_cert[:token],
    file: File.new(@file_path, 'rb'),
    # Custom variables
    'x:name' => @app_info[:display_name] || @app_info[:name],
    'x:build' => @app_info[:build],
    'x:version' => @app_info[:version],
    'x:changelog' => @changelog,
    'x:release_type' => @app_info[:release_type],
    'x:distribution_name' => @app_info[:distribution_name]
  }
end

#uploading_icon_infoObject



95
96
97
98
99
100
101
102
103
104
# File 'lib/fir/util/publish.rb', line 95

def uploading_icon_info
  large_icon_path = @app_info[:icons].max_by { |f| File.size(f) }
  @uncrushed_icon_path = convert_icon(large_icon_path)
  {
    key: @icon_cert[:key],
    token: @icon_cert[:token],
    file: File.new(@uncrushed_icon_path, 'rb'),
    'x:is_converted' => '1'
  }
end