fastlane-plugin-huawei_appgallery_connect 1.0.6 → 1.0.11

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: b6f398ea6efa63723dd321360132b68c1a120b47ef13ed83ad93af2d3c94cc4b
4
- data.tar.gz: d6bf21ea4de080bd5484f4ee06bd26279be483c15b4308bf5b30a75c47e1f634
3
+ metadata.gz: b5551239cf32bab29acd6d2d70b1623731c4629f09f102a98d05f5b0e7ee2bca
4
+ data.tar.gz: 83446bfb3a35d813abaa29a09af38185f136ae73c3f08d07f5620f80bedfc17b
5
5
  SHA512:
6
- metadata.gz: 6071a5b8ba6c6172b644c38fc90e910e3338172299d7df581d0367e579724e9bd875b6a4307c6a72f13688e67485b902e3a49852061bbe3b659a3eaceaa51dfe
7
- data.tar.gz: 4448629f51054b2edabb54465f8f7da46e228a8d40efb881c384fa348b444770f993a932104f890070f1e937f486d12462ec78551b4c3fbff50fe1b38f5048e1
6
+ metadata.gz: 839662a96b67bec48d6c35e29151db9ab9d91c759de901734eed761392ffc93f3c75f154ca9bf790b38a05bac2e991d4e7896d19babe5d4eec4192f115efd573
7
+ data.tar.gz: 1912a210ee2fb2e53f5d5d5adeeae498f98d10e579d84cae441c6b75db8f98d2cea47bcc7893c6df0eb54bff074013589c547240dd8c2365724b9fe38473a825
data/README.md CHANGED
@@ -12,41 +12,67 @@ fastlane add_plugin huawei_appgallery_connect
12
12
 
13
13
  ## About huawei_appgallery_connect
14
14
 
15
- Huawei AppGallery Connect Plugin
15
+ Huawei AppGallery Connect Plugin can be used to upload Android application on the Huawei App Gallery using fastlane.
16
16
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
17
+ ## Usage
18
18
 
19
- ## Example
20
-
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
-
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
- ## Run tests for this plugin
26
-
27
- To run both the tests, and code style validation, run
19
+ To get started you will need the client id, client Secret & app ID which can be obtained from your Huawei AppGallery Connect account.
28
20
 
29
21
  ```
30
- rake
22
+ huawei_appgallery_connect(
23
+ client_id: "<CLIENT_ID>",
24
+ client_secret: "<CLIENT_SECRET>",
25
+ app_id: "<APP_ID>",
26
+ apk_path: "<APK_PATH>"
27
+
28
+ # Optional, Parameter beyond this are optional
29
+
30
+ submit_for_review: false,
31
+
32
+ privacy_policy_url: "https://example.com",
33
+ changelog_path: "<PATH_TO_CHANGELOG_FILE>",
34
+
35
+ # release time to release app on specific date
36
+ release_time: "2019-12-25T07:05:15+0000",
37
+
38
+ # For phase wise release: set these parameters
39
+ phase_wise_release: true,
40
+ phase_release_start_time: "2019-12-25T07:05:15+0000",
41
+ phase_release_end_time: "2019-12-28T07:05:15+0000",
42
+ phase_release_percent: "10.00",
43
+ phase_release_description: "<DESCRIPTION>"
44
+ )
31
45
  ```
32
46
 
33
- To automatically fix many of the styling issues, use
34
- ```
35
- rubocop -a
36
- ```
47
+ The following action can be used to submit the app for review if submit_for_review was set to false during the upload of apk
37
48
 
38
- ## Issues and Feedback
39
-
40
- For any other issues and feedback about this plugin, please submit it to this repository.
49
+ ```
50
+ huawei_appgallery_connect_submit_for_review(
51
+ client_id: "<CLIENT_ID>",
52
+ client_secret: "<CLIENT_SECRET>",
53
+ app_id: "<APP_ID>",
41
54
 
42
- ## Troubleshooting
43
55
 
44
- If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
56
+ # Optional, Parameter beyond this are optional
45
57
 
46
- ## Using _fastlane_ Plugins
58
+ # release time to release app on specific date
59
+ release_time: "2019-12-25T07:05:15+0000",
47
60
 
48
- For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
61
+ # For phase wise release: set these parameters
62
+ phase_wise_release: true,
63
+ phase_release_start_time: "2019-12-25T07:05:15+0000",
64
+ phase_release_end_time: "2019-12-28T07:05:15+0000",
65
+ phase_release_percent: "10.00",
66
+ phase_release_description: "<DESCRIPTION>"
67
+ )
68
+ ```
69
+ You can also retreive app info by making use of the following action
49
70
 
50
- ## About _fastlane_
71
+ ```
72
+ huawei_appgallery_connect_get_app_info(
73
+ client_id: "<CLIENT_ID>",
74
+ client_secret: "<CLIENT_SECRET>",
75
+ app_id: "<APP_ID>"
76
+ )
51
77
 
52
- _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
78
+ ```
@@ -0,0 +1,107 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/huawei_appgallery_connect_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class HuaweiAppgalleryConnectSubmitForReviewAction < Action
7
+ def self.run(params)
8
+ token = Helper::HuaweiAppgalleryConnectHelper.get_token(params[:client_id], params[:client_secret])
9
+
10
+ if token.nil?
11
+ UI.message("Cannot retrieve token, please check your client ID and client secret")
12
+ else
13
+
14
+ Helper::HuaweiAppgalleryConnectHelper.submit_app_for_review(token, params)
15
+ end
16
+ end
17
+
18
+ def self.description
19
+ "Huawei AppGallery Connect Plugin"
20
+ end
21
+
22
+ def self.authors
23
+ ["Shreejan Shrestha"]
24
+ end
25
+
26
+ def self.return_value
27
+ # If your method provides a return value, you can describe here what it does
28
+ end
29
+
30
+ def self.details
31
+ # Optional:
32
+ "Fastlane plugin to upload Android app to Huawei AppGallery Connect"
33
+ end
34
+
35
+ def self.available_options
36
+ [
37
+ FastlaneCore::ConfigItem.new(key: :client_id,
38
+ env_name: "HUAWEI_APPGALLERY_CONNECT_CLIENT_ID",
39
+ description: "Huawei AppGallery Connect Client ID",
40
+ optional: false,
41
+ type: String),
42
+
43
+ FastlaneCore::ConfigItem.new(key: :client_secret,
44
+ env_name: "HUAWEI_APPGALLERY_CONNECT_CLIENT_SECRET",
45
+ description: "Huawei AppGallery Connect Client Secret",
46
+ optional: false,
47
+ type: String),
48
+
49
+ FastlaneCore::ConfigItem.new(key: :app_id,
50
+ env_name: "HUAWEI_APPGALLERY_CONNECT_APP_ID",
51
+ description: "Huawei AppGallery Connect App ID",
52
+ optional: false,
53
+ type: String),
54
+
55
+ FastlaneCore::ConfigItem.new(key: :phase_wise_release,
56
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE",
57
+ description: "Phase wise release",
58
+ optional: true,
59
+ conflicting_options: [:release_time],
60
+ type: Boolean),
61
+
62
+ FastlaneCore::ConfigItem.new(key: :phase_release_start_time,
63
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_START_TIME",
64
+ description: "Start time of the validity period of the release by phase. The value is UTC time in the following format: yyyy-MM-dd 'T' HH:mm:ssZZ",
65
+ optional: true,
66
+ type: String),
67
+
68
+ FastlaneCore::ConfigItem.new(key: :phase_release_end_time,
69
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_END_TIME",
70
+ description: "End time of the validity period of the release by phase. The value is UTC time in the following format: yyyy-MM-dd 'T' HH:mm:ssZZ",
71
+ optional: true,
72
+ type: String),
73
+
74
+ FastlaneCore::ConfigItem.new(key: :phase_release_percent,
75
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_PERCENT",
76
+ description: "Percentage of the release by phase. The value must be accurate to two decimal places and does not contain the percent sign (%)",
77
+ optional: true,
78
+ type: String),
79
+
80
+ FastlaneCore::ConfigItem.new(key: :phase_release_description,
81
+ env_name: "HUAWEI_APPGALLERY_CONNECT_PHASE_WISE_RELEASE_DESCRIPTION",
82
+ description: "Phase-based release description. (Max 500 characters)",
83
+ optional: true,
84
+ type: String),
85
+
86
+ FastlaneCore::ConfigItem.new(key: :release_time,
87
+ env_name: "HUAWEI_APPGALLERY_CONNECT_RELEASE_TIME",
88
+ description: "Release time in UTC format for app release on a specific date. The format is yyyy-MM-dd'T'HH:mm:ssZZ)",
89
+ optional: true,
90
+ conflicting_options: [:phase_wise_release],
91
+ type: String),
92
+
93
+ FastlaneCore::ConfigItem.new(key: :changelog_path,
94
+ env_name: "HUAWEI_APPGALLERY_CONNECT_CHANGELOG_PATH",
95
+ description: "Path to Changelog file (Default empty)",
96
+ optional: true,
97
+ type: String)
98
+ ]
99
+ end
100
+
101
+ def self.is_supported?(platform)
102
+ [:android].include?(platform)
103
+ true
104
+ end
105
+ end
106
+ end
107
+ end
@@ -41,7 +41,8 @@ module Fastlane
41
41
  UI.success("Successfully getting app info")
42
42
  return result_json['appInfo']
43
43
  else
44
- UI.user_error!("Failed to get app info")
44
+ UI.user_error("Failed to get app info")
45
+ UI.user_error!(result_json)
45
46
  end
46
47
 
47
48
  end
@@ -69,7 +70,8 @@ module Fastlane
69
70
  if result_json['ret']['code'] == 0
70
71
  UI.success("Successfully updated app info")
71
72
  else
72
- UI.user_error!("Failed to update app info")
73
+ UI.user_error("Failed to update app info")
74
+ UI.user_error!(result_json)
73
75
  end
74
76
  end
75
77
 
@@ -149,8 +151,8 @@ module Fastlane
149
151
  UI.success("App information saved.")
150
152
  return true
151
153
  else
154
+ UI.user_error("Failed to save app information")
152
155
  UI.user_error!(result_json)
153
- UI.user_error!("Failed to save app information")
154
156
  return false
155
157
  end
156
158
  else
@@ -215,12 +217,18 @@ module Fastlane
215
217
 
216
218
  response = http.request(request)
217
219
 
220
+ if !response.kind_of? Net::HTTPSuccess
221
+ UI.user_error!("Cannot submit app for review (status code: #{response.code}, body: #{response.body})")
222
+ return false
223
+ end
224
+
218
225
  result_json = JSON.parse(response.body)
219
226
 
220
227
  if result_json['ret']['code'] == 0
221
228
  UI.success("Successfully submitted app for review")
222
229
  else
223
- UI.user_error!("Failed to submit app for review")
230
+ UI.user_error("Failed to submit app for review.")
231
+ UI.user_error!(result_json)
224
232
  end
225
233
 
226
234
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module HuaweiAppgalleryConnect
3
- VERSION = "1.0.6"
3
+ VERSION = "1.0.11"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-huawei_appgallery_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shreejan Shrestha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-02 00:00:00.000000000 Z
11
+ date: 2020-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -147,6 +147,7 @@ files:
147
147
  - lib/fastlane/plugin/huawei_appgallery_connect.rb
148
148
  - lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_action.rb
149
149
  - lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_get_app_info.rb
150
+ - lib/fastlane/plugin/huawei_appgallery_connect/actions/huawei_appgallery_connect_submit_for_review.rb
150
151
  - lib/fastlane/plugin/huawei_appgallery_connect/helper/huawei_appgallery_connect_helper.rb
151
152
  - lib/fastlane/plugin/huawei_appgallery_connect/version.rb
152
153
  homepage: https://github.com/shr3jn/fastlane-plugin-huawei_appgallery_connect