2018-11-05 23:45:35 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-12-07 07:23:23 -05:00
|
|
|
module Gitlab
|
2016-08-04 11:44:27 -04:00
|
|
|
module DataBuilder
|
2016-08-12 04:09:29 -04:00
|
|
|
module Build
|
2016-08-12 03:33:28 -04:00
|
|
|
extend self
|
2016-08-04 11:44:27 -04:00
|
|
|
|
2015-12-07 07:23:23 -05:00
|
|
|
def build(build)
|
2015-12-04 06:55:23 -05:00
|
|
|
project = build.project
|
2016-06-03 07:09:49 -04:00
|
|
|
commit = build.pipeline
|
2015-12-07 07:23:23 -05:00
|
|
|
user = build.user
|
|
|
|
|
2017-01-18 05:38:59 -05:00
|
|
|
author_url = build_author_url(build.commit, commit)
|
|
|
|
|
2015-12-07 07:23:23 -05:00
|
|
|
data = {
|
|
|
|
object_kind: 'build',
|
|
|
|
|
|
|
|
ref: build.ref,
|
|
|
|
tag: build.tag,
|
|
|
|
before_sha: build.before_sha,
|
|
|
|
sha: build.sha,
|
|
|
|
|
|
|
|
# TODO: should this be not prefixed with build_?
|
|
|
|
# Leaving this way to have backward compatibility
|
|
|
|
build_id: build.id,
|
|
|
|
build_name: build.name,
|
|
|
|
build_stage: build.stage,
|
|
|
|
build_status: build.status,
|
|
|
|
build_started_at: build.started_at,
|
|
|
|
build_finished_at: build.finished_at,
|
|
|
|
build_duration: build.duration,
|
2015-12-22 15:15:06 -05:00
|
|
|
build_allow_failure: build.allow_failure,
|
2018-08-10 10:43:10 -04:00
|
|
|
build_failure_reason: build.failure_reason,
|
2015-12-07 07:23:23 -05:00
|
|
|
|
|
|
|
# TODO: do we still need it?
|
|
|
|
project_id: project.id,
|
2018-03-07 09:07:09 -05:00
|
|
|
project_name: project.full_name,
|
2015-12-07 07:23:23 -05:00
|
|
|
|
|
|
|
user: {
|
|
|
|
id: user.try(:id),
|
|
|
|
name: user.try(:name),
|
2017-05-03 07:22:03 -04:00
|
|
|
email: user.try(:email)
|
2015-12-07 07:23:23 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
commit: {
|
|
|
|
id: commit.id,
|
|
|
|
sha: commit.sha,
|
|
|
|
message: commit.git_commit_message,
|
|
|
|
author_name: commit.git_author_name,
|
|
|
|
author_email: commit.git_author_email,
|
2017-01-18 05:38:59 -05:00
|
|
|
author_url: author_url,
|
2015-12-07 07:23:23 -05:00
|
|
|
status: commit.status,
|
|
|
|
duration: commit.duration,
|
|
|
|
started_at: commit.started_at,
|
2017-05-03 07:22:03 -04:00
|
|
|
finished_at: commit.finished_at
|
2015-12-07 07:23:23 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
repository: {
|
|
|
|
name: project.name,
|
|
|
|
url: project.url_to_repo,
|
|
|
|
description: project.description,
|
|
|
|
homepage: project.web_url,
|
|
|
|
git_http_url: project.http_url_to_repo,
|
|
|
|
git_ssh_url: project.ssh_url_to_repo,
|
|
|
|
visibility_level: project.visibility_level
|
2017-05-03 07:22:03 -04:00
|
|
|
}
|
2015-12-07 07:23:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
data
|
|
|
|
end
|
2017-01-18 05:38:59 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def build_author_url(commit, pipeline)
|
|
|
|
author = commit.try(:author)
|
|
|
|
author ? Gitlab::Routing.url_helpers.user_url(author) : "mailto:#{pipeline.git_author_email}"
|
|
|
|
end
|
2015-12-07 07:23:23 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|