Module: Gitlab::DataBuilder::Deployment

Extended by:
Deployment
Included in:
Deployment
Defined in:
lib/gitlab/data_builder/deployment.rb

Instance Method Summary collapse

Instance Method Details

#build(deployment, status, status_changed_at) ⇒ Object

NOTE: Time-sensitive attributes should be explicitly passed as argument instead of reading from database.



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/gitlab/data_builder/deployment.rb', line 9

def build(deployment, status, status_changed_at)
  # Deployments will not have a deployable when created using the API.
  deployable_url =
    if deployment.deployable.instance_of?(::Ci::Build)
      Gitlab::UrlBuilder.build(deployment.deployable)
    end

  commit_url =
    if (commit = deployment.commit)
      Gitlab::UrlBuilder.build(commit)
    end

  user_url =
    if deployment.deployed_by
      Gitlab::UrlBuilder.build(deployment.deployed_by)
    end

  # `status` argument could be `nil` during the upgrade. We can remove `deployment.status` in GitLab 15.5.
  # See https://docs.gitlab.com/ee/development/multi_version_compatibility.html for more info.
  deployment_status = status || deployment.status

  {
    object_kind: 'deployment',
    status: deployment_status,
    status_changed_at: status_changed_at,
    deployment_id: deployment.id,
    deployable_id: deployment.deployable_id,
    deployable_url: deployable_url,
    environment: deployment.environment.name,
    environment_tier: deployment.environment.tier,
    environment_slug: deployment.environment.slug,
    environment_external_url: deployment.environment.external_url,
    project: deployment.project.hook_attrs,
    short_sha: deployment.short_sha,
    user: deployment.deployed_by&.hook_attrs,
    user_url: user_url,
    commit_url: commit_url,
    commit_title: deployment.commit_title,
    ref: deployment.ref
  }
end