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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e59afd752f35d64b4d0f5c3b6958aa53231f79a13e7b6a95e48329af5af5244
4
- data.tar.gz: f8f3ed908946b3d719b41c471388282de7eeb9d6f364bd71bfd576f907e3d6af
3
+ metadata.gz: aa2d4d55b850012e36f3368bfdf84e301acb719914bdfe9873af9bd5ab6ab2ee
4
+ data.tar.gz: b101d60289e1bea2f5d02f77ae1dda04d5faaec33289a72aa3c0b661d4858c58
5
5
  SHA512:
6
- metadata.gz: 82aa507c9a3f5d5f07d5b1ff853102d7f80e97d476d3903a4ea03126c71a3660fb3f5685773429c4a2d4a3ca4413e1d28e27c606f9c7531ecdd76da6739cd834
7
- data.tar.gz: 7709b79e8a7b2f3c2ddff3ded887d4e9f3ccf5ca1a0852799bd6eb61b006dba656e1fb854d0b73b0ed425243c98131e485aea8fe7044f3b948b32e2cec59461f
6
+ metadata.gz: d9b16dd294304c8e220ddaa07933ddb0b135965030ac72fd6669e02d675ab117e93759c28e456e29ccd50c99f65fde9615bb3a6ecc598bb8eb5a0c50f8ea4ddd
7
+ data.tar.gz: 72c179f0bf24134eec589857c59f29c23f8b621683a808564e5fc49c0f65ac9463ca4c184fb91d62aeca1adfe11f8ce1a93f1774b423155f88720d71592e6260
data/.version CHANGED
@@ -1 +1 @@
1
- 1.3.3
1
+ 1.3.5
@@ -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
- # init first time, send welcome message
40
- if latestCheckTimestamp == 0
41
- sendWelcomMessage()
42
- return;
43
- end
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
@@ -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)
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: 1.3.3
4
+ version: 1.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - ZhgChgLi