ZReviewTender 1.3.3 → 1.3.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 +4 -4
- data/.version +1 -1
- data/lib/AndroidFetcher.rb +6 -5
- data/lib/AppleFetcher.rb +6 -6
- data/lib/Models/ReviewFetcher.rb +11 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa2d4d55b850012e36f3368bfdf84e301acb719914bdfe9873af9bd5ab6ab2ee
|
4
|
+
data.tar.gz: b101d60289e1bea2f5d02f77ae1dda04d5faaec33289a72aa3c0b661d4858c58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9b16dd294304c8e220ddaa07933ddb0b135965030ac72fd6669e02d675ab117e93759c28e456e29ccd50c99f65fde9615bb3a6ecc598bb8eb5a0c50f8ea4ddd
|
7
|
+
data.tar.gz: 72c179f0bf24134eec589857c59f29c23f8b621683a808564e5fc49c0f65ac9463ca4c184fb91d62aeca1adfe11f8ce1a93f1774b423155f88720d71592e6260
|
data/.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.5
|
data/lib/AndroidFetcher.rb
CHANGED
@@ -132,13 +132,14 @@ class AndroidFetcher < ReviewFetcher
|
|
132
132
|
|
133
133
|
puts "[AndroidFetcher] latest review: #{reviews.last.body}, #{reviews.last.createdDateTimestamp}"
|
134
134
|
setPlatformLatestCheckTimestamp(reviews.last.createdDateTimestamp)
|
135
|
+
end
|
135
136
|
|
136
|
-
# init first time, send welcome message
|
137
|
-
if latestCheckTimestamp == 0
|
138
|
-
sendWelcomMessage()
|
139
|
-
return
|
140
|
-
end
|
141
137
|
|
138
|
+
# init first time, send welcome message
|
139
|
+
if latestCheckTimestamp == 0 && isSentWelcomeMessage() == false
|
140
|
+
sendWelcomMessage()
|
141
|
+
setSentWelcomeMessage()
|
142
|
+
elsif reviews.length > 0
|
142
143
|
processReviews(reviews, platform)
|
143
144
|
end
|
144
145
|
end
|
data/lib/AppleFetcher.rb
CHANGED
@@ -35,13 +35,13 @@ class AppleFetcher < ReviewFetcher
|
|
35
35
|
|
36
36
|
puts "[AppleFetcher] latest review: #{reviews.last.body}, #{reviews.last.createdDateTimestamp}"
|
37
37
|
setPlatformLatestCheckTimestamp(reviews.last.createdDateTimestamp)
|
38
|
+
end
|
38
39
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
40
|
+
# init first time, send welcome message
|
41
|
+
if latestCheckTimestamp == 0 && isSentWelcomeMessage() == false
|
42
|
+
sendWelcomMessage()
|
43
|
+
setSentWelcomeMessage()
|
44
|
+
elsif reviews.length > 0
|
45
45
|
reviews = fullfillAppInfo(reviews)
|
46
46
|
processReviews(reviews, platform)
|
47
47
|
end
|
data/lib/Models/ReviewFetcher.rb
CHANGED
@@ -31,6 +31,17 @@ class ReviewFetcher
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
+
def setSentWelcomeMessage()
|
35
|
+
basePath = "#{config.baseExecutePath}/latestCheckTimestamp/"
|
36
|
+
Helper.createDirIfNotExist(basePath)
|
37
|
+
File.open("#{basePath}/#{platform}Welcome", 'w') { |file| file.write("") }
|
38
|
+
end
|
39
|
+
|
40
|
+
def isSentWelcomeMessage()
|
41
|
+
filePath = "#{config.baseExecutePath}/latestCheckTimestamp/#{platform}Welcome"
|
42
|
+
return File.exists?(filePath)
|
43
|
+
end
|
44
|
+
|
34
45
|
def setPlatformLatestCheckTimestamp(timestamp)
|
35
46
|
basePath = "#{config.baseExecutePath}/latestCheckTimestamp/"
|
36
47
|
Helper.createDirIfNotExist(basePath)
|