gitlab-org--gitlab-foss/lib/api/internal.rb

68 lines
1.7 KiB
Ruby
Raw Normal View History

module API
# Internal access API
2013-02-04 15:53:43 +00:00
class Internal < Grape::API
namespace 'internal' do
# Check if git command is allowed to project
#
2013-02-26 20:53:59 +00:00
# Params:
# key_id - ssh key id for Git over SSH
# user_id - user id for Git over HTTP
2013-02-26 20:53:59 +00:00
# project - project path with namespace
# action - git action (git-upload-pack or git-receive-pack)
# ref - branch name
# forced_push - forced_push
2013-02-26 20:53:59 +00:00
#
post "/allowed" do
status 200
project_path = params[:project]
# Check for *.wiki repositories.
# Strip out the .wiki from the pathname before finding the
# project. This applies the correct project permissions to
# the wiki repository as well.
access =
if project_path =~ /\.wiki\Z/
project_path.sub!(/\.wiki\Z/, '')
Gitlab::GitAccessWiki.new
else
Gitlab::GitAccess.new
end
project = Project.find_with_namespace(project_path)
return false unless project
actor = if params[:key_id]
Key.find(params[:key_id])
elsif params[:user_id]
User.find(params[:user_id])
end
return false unless actor
access.allowed?(
actor,
params[:action],
project,
params[:changes]
)
end
#
# Discover user by ssh key
#
get "/discover" do
key = Key.find(params[:key_id])
present key.user, with: Entities::UserSafe
end
2013-02-05 13:55:49 +00:00
get "/check" do
{
api_version: API.version,
gitlab_version: Gitlab::VERSION,
gitlab_rev: Gitlab::REVISION,
2013-02-05 13:55:49 +00:00
}
end
2013-02-04 15:53:43 +00:00
end
end
end