fastlane-plugin-gitlab_increate_swiftlint 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7d0a7848e9d643283e4135e73322e67c38a0bf04113c998b708880fd8a4e48e4
4
+ data.tar.gz: 844a76bcdf4c27ac742c28e07449ad83ecb18ec5558dd25019c2c590a0c39165
5
+ SHA512:
6
+ metadata.gz: 3fe5f9f7a5c00c868322426dc3f897060d0353ac8f756f9d666548c63370c9bd8ed017cf2ef79ba709a7ed279af8bff5b9ee43a1788bf62a6e596cce46fc01ec
7
+ data.tar.gz: 774f309c3381a8cbb75aa7645a4075a9a47447fd74880df925a08d71b1131093fbc5e5683a304f1cc7e583c87740b25e18018a2c52d41f3fa33b926b64421bca
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 xiongzenghui <zxcvb1234001@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.
@@ -0,0 +1,107 @@
1
+ # gitlab_increate_swiftlint plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-gitlab_increate_swiftlint)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-gitlab_increate_swiftlint`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin gitlab_increate_swiftlint
11
+ ```
12
+
13
+ ## About gitlab_increate_swiftlint
14
+
15
+ Incremental Code Check using swiftlint for swift language files on gitlab platform !
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
+ ```ruby
24
+ gitlab_increate_swiftlint(
25
+ gitlab_host: 'https://xxx.com/api/v4',
26
+ gitlab_token: 'xxxx',
27
+ projectid: '16456',
28
+ mrid: '33',
29
+ lint_dir: '/Users/xiongzenghui/Desktop/ZHUDID',
30
+ swiftlint_result_json: '/Users/xiongzenghui/Desktop/result.json',
31
+ config_file: '/Users/xiongzenghui/Desktop/.swiftlint.yml'
32
+ )
33
+
34
+ pp Actions.lane_context[SharedValues::GITLAB_INCREATE_SWIFTLINT_RESULT_JSON]
35
+ ```
36
+
37
+ 得到如下的 json 数据
38
+
39
+ ```json
40
+ [
41
+ {
42
+ "character": 13,
43
+ "file": "/Users/xxx/ci-jenkins/workspace/xxx-iOS-module-xiongzenghui/ZHUDID/ZHUDID/Classes/Demo.swift",
44
+ "line": 18,
45
+ "reason": "Colons should be next to the identifier when specifying a type and next to the key in dictionary literals.",
46
+ "rule_id": "colon",
47
+ "severity": "Warning",
48
+ "type": "Colon"
49
+ },
50
+ {
51
+ "character": 28,
52
+ "file": "/Users/xxx/ci-jenkins/workspace/xxx-iOS-module-xiongzenghui/ZHUDID/ZHUDID/Classes/Demo.swift",
53
+ "line": 28,
54
+ "reason": "Force casts should be avoided.",
55
+ "rule_id": "force_cast",
56
+ "severity": "Error",
57
+ "type": "Force Cast"
58
+ },
59
+ {
60
+ "character": 13,
61
+ "file": "/Users/xxx/ci-jenkins/workspace/xxx-iOS-module-xiongzenghui/ZHUDID/ZHUDID/Classes/Haha.swift",
62
+ "line": 18,
63
+ "reason": "Colons should be next to the identifier when specifying a type and next to the key in dictionary literals.",
64
+ "rule_id": "colon",
65
+ "severity": "Warning",
66
+ "type": "Colon"
67
+ },
68
+ {
69
+ "character": 28,
70
+ "file": "/Users/xxx/ci-jenkins/workspace/xxx-iOS-module-xiongzenghui/ZHUDID/ZHUDID/Classes/Haha.swift",
71
+ "line": 28,
72
+ "reason": "Force casts should be avoided.",
73
+ "rule_id": "force_cast",
74
+ "severity": "Error",
75
+ "type": "Force Cast"
76
+ }
77
+ ]
78
+ ```
79
+
80
+ ## Run tests for this plugin
81
+
82
+ To run both the tests, and code style validation, run
83
+
84
+ ```
85
+ rake
86
+ ```
87
+
88
+ To automatically fix many of the styling issues, use
89
+ ```
90
+ rubocop -a
91
+ ```
92
+
93
+ ## Issues and Feedback
94
+
95
+ For any other issues and feedback about this plugin, please submit it to this repository.
96
+
97
+ ## Troubleshooting
98
+
99
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
100
+
101
+ ## Using _fastlane_ Plugins
102
+
103
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
104
+
105
+ ## About _fastlane_
106
+
107
+ _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,16 @@
1
+ require 'fastlane/plugin/gitlab_increate_swiftlint/version'
2
+
3
+ module Fastlane
4
+ module GitlabIncreateSwiftlint
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::GitlabIncreateSwiftlint.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,168 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/gitlab_increate_swiftlint_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ module SharedValues
7
+ GITLAB_INCREATE_SWIFTLINT_RESULT_JSON = :GITLAB_INCREATE_SWIFTLINT_RESULT_JSON
8
+ # GITLAB_INCREATE_SWIFTLINT_INTERVAL_JSON = :GITLAB_INCREATE_SWIFTLINT_INTERVAL_JSON
9
+ end
10
+
11
+ class GitlabIncreateSwiftlintAction < Action
12
+ def self.run(params)
13
+ require 'pp'
14
+ require 'json'
15
+ require 'gitlab'
16
+
17
+ gitlab_host = params[:gitlab_host]
18
+ gitlab_token = params[:gitlab_token]
19
+ projectid = params[:projectid]
20
+ mrid = params[:mrid]
21
+ lint_dir = params[:lint_dir]
22
+ swiftlint_result_json = params[:swiftlint_result_json]
23
+ config_file = params[:config_file]
24
+
25
+ # begin_time = Time.new
26
+
27
+ # 1. 得到 MR 变动的 文件 list
28
+ gc = Gitlab.client(endpoint: gitlab_host, private_token: gitlab_token)
29
+ mr_hash = gc.merge_request_changes(projectid, mrid).to_hash
30
+ changes_file_paths = mr_hash['changes'].map { |c|
31
+ c['new_path'] #=> 始终使用【当前最新】文件路径
32
+ }
33
+ UI.success('[GitlabIncreateSwiftlintAction] get merge_request_changes ✅')
34
+ pp changes_file_paths
35
+
36
+ # 2. 过滤只对 *.swift 进行 lint
37
+ swift_files = changes_file_paths.select do |file|
38
+ file =~ /.swift$/
39
+ end
40
+ pp swift_files
41
+ return true if swift_files.empty?
42
+
43
+ # 3. 拼接 swiftlint command
44
+ #
45
+ # SCRIPT_INPUT_FILE_COUNT=2 \
46
+ # SCRIPT_INPUT_FILE_0=Classes/Answer/Views/AnswerHybridContainer.swift \
47
+ # SCRIPT_INPUT_FILE_1=Classes/Invite/View/InviteeUserListViewCell.swift \
48
+ # swiftlint lint \
49
+ # --reporter json \
50
+ # --quiet \
51
+ # --use-script-input-files \
52
+ # > swiftlint.result.json
53
+ #
54
+ cmd = "SCRIPT_INPUT_FILE_COUNT=#{swift_files.count} "
55
+ swift_files.each_with_index do |ite, idx|
56
+ # - lint_dir: git clone git@xxx.com:user/pod.git /path/to/pod
57
+ # - ite: Class/aa/bb/xx.swift
58
+ # - filepath = #{lint_dir}/#{ite}
59
+ filepath = File.expand_path(ite, lint_dir)
60
+ cmd << "SCRIPT_INPUT_FILE_#{idx}=#{filepath} "
61
+ end
62
+
63
+ if config_file
64
+ cmd << "swiftlint lint --reporter json --quiet --config #{config_file} --use-script-input-files "
65
+ else
66
+ cmd << "swiftlint lint --reporter json --quiet --use-script-input-files "
67
+ end
68
+ cmd << "> #{swiftlint_result_json} " if swiftlint_result_json
69
+ UI.message("[GitlabIncreateSwiftlintAction] sh: #{cmd} ⚠️")
70
+ # Actions.sh(cmd) #=> swiftlitn 返回 2 , 而不是 0 , 会导致 fastlane action 判断为执行【失败】
71
+ rt = system(cmd)
72
+
73
+ # 4.
74
+ ajson = File.read(swiftlint_result_json)
75
+ Actions.lane_context[SharedValues::GITLAB_INCREATE_SWIFTLINT_RESULT_JSON] = JSON.parse(ajson)
76
+
77
+ # 5.
78
+ # end_time = Time.new
79
+ # interval_diff = (end_time - begin_time).to_i
80
+ # swiftlint_result = {
81
+ # interval_diff: interval_diff
82
+ # }
83
+ # File.open(swiftlint_result_others_json, 'w') do |f|
84
+ # f.write(swiftlint_result.to_json)
85
+ # end
86
+ # Actions.lane_context[SharedValues::SWIFTLINT_POD_RESULT_INTERVAL_JSON] = swiftlint_result
87
+
88
+ rt
89
+ end
90
+
91
+ def self.description
92
+ "Incremental Code Check using swiftlint for swift language files on gitlab platform !"
93
+ end
94
+
95
+ def self.authors
96
+ ["xiongzenghui"]
97
+ end
98
+
99
+ def self.return_value
100
+ 'boolean return true is success, otherwaise false is error'
101
+ end
102
+
103
+ def self.output
104
+ [
105
+ ['GITLAB_INCREATE_SWIFTLINT_RESULT_JSON', 'swiftlint lint result json']
106
+ ]
107
+ end
108
+
109
+ def self.details
110
+ "Incremental Code Check using swiftlint for swift language files on gitlab platform !"
111
+ end
112
+
113
+ def self.available_options
114
+ [
115
+ FastlaneCore::ConfigItem.new(
116
+ key: :gitlab_host,
117
+ description: "your gitlab host"
118
+ ),
119
+ FastlaneCore::ConfigItem.new(
120
+ key: :gitlab_token,
121
+ description: "your gitlab token"
122
+ ),
123
+ FastlaneCore::ConfigItem.new(
124
+ key: :projectid,
125
+ description: "your gitlab project id"
126
+ ),
127
+ FastlaneCore::ConfigItem.new(
128
+ key: :mrid,
129
+ description: "your gitlab merge request id"
130
+ ),
131
+ FastlaneCore::ConfigItem.new(
132
+ key: :lint_dir,
133
+ description: "where your pod dir"
134
+ ),
135
+ FastlaneCore::ConfigItem.new(
136
+ key: :swiftlint_result_json,
137
+ description: "where save swiftlint report json file",
138
+ optional: true
139
+ ),
140
+ FastlaneCore::ConfigItem.new(
141
+ key: :config_file,
142
+ description: "if you pass your custom .swiftlint.yml rule file",
143
+ optional: true
144
+ )
145
+ ]
146
+ end
147
+
148
+ def self.example_code
149
+ [
150
+ 'gitlab_increate_swiftlint(
151
+ gitlab_host: "https://xxx.com/api/v4",
152
+ gitlab_token: "xxxx",
153
+ projectid: "16456",
154
+ mrid: "33",
155
+ lint_dir: "/Users/xiongzenghui/Desktop/AFNetworking",
156
+ swiftlint_result_json: "/Users/xiongzenghui/Desktop/result.json",
157
+ config_file: "/Users/xiongzenghui/Desktop/.swiftlint.yml"
158
+ )
159
+ pp Actions.lane_context[SharedValues::GITLAB_INCREATE_SWIFTLINT_RESULT_JSON]'
160
+ ]
161
+ end
162
+
163
+ def self.is_supported?(platform)
164
+ true
165
+ end
166
+ end
167
+ end
168
+ 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 GitlabIncreateSwiftlintHelper
8
+ # class methods that you define here become available in your action
9
+ # as `Helper::GitlabIncreateSwiftlintHelper.your_method`
10
+ #
11
+ def self.show_message
12
+ UI.message("Hello from the gitlab_increate_swiftlint plugin helper!")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module GitlabIncreateSwiftlint
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,189 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-gitlab_increate_swiftlint
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - xiongzenghui
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: gitlab
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.11.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.11.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
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: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
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: rspec_junit_formatter
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: rake
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: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 0.49.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 0.49.1
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop-require_tools
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: simplecov
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: fastlane
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: 2.128.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 2.128.0
153
+ description:
154
+ email: zxcvb1234001@163.com
155
+ executables: []
156
+ extensions: []
157
+ extra_rdoc_files: []
158
+ files:
159
+ - LICENSE
160
+ - README.md
161
+ - lib/fastlane/plugin/gitlab_increate_swiftlint.rb
162
+ - lib/fastlane/plugin/gitlab_increate_swiftlint/actions/gitlab_increate_swiftlint_action.rb
163
+ - lib/fastlane/plugin/gitlab_increate_swiftlint/helper/gitlab_increate_swiftlint_helper.rb
164
+ - lib/fastlane/plugin/gitlab_increate_swiftlint/version.rb
165
+ homepage:
166
+ licenses:
167
+ - MIT
168
+ metadata: {}
169
+ post_install_message:
170
+ rdoc_options: []
171
+ require_paths:
172
+ - lib
173
+ required_ruby_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: '0'
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubygems_version: 3.0.4
185
+ signing_key:
186
+ specification_version: 4
187
+ summary: Incremental Code Check using swiftlint for swift language files on gitlab
188
+ platform !
189
+ test_files: []