Class: Danger::DangerfileGitLabPlugin

Inherits:
Plugin
  • Object
show all
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.

Examples:

Warn when an MR is classed as work in progress


warn "MR is classed as Work in Progress" if gitlab.mr_title.include? "[WIP]"

Declare a MR to be simple to avoid specific Danger rules


declared_trivial = (gitlab.mr_title + gitlab.mr_body).include?("#trivial")

Ensure that labels have been applied to the MR


fail "Please add labels to this MR" if gitlab.mr_labels.empty?

Ensure that all MRs have an assignee


warn "This MR does not have any assignees yet." unless gitlab.mr_json["assignee"]

Ensure there is a summary for a MR


fail "Please provide a summary in the Pull Request description" if gitlab.mr_body.length < 5

Only accept MRs to the develop branch


fail "Please re-submit this MR to develop, we may have already fixed your issue." if gitlab.branch_for_merge != "develop"

Note when MRs don’t reference a milestone, which goes away when it does


has_milestone = gitlab.mr_json["milestone"] != nil
warn("This MR does not refer to an existing milestone", sticky: false) unless has_milestone

Note when a MR cannot be manually merged, which goes away when you can


can_merge = gitlab.mr_json["mergeable"]
warn("This MR cannot be merged yet.", sticky: false) unless can_merge

Highlight when a celebrity makes a pull request


message "Welcome, Danger." if gitlab.mr_author == "dangermcshane"

Send a message with links to a collection of specific files


if git.modified_files.include? "config/*.js"
  config_files = git.modified_files.select { |path| path.include? "config/" }
  message "This MR changes #{ gitlab.html_link(config_files) }"
end

Highlight with a clickable link if a Package.json is changed


warn "#{gitlab.html_link("Package.json")} was edited." if git.modified_files.include? "Package.json"

See Also:

  • danger/danger

MR Metadata collapse

MR Content collapse

MR Commit Metadata collapse

GitLab Misc collapse

Class Method Summary collapse

Instance Method Summary collapse

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_nameString

The instance name used in the Dangerfile

Returns:



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

#apiGitLab::Client

Provides access to the GitLab API client used inside Danger. Making it easy to use the GitLab API inside a Dangerfile.

Returns:

  • (GitLab::Client)


158
159
160
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 158

def api
  @gitlab.client
end

#base_commitString

The base commit to which the MR is going to be merged as a parent

Returns:



133
134
135
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 133

def base_commit
  @gitlab.base_commit
end

#branch_for_mergeString

The branch to which the MR is going to be merged into

Returns:



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_commitString

The head commit to which the MR is requesting to be merged from

Returns:



141
142
143
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 141

def head_commit
  @gitlab.commits_json.first.id
end

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.

Parameters:

  • paths (String or Array<String>)

    A list of strings to convert to gitlab anchors

  • full_path (Bool) (defaults to: true)

    Shows the full path as the link’s text, defaults to ‘true`.

Returns:



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_authorString

The username of the author of the Merge Request

Returns:



100
101
102
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 100

def mr_author
  @gitlab.mr_json.author.username.to_s
end

#mr_bodyString

The body text of the Merge Request

Returns:



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_diffString

The unified diff produced by GitLab for this PR see [Unified diff](en.wikipedia.org/wiki/Diff_utility#Unified_format)

Returns:



117
118
119
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 117

def mr_diff
  @gitlab.mr_diff
end

#mr_jsonHash

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)

Returns:

  • (Hash)


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_labelsString

The labels assigned to the Merge Request

Returns:



108
109
110
# File 'lib/danger/danger_core/plugins/dangerfile_gitlab_plugin.rb', line 108

def mr_labels
  @gitlab.mr_json.labels
end

#mr_titleString

The title of the Merge Request

Returns:



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