summaryrefslogtreecommitdiff
path: root/app/helpers/visibility_level_helper.rb
blob: 5cec7f8b4e65d22f29b09ee5f6a55c7dd27c195f (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
module VisibilityLevelHelper
  def visibility_level_color(level)
    case level
    when Gitlab::VisibilityLevel::PRIVATE
      'cgreen'
    when Gitlab::VisibilityLevel::INTERNAL
      'camber'
    when Gitlab::VisibilityLevel::PUBLIC
      'cblue'
    end
  end

  def visibility_level_description(level)
    capture_haml do
      haml_tag :span do
        case level
        when Gitlab::VisibilityLevel::PRIVATE
          haml_concat "Project access must be granted explicitly for each user."
        when Gitlab::VisibilityLevel::INTERNAL
          haml_concat "The project can be cloned by"
          haml_tag :em, "any logged in user."
          haml_concat "It will also be listed on the #{link_to "public access directory", public_root_path} for logged in users."
          haml_tag :em, "Any logged in user"
          haml_concat "will have #{link_to "Guest", help_permissions_path} permissions on the repository."
        when Gitlab::VisibilityLevel::PUBLIC
          haml_concat "The project can be cloned"
          haml_tag :em, "without any"
          haml_concat "authentication."
          haml_concat "It will also be listed on the #{link_to "public access directory", public_root_path}."
          haml_tag :em, "Any logged in user"
          haml_concat "will have #{link_to "Guest", help_permissions_path} permissions on the repository."
        end
      end
    end
  end

  def visibility_level_icon(level)
    case level
    when Gitlab::VisibilityLevel::PRIVATE
      private_icon
    when Gitlab::VisibilityLevel::INTERNAL
      internal_icon
    when Gitlab::VisibilityLevel::PUBLIC
      public_icon
    end
  end

  def visibility_level_label(level)
    Project.visibility_levels.key(level)
  end
  
  def restricted_visibility_levels
    current_user.is_admin? ? [] : gitlab_config.restricted_visibility_levels
  end
end