ZReviewTender 0.0.2 → 0.0.5

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: b482b3d376862e252fc85de5ffa45c7e199f084f5f9e25f4eb24303cfbd78a4a
4
- data.tar.gz: 7c59fc9ac37042e81bd250a24110a6bfe4f6e7305faa9202452448e6c9244908
3
+ metadata.gz: 4905d8141a111bf59431bb91ae97e09b7a1b1d55c311c0ccda08b3ef0c9b6fc8
4
+ data.tar.gz: 346a8c5be0271f0be78bcfa0947333f7e2283988785d3ade883799fae38ed205
5
5
  SHA512:
6
- metadata.gz: afcaad838113ff6e76cd857ffec2ae7d717bdc6e23d395049262842ee007c689ec2397abcdac132043f9e09a3f08b38168f01c8f688892e6fdd251e217c473a5
7
- data.tar.gz: 400c950bf1d5f39d552d756d91d152772df9e7ece13ddb71fc432f21903a051e4a6b6e5a5c5c8fb41df2920205a5bebafcfcce1efbbaf03f2292a981fe9e57e3
6
+ metadata.gz: b4a3eba5f67873c14d40bf96ec20820a2ba4e985722f42132b1983bfa60b40eb475088be78c958d13e2c1be43bd03b8965509efcafb5adc01757333d0d44720a
7
+ data.tar.gz: db5d1acb0233c84fe06dbcb654dbda40ee97b25eb85f52d74dfd77ea7f34779f072ca25c4d2367b5500bf780a0ffbc5e49d7b8b592012e9f92387b96d032acc8
@@ -29,34 +29,34 @@ class SlackProcessor < Processor
29
29
  end
30
30
 
31
31
  def processReviews(reviews, platform)
32
- reviews.each_slice(50) do |reviewGroup|
32
+
33
+ # 1 review 1 message
34
+ reviews.each do |review|
33
35
  payload = Payload.new()
34
36
  payload.attachments = []
37
+
38
+ attachment = Payload::Attachment.new()
35
39
 
36
- reviewGroup.each do |review|
37
- attachment = Payload::Attachment.new()
38
-
39
- stars = "★" * review.rating + "☆" * (5 - review.rating)
40
- color = review.rating >= 4 ? "good" : (review.rating > 2 ? "warning" : "danger")
41
- date = Time.at(review.createdDateTimestamp).getlocal(timeZoneOffset)
42
-
43
- title = "#{stars}"
44
- if !review.title.nil?
45
- title = "#{review.title} - #{stars}"
46
- end
47
-
48
- attachment.color = color
49
- attachment.author_name = review.userName
50
- attachment.fallback = title
51
- attachment.title = title
52
- attachment.text = review.body
53
- attachment.footer = "#{platform} - #{review.platform} - #{review.appVersion} - #{review.territory} - <#{review.url}|#{date}>"
54
-
55
- payload.attachments.append(attachment)
40
+ stars = "★" * review.rating + "☆" * (5 - review.rating)
41
+ color = review.rating >= 4 ? "good" : (review.rating > 2 ? "warning" : "danger")
42
+ date = Time.at(review.createdDateTimestamp).getlocal(timeZoneOffset)
43
+
44
+ title = "#{stars}"
45
+ if !review.title.nil?
46
+ title = "#{review.title} - #{stars}"
56
47
  end
48
+
49
+ attachment.color = color
50
+ attachment.author_name = review.userName
51
+ attachment.fallback = title
52
+ attachment.title = title
53
+ attachment.text = review.body
54
+ attachment.footer = "#{platform} - #{review.platform} - #{review.appVersion} - #{review.territory} - <#{review.url}|#{date}>"
55
+
56
+ payload.attachments.append(attachment)
57
57
 
58
58
  result = request(payload)
59
- if result["ok"] != true
59
+ if !result
60
60
  Helper.logError(result)
61
61
  end
62
62
  end
@@ -74,11 +74,11 @@ class SlackProcessor < Processor
74
74
  body = "#{platform} Init Success!, will resend App Review to this channel automatically."
75
75
 
76
76
  attachment.color = "good"
77
- attachment.author_name = "<https://zhgchg.li|ZhgChgLi>"
77
+ attachment.author_name = "ZhgChgLi"
78
78
  attachment.fallback = title
79
79
  attachment.title = title
80
80
  attachment.text = body
81
- attachment.footer = "Powered by <|ZReviewTender>"
81
+ attachment.footer = "<https://github.com/ZhgChgLi/ZReviewTender|ZReviewTender>, <https://github.com/ZhgChgLi/ZReviewTender/issues|Report an issue>, Powered by <https://zhgchg.li|ZhgChgLi>."
82
82
 
83
83
  payload.attachments.append(attachment)
84
84
 
@@ -87,14 +87,18 @@ class SlackProcessor < Processor
87
87
 
88
88
  private
89
89
  def request(payload)
90
+
91
+ isInCommingWebHook = false
90
92
  if !botToken.nil? && botToken != ""
91
93
  uri = URI("https://slack.com/api/chat.postMessage")
92
94
  payload.channel = targetChannel
93
95
  headers = {'Content-Type': 'application/json; charset=utf-8', 'Authorization': "Bearer #{botToken}"}
96
+ isInCommingWebHook = false
94
97
  else
95
98
  uri = URI(inCommingWebHookURL)
96
99
  payload.channel = nil
97
100
  headers = {'Content-Type': 'application/json; charset=utf-8'}
101
+ isInCommingWebHook = true
98
102
  end
99
103
 
100
104
  http = Net::HTTP.new(uri.host, uri.port)
@@ -102,7 +106,14 @@ class SlackProcessor < Processor
102
106
  req = Net::HTTP::Post.new(uri.request_uri, headers)
103
107
  req.body = payload.to_json
104
108
  res = http.request(req)
105
- JSON.parse(res.body)
109
+
110
+ if isInCommingWebHook
111
+ return res.body == "ok"
112
+ else
113
+ result = JSON.parse(res.body)
114
+ return result["ok"] == true
115
+ end
116
+
106
117
  end
107
118
 
108
119
  private
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZReviewTender
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - ZhgChgLi