ZReviewTender 1.0.1 → 1.0.7
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 +39 -9
- data/lib/AndroidFetcher.rb +13 -17
- data/lib/AppleFetcher.rb +12 -8
- 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: b4e15499027773482cf0b32287e29bc453c00115dfa5816372a900ace9ba9ec2
|
4
|
+
data.tar.gz: b9b916a755ee4957f3183019e7fc7fefb7999f2572629f10506f55d5f0198cf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37ecac4e478add72f532ad4c70937d9f36b142897cfbddadf1cbc20c0d98d3c6a706d1b43873ab3290a91998e532ce6274cf63b97971e12301114225b427d458
|
7
|
+
data.tar.gz: 63af7bf0f7b55db49f70ff277765e1049a61ee8f5b1e50cdf05776d1ce78732a15ac1670906ebe548cfd2c5041815cb4bc4d72e09e2f68a532a79e9773d73145
|
data/bin/ZReviewTender
CHANGED
@@ -22,35 +22,60 @@ class Main
|
|
22
22
|
opts.banner = "Usage: ZReviewTender [options]"
|
23
23
|
|
24
24
|
basePath = ENV['PWD'] || ::Dir.pwd
|
25
|
+
defaultConfigDirName = "config"
|
26
|
+
defaultAppleConfigFileName = "apple.yml"
|
27
|
+
defaultAndroidConfigFileName = "android.yml"
|
25
28
|
|
26
29
|
opts.on('-a', '--apple[=CONFIGYMLFILEPATH]', 'execute apple platform with config yml file') do |configYMLFilePath|
|
27
30
|
if configYMLFilePath.nil?
|
28
|
-
configYMLFilePath = "#{basePath}
|
31
|
+
configYMLFilePath = "#{basePath}/#{defaultConfigDirName}/#{defaultAppleConfigFileName}"
|
29
32
|
end
|
33
|
+
configFileCheck(configYMLFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
34
|
+
|
30
35
|
fetcher = parseConfigYMLFile(configYMLFilePath)
|
31
36
|
fetcher.execute()
|
32
37
|
end
|
33
38
|
|
34
|
-
opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute
|
39
|
+
opts.on('-g', '--googleAndroid[=CONFIGYMLFILEPATH]', 'execute android platform with config yml file') do |configYMLFilePath|
|
35
40
|
if configYMLFilePath.nil?
|
36
|
-
configYMLFilePath = "#{basePath}
|
41
|
+
configYMLFilePath = "#{basePath}/#{defaultConfigDirName}/#{defaultAndroidConfigFileName}"
|
37
42
|
end
|
43
|
+
configFileCheck(configYMLFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
44
|
+
|
38
45
|
fetcher = parseConfigYMLFile(configYMLFilePath)
|
39
46
|
fetcher.execute()
|
40
47
|
end
|
41
48
|
|
42
|
-
opts.on('-r', '--run', 'execute
|
43
|
-
|
44
|
-
|
49
|
+
opts.on('-r', '--run=[=CONFIGFOLDERNAME]', 'execute both android and apple, specify an /config folder name') do |configFolderName|
|
50
|
+
if configFolderName.nil?
|
51
|
+
configFolderName = defaultConfigDirName
|
52
|
+
end
|
53
|
+
androidConfigFilePath = "#{basePath}/#{configFolderName}/#{defaultAndroidConfigFileName}"
|
54
|
+
configFileCheck(androidConfigFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
|
55
|
+
|
56
|
+
fetcher = parseConfigYMLFile(androidConfigFilePath)
|
45
57
|
fetcher.execute()
|
58
|
+
|
59
|
+
#
|
60
|
+
|
61
|
+
appleConfigFilePath = "#{basePath}/#{configFolderName}/#{defaultAppleConfigFileName}"
|
62
|
+
configFileCheck(appleConfigFilePath, "--apple=CONFIG_YML_FILE_PATH")
|
46
63
|
|
47
|
-
appleConfigFilePath = "#{basePath}/config/apple.yml"
|
48
64
|
fetcher = parseConfigYMLFile(appleConfigFilePath)
|
49
65
|
fetcher.execute()
|
50
66
|
end
|
51
67
|
end.parse!
|
52
68
|
end
|
53
69
|
|
70
|
+
private
|
71
|
+
def configFileCheck(path, command)
|
72
|
+
if !File.exists? path
|
73
|
+
puts "Make sure you have vaild config file at #{path}"
|
74
|
+
puts "Or use ZReviewTender #{command} specify config.yml file path"
|
75
|
+
raise "Config file not found: #{path}"
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
54
79
|
private
|
55
80
|
def parseConfigYMLFile(configFilePath)
|
56
81
|
configYMLObj = YAML.load_file(configFilePath)
|
@@ -67,9 +92,14 @@ class Main
|
|
67
92
|
end
|
68
93
|
|
69
94
|
processors = Helper.unwrapRequiredParameter(configYMLObj, 'processors')
|
70
|
-
|
95
|
+
if processors.nil?
|
96
|
+
processors = []
|
97
|
+
else
|
98
|
+
processors = processors.select{ |processor| processor.select{ |key, value| value["enable"] == true }}
|
99
|
+
end
|
100
|
+
|
71
101
|
if processors.length < 1
|
72
|
-
raise "must specify at least one processor."
|
102
|
+
raise "must specify/enable at least one processor."
|
73
103
|
end
|
74
104
|
|
75
105
|
processors.each do |processor|
|
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.7
|
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
|