summaryrefslogtreecommitdiff
path: root/app/serializers/environment_status_entity.rb
blob: 3dfa4f204c94609981ffc45bda5c677e99926c21 (plain)
1
2
3
4
5
6
7
8
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
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

class EnvironmentStatusEntity < Grape::Entity
  include RequestAwareEntity

  expose :id
  expose :name

  expose :url do |es|
    project_environment_path(es.project, es.environment)
  end

  expose :metrics_url, if: ->(*) { can_read_environment? && environment.has_metrics? } do |es|
    metrics_project_environment_deployment_path(es.project, es.environment, es.deployment)
  end

  expose :metrics_monitoring_url, if: ->(*) { can_read_environment? } do |es|
    environment_metrics_path(es.environment)
  end

  expose :stop_url, if: ->(*) { can_stop_environment? } do |es|
    stop_project_environment_path(es.project, es.environment)
  end

  expose :external_url do |es|
    es.environment.external_url
  end

  expose :external_url_formatted do |es|
    es.environment.formatted_external_url
  end

  expose :deployed_at

  expose :deployed_at_formatted do |es|
    es.deployment.try(:formatted_deployment_time)
  end

  expose :changes, if: ->(*) { Feature.enabled?(:ci_environments_status_changes, project) }

  private

  def environment
    object.environment
  end

  def project
    object.environment.project
  end

  def current_user
    request.current_user
  end

  def can_read_environment?
    can?(current_user, :read_environment, environment)
  end

  def can_stop_environment?
    can?(current_user, :stop_environment, environment)
  end
end