ZReviewTender 1.0.5 → 1.0.8
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 +4 -4
- data/bin/ZReviewTender +33 -11
- data/lib/AndroidFetcher.rb +13 -17
- data/lib/AppleFetcher.rb +12 -8
- data/lib/Processors/SlackProcessor.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b73630248279980c724ee2b406c9cd9a6f593739e57aa29f799ba67ef149d8a8
|
4
|
+
data.tar.gz: 63ce65ad094fcd283e561423ce85a4c0417bff9a337d285c6cb87103f9244d7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9018a501ad76e81d905221fb3b42077b95d6d752d914be3155862dd8beca1ef511c9fc00be84c2f03b5a399b6f83884afa5292eb96a67b016607ead567bde0a9
|
7
|
+
data.tar.gz: 19d1421f57614dcb79c1f20ffdc3a300473ae9ff1a7ad738f35b6cdd0bc0722154648b7ca979e2f63ff055c8e5735b62001f7f3a38ced9d5f500db11d43359a4
|
data/bin/ZReviewTender
CHANGED
@@ -8,6 +8,7 @@ require "Models/AppleConfig"
|
|
8
8
|
require "Models/AndroidConfig"
|
9
9
|
require "Models/Processor"
|
10
10
|
require "Helper"
|
11
|
+
require "ZLogger"
|
11
12
|
require "AppleFetcher"
|
12
13
|
require "AndroidFetcher"
|
13
14
|
require "optparse"
|
@@ -22,10 +23,13 @@ class Main
|
|
22
23
|
opts.banner = "Usage: ZReviewTender [options]"
|
23
24
|
|
24
25
|
basePath = ENV['PWD'] || ::Dir.pwd
|
26
|
+
defaultConfigDirName = "config"
|
27
|
+
defaultAppleConfigFileName = "apple.yml"
|
28
|
+
defaultAndroidConfigFileName = "android.yml"
|
25
29
|
|
26
30
|
opts.on('-a', '--apple[=CONFIGYMLFILEPATH]', 'execute apple platform with config yml file') do |configYMLFilePath|
|
27
31
|
if configYMLFilePath.nil?
|
28
|
-
configYMLFilePath = "#{basePath}
|
32
|
+
configYMLFilePath = "#{basePath}/#{defaultConfigDirName}/#{defaultAppleConfigFileName}"
|
29
33
|
end
|
30
34
|
configFileCheck(configYMLFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
31
35
|
|
@@ -33,9 +37,9 @@ class Main
|
|
33
37
|
fetcher.execute()
|
34
38
|
end
|
35
39
|
|
36
|
-
opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute
|
40
|
+
opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute android platform with config yml file') do |configYMLFilePath|
|
37
41
|
if configYMLFilePath.nil?
|
38
|
-
configYMLFilePath = "#{basePath}
|
42
|
+
configYMLFilePath = "#{basePath}/#{defaultConfigDirName}/#{defaultAndroidConfigFileName}"
|
39
43
|
end
|
40
44
|
configFileCheck(configYMLFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
41
45
|
|
@@ -43,8 +47,11 @@ class Main
|
|
43
47
|
fetcher.execute()
|
44
48
|
end
|
45
49
|
|
46
|
-
opts.on('-r', '--run', 'execute
|
47
|
-
|
50
|
+
opts.on('-r', '--run=[=CONFIGFOLDERNAME]', 'execute both android and apple, specify an /config folder name') do |configFolderName|
|
51
|
+
if configFolderName.nil?
|
52
|
+
configFolderName = defaultConfigDirName
|
53
|
+
end
|
54
|
+
androidConfigFilePath = "#{basePath}/#{configFolderName}/#{defaultAndroidConfigFileName}"
|
48
55
|
configFileCheck(androidConfigFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
49
56
|
|
50
57
|
fetcher = parseConfigYMLFile(androidConfigFilePath)
|
@@ -52,7 +59,7 @@ class Main
|
|
52
59
|
|
53
60
|
#
|
54
61
|
|
55
|
-
appleConfigFilePath = "#{basePath}
|
62
|
+
appleConfigFilePath = "#{basePath}/#{configFolderName}/#{defaultAppleConfigFileName}"
|
56
63
|
configFileCheck(appleConfigFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
57
64
|
|
58
65
|
fetcher = parseConfigYMLFile(appleConfigFilePath)
|
@@ -86,13 +93,19 @@ class Main
|
|
86
93
|
end
|
87
94
|
|
88
95
|
processors = Helper.unwrapRequiredParameter(configYMLObj, 'processors')
|
89
|
-
|
96
|
+
if processors.nil?
|
97
|
+
processors = []
|
98
|
+
end
|
99
|
+
|
90
100
|
if processors.length < 1
|
91
|
-
raise "must specify at least one processor."
|
101
|
+
raise "must specify/enable at least one processor."
|
92
102
|
end
|
93
103
|
|
94
104
|
processors.each do |processor|
|
95
105
|
processor.each do |key, value|
|
106
|
+
if value["enable"] != true
|
107
|
+
next
|
108
|
+
end
|
96
109
|
processorClass = Helper.unwrapRequiredParameter(value, "class")
|
97
110
|
require "Processors/#{processorClass}"
|
98
111
|
fetcher.registerProcessor(eval("#{processorClass}.new(#{value}, '#{configFilePath}', '#{ENV['PWD'] || ::Dir.pwd}')"))
|
@@ -110,6 +123,15 @@ end
|
|
110
123
|
begin
|
111
124
|
Main.new()
|
112
125
|
rescue => e
|
113
|
-
|
114
|
-
|
115
|
-
|
126
|
+
logger = ZLogger.new(ENV['PWD'] || ::Dir.pwd)
|
127
|
+
title = "#Error: #{e.class} #{e.message}"
|
128
|
+
body = e.backtrace
|
129
|
+
|
130
|
+
logger.logError("===RUNTIME EXCEPTION START===")
|
131
|
+
logger.logError(title)
|
132
|
+
logger.logError(body)
|
133
|
+
logger.logError("===RUNTIME EXCEPTION END===")
|
134
|
+
|
135
|
+
puts title
|
136
|
+
puts body
|
137
|
+
end
|
data/lib/AndroidFetcher.rb
CHANGED
@@ -23,13 +23,6 @@ class AndroidFetcher < ReviewFetcher
|
|
23
23
|
|
24
24
|
latestCheckTimestamp = getPlatformLatestCheckTimestamp()
|
25
25
|
|
26
|
-
# init first time, send welcome message
|
27
|
-
if latestCheckTimestamp == 0
|
28
|
-
sendWelcomMessage()
|
29
|
-
setPlatformLatestCheckTimestamp(Time.now().to_i)
|
30
|
-
return
|
31
|
-
end
|
32
|
-
|
33
26
|
reviews = []
|
34
27
|
|
35
28
|
# Google API Bug, couldn't specify limit/offse/pagination, google only return a few recent reviews.
|
@@ -52,22 +45,25 @@ class AndroidFetcher < ReviewFetcher
|
|
52
45
|
end
|
53
46
|
customerReviewPlatform = "Android #{customerReview.comments[0].user_comment.android_os_version}"
|
54
47
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
url = "https://play.google.com/store/apps/details?id=#{config.packageName}&reviewId=#{customerReviewID}"
|
59
|
-
if !config.accountID.nil? && !config.appID.nil?
|
60
|
-
url = "https://play.google.com/console/developers/#{config.accountID}/app/#{config.appID}/user-feedback/review-details?reviewId=#{customerReviewID}"
|
61
|
-
end
|
62
|
-
reviews.append(Review.new(customerReviewPlatform, customerReviewID, customerReviewReviewerNickname, customerReviewRating, customerReviewTitle, customerReviewBody, customerReviewCreatedDateTimestamp, url, customerReviewVersionString, customerReviewTerritory))
|
48
|
+
url = "https://play.google.com/store/apps/details?id=#{config.packageName}&reviewId=#{customerReviewID}"
|
49
|
+
if !config.accountID.nil? && !config.appID.nil?
|
50
|
+
url = "https://play.google.com/console/developers/#{config.accountID}/app/#{config.appID}/user-feedback/review-details?reviewId=#{customerReviewID}"
|
63
51
|
end
|
64
|
-
|
52
|
+
reviews.append(Review.new(customerReviewPlatform, customerReviewID, customerReviewReviewerNickname, customerReviewRating, customerReviewTitle, customerReviewBody, customerReviewCreatedDateTimestamp, url, customerReviewVersionString, customerReviewTerritory))
|
65
53
|
end
|
54
|
+
|
55
|
+
reviews = reviews.reject{ |review| latestCheckTimestamp >= review.createdDateTimestamp }.sort! { |a, b| a.createdDateTimestamp <=> b.createdDateTimestamp }
|
66
56
|
|
67
57
|
if reviews.length > 0
|
68
|
-
|
58
|
+
|
69
59
|
setPlatformLatestCheckTimestamp(reviews.last.createdDateTimestamp)
|
70
60
|
|
61
|
+
# init first time, send welcome message
|
62
|
+
if latestCheckTimestamp == 0
|
63
|
+
sendWelcomMessage()
|
64
|
+
return
|
65
|
+
end
|
66
|
+
|
71
67
|
processReviews(reviews, platform)
|
72
68
|
end
|
73
69
|
end
|
data/lib/AppleFetcher.rb
CHANGED
@@ -24,20 +24,18 @@ class AppleFetcher < ReviewFetcher
|
|
24
24
|
|
25
25
|
latestCheckTimestamp = getPlatformLatestCheckTimestamp()
|
26
26
|
|
27
|
-
|
28
|
-
# init first time, send welcome message
|
29
|
-
if latestCheckTimestamp == 0
|
30
|
-
sendWelcomMessage()
|
31
|
-
setPlatformLatestCheckTimestamp(Time.now().to_i)
|
32
|
-
return;
|
33
|
-
end
|
34
|
-
|
35
27
|
reviews = fetchReviews(latestCheckTimestamp)
|
36
28
|
|
37
29
|
if reviews.length > 0
|
38
30
|
reviews.sort! { |a, b| a.createdDateTimestamp <=> b.createdDateTimestamp }
|
39
31
|
setPlatformLatestCheckTimestamp(reviews.last.createdDateTimestamp)
|
40
32
|
|
33
|
+
# init first time, send welcome message
|
34
|
+
if latestCheckTimestamp == 0
|
35
|
+
sendWelcomMessage()
|
36
|
+
return;
|
37
|
+
end
|
38
|
+
|
41
39
|
reviews = fullfillAppInfo(reviews)
|
42
40
|
processReviews(reviews, platform)
|
43
41
|
end
|
@@ -73,6 +71,12 @@ class AppleFetcher < ReviewFetcher
|
|
73
71
|
else
|
74
72
|
url = "https://appstoreconnect.apple.com/apps/#{config.appID}/appstore/activity/ios/ratingsResponses"
|
75
73
|
reviews.append(Review.new(nil, customerReviewID, customerReviewReviewerNickname, customerReviewRating, customerReviewTitle, customerReviewBody, customerReviewCreatedDateTimestamp, url, nil, customerReviewTerritory))
|
74
|
+
|
75
|
+
# init first time, need first review to set as latestCheckTimestamp
|
76
|
+
if latestCheckTimestamp == 0
|
77
|
+
customerReviewsLink = nil
|
78
|
+
break
|
79
|
+
end
|
76
80
|
end
|
77
81
|
end
|
78
82
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ZReviewTender
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ZhgChgLi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-http
|