summaryrefslogtreecommitdiff
path: root/app/helpers/auto_devops_helper.rb
blob: 62fc6fb279fc3631f5686f1cebc6ada03bc2344b (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
# frozen_string_literal: true

module AutoDevopsHelper
  def show_auto_devops_callout?(project)
    Feature.get(:auto_devops_banner_disabled).off? &&
      show_callout?('auto_devops_settings_dismissed') &&
      can?(current_user, :admin_pipeline, project) &&
      project.has_auto_devops_implicitly_disabled? &&
      !project.repository.gitlab_ci_yml &&
      !project.ci_service
  end

  def auto_devops_warning_message(project)
    if missing_auto_devops_service?(project)
      params = {
        kubernetes: link_to('Kubernetes cluster', project_clusters_path(project))
      }

      if missing_auto_devops_domain?(project)
        _('Auto Review Apps and Auto Deploy need a domain name and a %{kubernetes} to work correctly.') % params
      else
        _('Auto Review Apps and Auto Deploy need a %{kubernetes} to work correctly.') % params
      end
    elsif missing_auto_devops_domain?(project)
      _('Auto Review Apps and Auto Deploy need a domain name to work correctly.')
    end
  end

  def cluster_ingress_ip(project)
    project
      .cluster_ingresses
      .where("external_ip is not null")
      .limit(1)
      .pluck(:external_ip)
      .first
  end

  private

  def missing_auto_devops_domain?(project)
    !(project.auto_devops || project.build_auto_devops)&.has_domain?
  end

  def missing_auto_devops_service?(project)
    !project.deployment_platform&.active?
  end
end