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
|
2015-02-03 00:22:57 -05:00
|
|
|
before { authenticate_by_gitlab_shell_token! }
|
2014-10-15 11:26:15 -04:00
|
|
|
|
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
|
2015-02-23 17:14:57 -05:00
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
actor =
|
|
|
|
if params[:key_id]
|
|
|
|
Key.find_by(id: params[:key_id])
|
|
|
|
elsif params[:user_id]
|
|
|
|
User.find_by(id: params[:user_id])
|
|
|
|
end
|
2015-02-23 17:14:57 -05:00
|
|
|
|
2014-10-07 09:05:24 -04:00
|
|
|
project_path = params[:project]
|
2015-03-24 09:10:55 -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.
|
2015-03-24 09:10:55 -04:00
|
|
|
wiki = project_path.end_with?('.wiki')
|
|
|
|
project_path.chomp!('.wiki') if wiki
|
2014-10-07 09:05:24 -04:00
|
|
|
|
2013-03-03 22:43:52 -05:00
|
|
|
project = Project.find_with_namespace(project_path)
|
2014-12-01 09:55:33 -05:00
|
|
|
|
2015-05-10 17:07:35 -04:00
|
|
|
access =
|
|
|
|
if wiki
|
|
|
|
Gitlab::GitAccessWiki.new(actor, project)
|
|
|
|
else
|
|
|
|
Gitlab::GitAccess.new(actor, project)
|
|
|
|
end
|
2013-02-07 02:56:13 -05:00
|
|
|
|
2015-05-10 17:07:35 -04:00
|
|
|
access.check(params[:action], params[:changes])
|
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
|
2015-02-07 10:41:30 -05:00
|
|
|
|
|
|
|
get "/broadcast_message" do
|
|
|
|
if message = BroadcastMessage.current
|
|
|
|
present message, with: Entities::BroadcastMessage
|
2015-02-18 17:58:20 -05:00
|
|
|
else
|
|
|
|
{}
|
2015-02-07 10:41:30 -05:00
|
|
|
end
|
|
|
|
end
|
2013-02-04 10:53:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|