BigW Consortium Gitlab

visibility_level_helper.rb 2.19 KB
Newer Older
1 2 3 4
module VisibilityLevelHelper
  def visibility_level_color(level)
    case level
    when Gitlab::VisibilityLevel::PRIVATE
5
      'vs-private'
6
    when Gitlab::VisibilityLevel::INTERNAL
7
      'vs-internal'
8
    when Gitlab::VisibilityLevel::PUBLIC
9
      'vs-public'
10 11 12
    end
  end

Vinnie Okada committed
13 14
  # Return the description for the +level+ argument.
  #
15 16 17
  # +level+       One of the Gitlab::VisibilityLevel constants
  # +form_model+  Either a model object (Project, Snippet, etc.) or the name of
  #               a Project or Snippet class.
Vinnie Okada committed
18
  def visibility_level_description(level, form_model)
19 20
    case form_model
    when Project
Vinnie Okada committed
21
      project_visibility_level_description(level)
22 23
    when Snippet
      snippet_visibility_level_description(level, form_model)
Vinnie Okada committed
24 25 26 27
    end
  end

  def project_visibility_level_description(level)
28 29
    case level
    when Gitlab::VisibilityLevel::PRIVATE
30
      "Project access must be granted explicitly to each user."
31 32 33 34
    when Gitlab::VisibilityLevel::INTERNAL
      "The project can be cloned by any logged in user."
    when Gitlab::VisibilityLevel::PUBLIC
      "The project can be cloned without any authentication."
35 36 37
    end
  end

38
  def snippet_visibility_level_description(level, snippet = nil)
39 40
    case level
    when Gitlab::VisibilityLevel::PRIVATE
41 42 43 44 45
      if snippet.is_a? ProjectSnippet
        "The snippet is visible only to project members."
      else
        "The snippet is visible only to me."
      end
46
    when Gitlab::VisibilityLevel::INTERNAL
47
      "The snippet is visible to any logged in user."
48
    when Gitlab::VisibilityLevel::PUBLIC
49
      "The snippet can be accessed without any authentication."
50 51 52 53 54 55
    end
  end

  def visibility_level_label(level)
    Project.visibility_levels.key(level)
  end
56

57 58
  def restricted_visibility_levels(show_all = false)
    return [] if current_user.is_admin? && !show_all
59
    current_application_settings.restricted_visibility_levels || []
60
  end
Vinnie Okada committed
61 62 63 64 65 66 67 68

  def default_project_visibility
    current_application_settings.default_project_visibility
  end

  def default_snippet_visibility
    current_application_settings.default_snippet_visibility
  end
69 70 71

  def skip_level?(form_model, level)
    form_model.is_a?(Project) &&
72
    !form_model.visibility_level_allowed?(level)
73
  end
74
end