2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2013-02-05 05:47:50 -05:00
|
|
|
# Internal access API
|
2013-02-04 10:53:43 -05:00
|
|
|
class Internal < Grape::API
|
2014-10-15 11:26:15 -04:00
|
|
|
before {
|
|
|
|
authenticate_by_gitlab_shell_token!
|
|
|
|
}
|
|
|
|
|
2013-02-05 05:47:50 -05:00
|
|
|
namespace 'internal' do
|
2014-03-19 15:02:12 -04:00
|
|
|
# Check if git command is allowed to project
|
2013-02-05 05:47:50 -05:00
|
|
|
#
|
2013-02-26 15:53:59 -05:00
|
|
|
# Params:
|
2014-03-19 15:02:12 -04:00
|
|
|
# key_id - ssh key id for Git over SSH
|
|
|
|
# user_id - user id for Git over HTTP
|
2013-02-26 15:53:59 -05:00
|
|
|
# project - project path with namespace
|
|
|
|
# action - git action (git-upload-pack or git-receive-pack)
|
|
|
|
# ref - branch name
|
2014-01-28 16:36:50 -05:00
|
|
|
# forced_push - forced_push
|
2013-02-26 15:53:59 -05:00
|
|
|
#
|
2014-09-03 02:06:16 -04:00
|
|
|
post "/allowed" do
|
2014-09-03 06:33:44 -04:00
|
|
|
status 200
|
2014-10-07 09:05:24 -04:00
|
|
|
project_path = params[:project]
|
2014-09-03 06:33:44 -04:00
|
|
|
|
2013-03-03 22:43:52 -05:00
|
|
|
# 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.
|
2014-10-07 09:05:24 -04:00
|
|
|
access =
|
|
|
|
if project_path =~ /\.wiki\Z/
|
2014-10-07 10:28:55 -04:00
|
|
|
project_path.sub!(/\.wiki\Z/, '')
|
2014-10-07 09:05:24 -04:00
|
|
|
Gitlab::GitAccessWiki.new
|
|
|
|
else
|
|
|
|
Gitlab::GitAccess.new
|
|
|
|
end
|
|
|
|
|
2013-03-03 22:43:52 -05:00
|
|
|
project = Project.find_with_namespace(project_path)
|
2013-03-14 03:02:36 -04:00
|
|
|
return false unless project
|
2013-02-07 02:56:13 -05:00
|
|
|
|
2014-03-19 15:02:12 -04:00
|
|
|
actor = if params[:key_id]
|
|
|
|
Key.find(params[:key_id])
|
|
|
|
elsif params[:user_id]
|
|
|
|
User.find(params[:user_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
return false unless actor
|
|
|
|
|
2014-10-07 09:05:24 -04:00
|
|
|
access.allowed?(
|
2014-03-19 15:02:12 -04:00
|
|
|
actor,
|
|
|
|
params[:action],
|
|
|
|
project,
|
2014-09-01 12:57:25 -04:00
|
|
|
params[:changes]
|
2014-03-19 15:02:12 -04:00
|
|
|
)
|
2013-02-05 05:47:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Discover user by ssh key
|
|
|
|
#
|
|
|
|
get "/discover" do
|
|
|
|
key = Key.find(params[:key_id])
|
2013-03-11 08:35:00 -04:00
|
|
|
present key.user, with: Entities::UserSafe
|
2013-02-05 05:47:50 -05:00
|
|
|
end
|
2013-02-05 08:55:49 -05:00
|
|
|
|
|
|
|
get "/check" do
|
|
|
|
{
|
2013-05-14 08:33:31 -04:00
|
|
|
api_version: API.version,
|
2013-02-16 07:42:22 -05:00
|
|
|
gitlab_version: Gitlab::VERSION,
|
|
|
|
gitlab_rev: Gitlab::REVISION,
|
2013-02-05 08:55:49 -05:00
|
|
|
}
|
|
|
|
end
|
2013-02-04 10:53:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|