Class: Danger::DangerfileGitLabPlugin
- Defined in:
- lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb
Overview
Handles interacting with GitLab inside a Dangerfile. Provides a few functions which wrap ‘mr_json` and also through a few standard functions to simplify your code.
MR Metadata collapse
-
#mr_author ⇒ String
The username of the author of the Merge Request.
-
#mr_body ⇒ String
The body text of the Merge Request.
-
#mr_labels ⇒ String
The labels assigned to the Merge Request.
-
#mr_title ⇒ String
The title of the Merge Request.
MR Content collapse
-
#mr_diff ⇒ String
The unified diff produced by GitLab for this PR see [Unified diff](en.wikipedia.org/wiki/Diff_utility#Unified_format).
MR Commit Metadata collapse
-
#base_commit ⇒ String
The base commit to which the MR is going to be merged as a parent.
-
#branch_for_merge ⇒ String
The branch to which the MR is going to be merged into.
-
#head_commit ⇒ String
The head commit to which the MR is requesting to be merged from.
GitLab Misc collapse
-
#api ⇒ GitLab::Client
Provides access to the GitLab API client used inside Danger.
-
#html_link(paths, full_path: true) ⇒ String
Returns a list of HTML anchors for a file, or files in the head repository.
-
#mr_json ⇒ Hash
The hash that represents the MR’s JSON.
Class Method Summary collapse
-
.instance_name ⇒ String
The instance name used in the Dangerfile.
-
.new(dangerfile) ⇒ Object
So that this init can fail.
Instance Method Summary collapse
-
#initialize(dangerfile) ⇒ DangerfileGitLabPlugin
constructor
A new instance of DangerfileGitLabPlugin.
Methods inherited from Plugin
all_plugins, clear_external_plugins, inherited, #method_missing
Constructor Details
#initialize(dangerfile) ⇒ DangerfileGitLabPlugin
Returns a new instance of DangerfileGitLabPlugin.
74 75 76 77 78 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 74 def initialize(dangerfile) super(dangerfile) @gitlab = dangerfile.env.request_source end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Danger::Plugin
Class Method Details
.instance_name ⇒ String
The instance name used in the Dangerfile
70 71 72 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 70 def self.instance_name "gitlab" end |
.new(dangerfile) ⇒ Object
So that this init can fail.
62 63 64 65 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 62 def self.new(dangerfile) return nil if dangerfile.env.request_source.class != Danger::RequestSources::GitLab super end |
Instance Method Details
#api ⇒ GitLab::Client
Provides access to the GitLab API client used inside Danger. Making it easy to use the GitLab API inside a Dangerfile.
158 159 160 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 158 def api @gitlab.client end |
#base_commit ⇒ String
The base commit to which the MR is going to be merged as a parent
133 134 135 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 133 def base_commit @gitlab.base_commit end |
#branch_for_merge ⇒ String
The branch to which the MR is going to be merged into
125 126 127 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 125 def branch_for_merge @gitlab.mr_json.target_branch end |
#head_commit ⇒ String
The head commit to which the MR is requesting to be merged from
141 142 143 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 141 def head_commit @gitlab.commits_json.first.id end |
#html_link(paths, full_path: true) ⇒ String
Returns a list of HTML anchors for a file, or files in the head repository. An example would be: ‘<a href=’gitlab.com/artsy/eigen/blob/561827e46167077b5e53515b4b7349b8ae04610b/file.txt’>file.txt</a>‘. It returns a string of multiple anchors if passed an array.
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 171 def html_link(paths, full_path: true) paths = [paths] unless paths.kind_of?(Array) commit = head_commit same_repo = mr_json[:project_id] == mr_json[:source_project_id] sender_repo = ci_source.repo_slug.split("/").first + "/" + mr_json[:author][:username] repo = same_repo ? ci_source.repo_slug : sender_repo host = @gitlab.host paths = paths.map do |path| url_path = path.start_with?("/") ? path : "/#{path}" text = full_path ? path : File.basename(path) create_link("https://#{host}/#{repo}/blob/#{commit}#{url_path}", text) end return paths.first if paths.count < 2 paths.first(paths.count - 1).join(", ") + " & " + paths.last end |
#mr_author ⇒ String
The username of the author of the Merge Request
100 101 102 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 100 def @gitlab.mr_json..username.to_s end |
#mr_body ⇒ String
The body text of the Merge Request
92 93 94 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 92 def mr_body @gitlab.mr_json.description.to_s end |
#mr_diff ⇒ String
The unified diff produced by GitLab for this PR see [Unified diff](en.wikipedia.org/wiki/Diff_utility#Unified_format)
117 118 119 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 117 def mr_diff @gitlab.mr_diff end |
#mr_json ⇒ Hash
The hash that represents the MR’s JSON. See documentation for the structure [here](docs.gitlab.com/ce/api/merge_requests.html#get-single-mr)
150 151 152 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 150 def mr_json @gitlab.mr_json.to_hash end |
#mr_labels ⇒ String
The labels assigned to the Merge Request
108 109 110 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 108 def mr_labels @gitlab.mr_json.labels end |
#mr_title ⇒ String
The title of the Merge Request
84 85 86 |
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 84 def mr_title @gitlab.mr_json.title.to_s end |