summaryrefslogtreecommitdiff
path: root/lib/gitlab/user_access_snippet.rb
blob: bfed86c4df413a97f5838fa28de19ce531b15e5d (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
# frozen_string_literal: true

module Gitlab
  class UserAccessSnippet < UserAccess
    extend ::Gitlab::Cache::RequestCache
    # TODO: apply override check https://gitlab.com/gitlab-org/gitlab/issues/205677

    request_cache_key do
      [user&.id, snippet&.id]
    end

    attr_reader :snippet

    def initialize(user, snippet: nil)
      @user = user
      @snippet = snippet
      @project = snippet&.project
    end

    def can_do_action?(action)
      return false unless can_access_git?

      permission_cache[action] =
        permission_cache.fetch(action) do
          Ability.allowed?(user, action, snippet)
        end
    end

    def can_create_tag?(ref)
      false
    end

    def can_delete_branch?(ref)
      false
    end

    def can_push_to_branch?(ref)
      super
      return false unless snippet
      return false unless can_do_action?(:update_snippet)

      true
    end

    def can_merge_to_branch?(ref)
      false
    end
  end
end