fastlane-plugin-upload_to_oss 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7ec3b56ab5d8b6c5fef36cd96c918c8b3b35ee272d19d58e067136e5fa6f358c
4
+ data.tar.gz: 805367567092094e2025166d5ce65036ff4fd858c6e122a23af8033a2d186c03
5
+ SHA512:
6
+ metadata.gz: beb2f02fc18226c695bee859257b11797755256521a45fb502545eff34ff90a38465608944ffd255c0ae2488c96913c3f82d35c2352799eaaebeae13aebaaf3e
7
+ data.tar.gz: 0f1bd8ff75772efd32ea855eac376ed0b275c4d995e70edf215c9c8082fcfb604f39030d98672922e6d921ab49b51f3945c669efd5dc0c36724efcd4bd4cc4b6
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 zhaozq <zhao_zzq2012@163.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # upload_to_oss plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-upload_to_oss)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-upload_to_oss`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin upload_to_oss
11
+ ```
12
+
13
+ ## About upload_to_oss
14
+
15
+ 上传ipa文件到oss, 上传结果共享到 SharedValues::OSS_IPA_OUTPUT_URL
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.
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
28
+
29
+ ```
30
+ rake
31
+ ```
32
+
33
+ To automatically fix many of the styling issues, use
34
+ ```
35
+ rubocop -a
36
+ ```
37
+
38
+ ## Issues and Feedback
39
+
40
+ For any other issues and feedback about this plugin, please submit it to this repository.
41
+
42
+ ## Troubleshooting
43
+
44
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
45
+
46
+ ## Using _fastlane_ Plugins
47
+
48
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
49
+
50
+ ## About _fastlane_
51
+
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).
@@ -0,0 +1,140 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/upload_to_oss_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+
7
+ module SharedValues
8
+ OSS_IPA_OUTPUT_URL = :OSS_IPA_OUTPUT_URL
9
+ end
10
+
11
+ class UploadToOssAction < Action
12
+ def self.run(params)
13
+
14
+ ipa = params[:ipa]
15
+ dsym = params[:dsym]
16
+ endpoint = params[:endpoint]
17
+ key = params[:key]
18
+ secret = params[:secret]
19
+ bucket = params[:bucket]
20
+ object_path = params[:object_path]
21
+
22
+
23
+ # Split the ipa path by "/"
24
+ ipa_segments = ipa.split("/")
25
+ # Get the last segment of the path
26
+ ipa_name = ipa_segments[-1]
27
+
28
+ object_key = object_path + '/' + ipa_name
29
+
30
+ require 'aliyun/oss'
31
+
32
+
33
+ client = Aliyun::OSS::Client.new(
34
+ :endpoint => endpoint,
35
+ :access_key_id => key,
36
+ :access_key_secret => secret
37
+ )
38
+
39
+ bucket_object = client.get_bucket(bucket)
40
+
41
+ UI.message("put_object begin!")
42
+
43
+ UI.message("upload dsym ...")
44
+ result = bucket_object.put_object("#{object_path}/#{dsym.split("/")[-1]}", :file => dsym)
45
+ UI.message("upload dsym over #{result}")
46
+
47
+ UI.message("upload ipa ...")
48
+ result = bucket_object.put_object(object_key, :file => ipa)
49
+
50
+ if result
51
+
52
+ endpoint_host = URI.parse(endpoint).host
53
+ ipa_url = "https://#{bucket}.#{endpoint_host}/#{object_key}"
54
+ UI.message("put_object over!")
55
+
56
+ Actions.lane_context[SharedValues::OSS_IPA_OUTPUT_URL] = ipa_url
57
+
58
+ UI.message("lane_context OSS_IPA_OUTPUT_URL:#{Actions.lane_context[SharedValues::OSS_IPA_OUTPUT_URL]}")
59
+
60
+ else
61
+ UI.error("upload fail")
62
+ end
63
+
64
+ end
65
+
66
+ def self.description
67
+ "上传ipa文件到oss"
68
+ end
69
+
70
+ def self.authors
71
+ ["zhaozq"]
72
+ end
73
+
74
+ def self.return_value
75
+ # If your method provides a return value, you can describe here what it does
76
+ end
77
+
78
+ def self.output
79
+ [
80
+ ['IPA_OUTPUT_PATH', 'ipa file oss url']
81
+ ]
82
+ end
83
+
84
+ def self.details
85
+ # Optional:
86
+ "上传ipa文件到oss, 上传结果共享到 SharedValues::OSS_IPA_OUTPUT_URL"
87
+ end
88
+
89
+ def self.available_options
90
+ [
91
+ FastlaneCore::ConfigItem.new(key: :ipa,
92
+ env_name: "HAIER_ENTERPRISE_RESIGN_IPA",
93
+ description: ".ipa file for the build",
94
+ optional: true,
95
+ default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH]),
96
+ FastlaneCore::ConfigItem.new(key: :dsym,
97
+ env_name: "HAIER_ENTERPRISE_RESIGN_DSYM",
98
+ description: "zipped .dsym package for the build ",
99
+ optional: true,
100
+ default_value: Actions.lane_context[SharedValues::DSYM_OUTPUT_PATH]),
101
+ FastlaneCore::ConfigItem.new(key: :endpoint,
102
+ env_name: "HAIER_ENTERPRISE_RESIGN_ENDPOINT",
103
+ description: "oss endpoint, default value http://oss-cn-qingdao.aliyuncs.com",
104
+ optional: true,
105
+ default_value: "http://oss-cn-qingdao.aliyuncs.com"),
106
+
107
+ FastlaneCore::ConfigItem.new(key: :key,
108
+ env_name: "HAIER_ENTERPRISE_RESIGN_KEY",
109
+ description: "oss key",
110
+ optional: true,
111
+ default_value: ENV['OSS_ACCESS_KEY_ID']),
112
+ FastlaneCore::ConfigItem.new(key: :secret,
113
+ env_name: "HAIER_ENTERPRISE_RESIGN_SECRET",
114
+ description: "oss secret",
115
+ optional: true,
116
+ default_value: ENV['OSS_ACCESS_KEY_SECRET']),
117
+ FastlaneCore::ConfigItem.new(key: :bucket,
118
+ env_name: "HAIER_ENTERPRISE_RESIGN_BUCKET",
119
+ description: "oss bucket",
120
+ optional: false,
121
+ type: String),
122
+ FastlaneCore::ConfigItem.new(key: :object_path,
123
+ env_name: "HAIER_ENTERPRISE_RESIGN_OBJECT_PATH",
124
+ description: "oss object key 'foo/bar/file', object path 'foo/bar'",
125
+ optional: false,
126
+ type: String),
127
+ #TODO: add verify_block
128
+ ]
129
+ end
130
+
131
+ def self.is_supported?(platform)
132
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
133
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
134
+ #
135
+ # [:ios, :mac, :android].include?(platform)
136
+ platform == :ios
137
+ end
138
+ end
139
+ end
140
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane_core/ui/ui'
2
+
3
+ module Fastlane
4
+ UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
5
+
6
+ module Helper
7
+ class UploadToOssHelper
8
+ # class methods that you define here become available in your action
9
+ # as `Helper::UploadToOssHelper.your_method`
10
+ #
11
+ def self.show_message
12
+ UI.message("Hello from the upload_to_oss plugin helper!")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module UploadToOss
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/upload_to_oss/version'
2
+
3
+ module Fastlane
4
+ module UploadToOss
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::UploadToOss.all_classes.each do |current|
15
+ require current
16
+ end
metadata ADDED
@@ -0,0 +1,216 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-upload_to_oss
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - zhaozq
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aliyun-sdk
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.8.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.8.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: fastlane
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 2.212.1
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 2.212.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec_junit_formatter
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: 1.12.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '='
123
+ - !ruby/object:Gem::Version
124
+ version: 1.12.1
125
+ - !ruby/object:Gem::Dependency
126
+ name: rubocop-performance
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rubocop-require_tools
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: simplecov
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: aliyun-sdk
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: 0.8.0
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: 0.8.0
181
+ description:
182
+ email: zhao.zq@outlook.com
183
+ executables: []
184
+ extensions: []
185
+ extra_rdoc_files: []
186
+ files:
187
+ - LICENSE
188
+ - README.md
189
+ - lib/fastlane/plugin/upload_to_oss.rb
190
+ - lib/fastlane/plugin/upload_to_oss/actions/upload_to_oss_action.rb
191
+ - lib/fastlane/plugin/upload_to_oss/helper/upload_to_oss_helper.rb
192
+ - lib/fastlane/plugin/upload_to_oss/version.rb
193
+ homepage: https://github.com/zhaozzq/fastlane-plugin-upload_to_oss
194
+ licenses:
195
+ - MIT
196
+ metadata: {}
197
+ post_install_message:
198
+ rdoc_options: []
199
+ require_paths:
200
+ - lib
201
+ required_ruby_version: !ruby/object:Gem::Requirement
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ version: '2.6'
206
+ required_rubygems_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: '0'
211
+ requirements: []
212
+ rubygems_version: 3.4.10
213
+ signing_key:
214
+ specification_version: 4
215
+ summary: 上传ipa文件到oss
216
+ test_files: []