Class: Danger::RequestSources::GitLab
Constant Summary
RequestSource::DANGER_REPO_NAME
Instance Attribute Summary collapse
#ci_source, #environment, #ignored_violations
Class Method Summary
collapse
Instance Method Summary
collapse
#apply_template, #character_from_emoji, #generate_comment, #generate_description, #generate_inline_comment_body, #generate_inline_markdown_body, #markdown_link_to_message, #markdown_parser, #messages_are_equivalent, #parse_comment, #process_markdown, #random_compliment, #table
#parse_comment, #parse_message_from_row, #parse_tables_from_comment, #table_kind_from_title, #violations_from_table
available_request_sources, available_source_names_and_envs, #file_url, inherited, source_name, #validates_as_ci?
Constructor Details
#initialize(ci_source, environment) ⇒ GitLab
Returns a new instance of GitLab.
20
21
22
23
24
25
|
# File 'lib/danger/request_sources/gitlab.rb', line 20
def initialize(ci_source, environment)
self.ci_source = ci_source
self.environment = environment
@token = @environment["DANGER_GITLAB_API_TOKEN"]
end
|
Instance Attribute Details
#commits_json ⇒ Object
Returns the value of attribute commits_json.
10
11
12
|
# File 'lib/danger/request_sources/gitlab.rb', line 10
def commits_json
@commits_json
end
|
#mr_json ⇒ Object
Returns the value of attribute mr_json.
10
11
12
|
# File 'lib/danger/request_sources/gitlab.rb', line 10
def mr_json
@mr_json
end
|
Class Method Details
.env_vars ⇒ Object
12
13
14
|
# File 'lib/danger/request_sources/gitlab.rb', line 12
def self.env_vars
["DANGER_GITLAB_API_TOKEN"]
end
|
.optional_env_vars ⇒ Object
16
17
18
|
# File 'lib/danger/request_sources/gitlab.rb', line 16
def self.optional_env_vars
["DANGER_GITLAB_HOST", "DANGER_GITLAB_API_BASE_URL"]
end
|
Instance Method Details
#base_commit ⇒ Object
52
53
54
55
|
# File 'lib/danger/request_sources/gitlab.rb', line 52
def base_commit
first_commit_in_branch = self.commits_json.last.id
@base_commit ||= self.scm.exec "rev-parse #{first_commit_in_branch}^1"
end
|
#client ⇒ Object
27
28
29
30
31
32
33
34
|
# File 'lib/danger/request_sources/gitlab.rb', line 27
def client
token = @environment["DANGER_GITLAB_API_TOKEN"]
raise "No API token given, please provide one using `DANGER_GITLAB_API_TOKEN`" unless token
params = { private_token: token }
params[:endpoint] = endpoint
@client ||= Gitlab.client(params)
end
|
131
132
133
134
135
136
137
138
139
140
141
|
# File 'lib/danger/request_sources/gitlab.rb', line 131
def (except: nil, danger_id: "danger")
.each do ||
next unless .generated_by_danger?(danger_id)
next if .id == except
client.(
escaped_ci_slug,
ci_source.pull_request_id,
.id
)
end
end
|
#endpoint ⇒ Object
44
45
46
|
# File 'lib/danger/request_sources/gitlab.rb', line 44
def endpoint
@endpoint ||= @environment["DANGER_GITLAB_API_BASE_URL"] || "https://gitlab.com/api/v3"
end
|
#escaped_ci_slug ⇒ Object
67
68
69
|
# File 'lib/danger/request_sources/gitlab.rb', line 67
def escaped_ci_slug
@escaped_ci_slug ||= CGI.escape(ci_source.repo_slug)
end
|
#fetch_details ⇒ Object
84
85
86
87
88
|
# File 'lib/danger/request_sources/gitlab.rb', line 84
def fetch_details
self.mr_json = client.merge_request(escaped_ci_slug, self.ci_source.pull_request_id)
self.commits_json = client.merge_request_commits(escaped_ci_slug, self.ci_source.pull_request_id)
self.ignored_violations = ignored_violations_from_pr(self.mr_json)
end
|
#host ⇒ Object
48
49
50
|
# File 'lib/danger/request_sources/gitlab.rb', line 48
def host
@host ||= @environment["DANGER_GITLAB_HOST"] || "gitlab.com"
end
|
#ignored_violations_from_pr(mr_json) ⇒ Object
90
91
92
93
94
|
# File 'lib/danger/request_sources/gitlab.rb', line 90
def ignored_violations_from_pr(mr_json)
pr_body = mr_json.description
return [] if pr_body.nil?
pr_body.chomp.scan(/>\s*danger\s*:\s*ignore\s*"(.*)"/i).flatten
end
|
57
58
59
60
|
# File 'lib/danger/request_sources/gitlab.rb', line 57
def
@comments ||= client.(escaped_ci_slug, ci_source.pull_request_id)
.map { || Comment.from_gitlab() }
end
|
#mr_diff ⇒ Object
62
63
64
65
|
# File 'lib/danger/request_sources/gitlab.rb', line 62
def mr_diff
@mr_diff ||= client.merge_request_changes(escaped_ci_slug, ci_source.pull_request_id)
.changes.map { |change| change["diff"] }.join("\n")
end
|
#organisation ⇒ String
Returns The organisation name, is nil if it can’t be detected.
144
145
146
|
# File 'lib/danger/request_sources/gitlab.rb', line 144
def organisation
nil end
|
#scm ⇒ Object
40
41
42
|
# File 'lib/danger/request_sources/gitlab.rb', line 40
def scm
@scm ||= GitRepo.new
end
|
#setup_danger_branches ⇒ Object
71
72
73
74
75
76
77
78
79
80
81
82
|
# File 'lib/danger/request_sources/gitlab.rb', line 71
def setup_danger_branches
head_commit = self.scm.head_commit
scm.ensure_commitish_exists! base_commit
self.scm.exec "branch #{EnvironmentManager.danger_base_branch} #{base_commit}"
scm.ensure_commitish_exists! head_commit
self.scm.exec "branch #{EnvironmentManager.danger_head_branch} #{head_commit}"
end
|
#update_pull_request!(warnings: [], errors: [], messages: [], markdowns: [], danger_id: "danger") ⇒ Object
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# File 'lib/danger/request_sources/gitlab.rb', line 96
def update_pull_request!(warnings: [], errors: [], messages: [], markdowns: [], danger_id: "danger")
= .select { || .generated_by_danger?(danger_id) }
if .empty?
previous_violations = {}
else
= .first.body
previous_violations = ()
end
if previous_violations.empty? && (warnings + errors + messages + markdowns).empty?
(danger_id: danger_id)
else
body = (warnings: warnings,
errors: errors,
messages: messages,
markdowns: markdowns,
previous_violations: previous_violations,
danger_id: danger_id,
template: "gitlab")
if .empty?
client.(
escaped_ci_slug, ci_source.pull_request_id, body
)
else
original_id = .first.id
client.(
escaped_ci_slug, ci_source.pull_request_id, original_id, body
)
end
end
end
|
#validates_as_api_source? ⇒ Boolean
36
37
38
|
# File 'lib/danger/request_sources/gitlab.rb', line 36
def validates_as_api_source?
@token && !@token.empty?
end
|