internal.rb 952 字节
Newer Older
D
Dmitriy Zaporozhets 已提交
1
module Gitlab
2
  # Internal access API
D
Dmitriy Zaporozhets 已提交
3
  class Internal < Grape::API
4 5 6 7 8 9 10
    namespace 'internal' do
      #
      # Check if ssh key has access to project code
      #
      get "/allowed" do
        key = Key.find(params[:key_id])
        user = key.user
D
Dmitriy Zaporozhets 已提交
11

12 13 14 15 16 17 18 19 20 21 22
        project = Project.find_with_namespace(params[:project])
        action = case params[:action]
                 when 'git-upload-pack'
                   then :download_code
                 when 'git-receive-pack'
                   then
                   if project.protected_branch?(params[:ref])
                     :push_code_to_protected_branches
                   else
                     :push_code
                   end
D
Dmitriy Zaporozhets 已提交
23 24
                 end

25 26 27 28 29 30 31 32 33 34
        user.can?(action, project)
      end

      #
      # Discover user by ssh key
      #
      get "/discover" do
        key = Key.find(params[:key_id])
        present key.user, with: Entities::User
      end
D
Dmitriy Zaporozhets 已提交
35 36 37 38
    end
  end
end