ZReviewTender 1.0.0 → 1.0.6

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: 1d3c0a75805d2e7892786cf8a8fdc2269368f1156cdaa56c1ae514d5186725f8
4
- data.tar.gz: 41ddf4524efab2749f8abf247eb6e919bf45861b01f36c0c3c8cab82fff86762
3
+ metadata.gz: db501e3c9cd98014ed5ffac3c12c9eab4da8a6da03f441497322209a9e61e25f
4
+ data.tar.gz: 70cd96094bebe92db74f05662ee442b5b0e006f0e8a93b3b564cbf9003fe640b
5
5
  SHA512:
6
- metadata.gz: c39778deb56d17742a16a6af0e00fb33505b15fb93df6dd8b57179c7fec459da55e73c5bbcddd732d10d556a729f654302abb93ff595cc8518405e807d729902
7
- data.tar.gz: be8acddbf10119a6f35b4dc2adde623be8f176b623bd4a391fe5eec8ab616a55055429feb2a0105c73b1e76e3d70f5e4a22c47d7e448d720e54968b3aaab5d96
6
+ metadata.gz: 8611b44db056e78d816a48bc495910939ea9a717fb5b248d89f4d99075dd8eed5e9e2f924ea15d26e27800d2f19c72c6b2851621d72caae4741b7d23dc768112
7
+ data.tar.gz: 88c4a1da0571745066e43b4ae23cfa9b3181b46f704617d22fe2e71b2e1004ce5a4226227e0abe2699feca857b71480d4841f4f1527095b0c26ef23a5b000484
data/bin/ZReviewTender CHANGED
@@ -27,6 +27,8 @@ class Main
27
27
  if configYMLFilePath.nil?
28
28
  configYMLFilePath = "#{basePath}/config/apple.yml"
29
29
  end
30
+ configFileCheck(configYMLFilePath, "--apple=CONFIG_YML_FILE_PATH")
31
+
30
32
  fetcher = parseConfigYMLFile(configYMLFilePath)
31
33
  fetcher.execute()
32
34
  end
@@ -35,22 +37,39 @@ class Main
35
37
  if configYMLFilePath.nil?
36
38
  configYMLFilePath = "#{basePath}/config/android.yml"
37
39
  end
40
+ configFileCheck(configYMLFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
41
+
38
42
  fetcher = parseConfigYMLFile(configYMLFilePath)
39
43
  fetcher.execute()
40
44
  end
41
45
 
42
46
  opts.on('-r', '--run', 'execute with config yml file') do
43
- appleConfigFilePath = "#{basePath}/config/android.yml"
44
- fetcher = parseConfigYMLFile(appleConfigFilePath)
47
+ androidConfigFilePath = "#{basePath}/config/android.yml"
48
+ configFileCheck(androidConfigFilePath, "--googleAndroid=CONFIG_YML_FILE_PATH")
49
+
50
+ fetcher = parseConfigYMLFile(androidConfigFilePath)
45
51
  fetcher.execute()
46
-
52
+
53
+ #
54
+
47
55
  appleConfigFilePath = "#{basePath}/config/apple.yml"
56
+ configFileCheck(appleConfigFilePath, "--apple=CONFIG_YML_FILE_PATH")
57
+
48
58
  fetcher = parseConfigYMLFile(appleConfigFilePath)
49
59
  fetcher.execute()
50
60
  end
51
61
  end.parse!
52
62
  end
53
63
 
64
+ private
65
+ def configFileCheck(path, command)
66
+ if !File.exists? path
67
+ puts "Make sure you have vaild config file at #{path}"
68
+ puts "Or use ZReviewTender #{command} specify config.yml file path"
69
+ raise "Config file not found: #{path}"
70
+ end
71
+ end
72
+
54
73
  private
55
74
  def parseConfigYMLFile(configFilePath)
56
75
  configYMLObj = YAML.load_file(configFilePath)
@@ -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
- if latestCheckTimestamp >= customerReviewCreatedDateTimestamp
56
- break
57
- else
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
- reviews.sort! { |a, b| a.createdDateTimestamp <=> b.createdDateTimestamp }
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZReviewTender
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - ZhgChgLi
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.25.0
69
- description: ZReviewTender - Monitor your App reviews in your Slack channel
69
+ description: ZReviewTender - App Reviews Automatic Bot
70
70
  email:
71
71
  executables:
72
72
  - ZReviewTender