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
|
|
|
|
2016-11-15 10:02:44 -05:00
|
|
|
helpers ::API::Helpers::InternalHelpers
|
|
|
|
|
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
|
2017-04-05 03:29:30 -04:00
|
|
|
# protocol - Git access protocol being used, e.g. HTTP or SSH
|
2013-02-26 15:53:59 -05:00
|
|
|
# project - project path with namespace
|
|
|
|
# action - git action (git-upload-pack or git-receive-pack)
|
2017-04-05 03:29:30 -04:00
|
|
|
# changes - changes as "oldrev newrev ref", see Gitlab::ChangesList
|
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
|
|
|
|
2017-04-05 03:29:30 -04:00
|
|
|
# Stores some Git-specific env thread-safely
|
|
|
|
Gitlab::Git::Env.set(parse_env)
|
|
|
|
|
2016-04-18 11:42:48 -04:00
|
|
|
actor =
|
2015-03-24 09:10:55 -04:00
|
|
|
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
|
|
|
|
2016-06-20 21:40:56 -04:00
|
|
|
protocol = params[:protocol]
|
|
|
|
|
2016-12-21 09:59:54 -05:00
|
|
|
actor.update_last_used_at if actor.is_a?(Key)
|
2017-08-03 14:38:33 -04:00
|
|
|
user =
|
|
|
|
if actor.is_a?(Key)
|
|
|
|
actor.user
|
|
|
|
else
|
|
|
|
actor
|
|
|
|
end
|
2016-12-21 09:59:54 -05:00
|
|
|
|
2017-05-19 15:58:45 -04:00
|
|
|
access_checker_klass = wiki? ? Gitlab::GitAccessWiki : Gitlab::GitAccess
|
|
|
|
access_checker = access_checker_klass
|
2017-06-15 20:03:54 -04:00
|
|
|
.new(actor, project, protocol, authentication_abilities: ssh_authentication_abilities, redirected_path: redirected_path)
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-05-19 15:58:45 -04:00
|
|
|
begin
|
2017-05-23 14:34:58 -04:00
|
|
|
access_checker.check(params[:action], params[:changes])
|
2017-05-19 15:58:45 -04:00
|
|
|
rescue Gitlab::GitAccess::UnauthorizedError, Gitlab::GitAccess::NotFoundError => e
|
|
|
|
return { status: false, message: e.message }
|
|
|
|
end
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-05-19 15:58:45 -04:00
|
|
|
log_user_activity(actor)
|
2016-10-05 10:41:32 -04:00
|
|
|
|
2017-06-05 13:39:32 -04:00
|
|
|
{
|
2017-05-23 14:34:58 -04:00
|
|
|
status: true,
|
|
|
|
gl_repository: gl_repository,
|
2017-08-03 14:38:33 -04:00
|
|
|
gl_username: user&.username,
|
2017-06-26 09:55:06 -04:00
|
|
|
repository_path: repository_path,
|
|
|
|
gitaly: gitaly_payload(params[:action])
|
2017-05-23 14:34:58 -04:00
|
|
|
}
|
2013-02-05 05:47:50 -05:00
|
|
|
end
|
|
|
|
|
2016-09-19 10:34:32 -04:00
|
|
|
post "/lfs_authenticate" do
|
|
|
|
status 200
|
|
|
|
|
|
|
|
key = Key.find(params[:key_id])
|
2016-12-21 09:59:54 -05:00
|
|
|
key.update_last_used_at
|
|
|
|
|
2016-09-19 10:34:32 -04:00
|
|
|
token_handler = Gitlab::LfsToken.new(key)
|
|
|
|
|
|
|
|
{
|
|
|
|
username: token_handler.actor_name,
|
2016-09-28 12:02:31 -04:00
|
|
|
lfs_token: token_handler.token,
|
2016-09-19 10:34:32 -04:00
|
|
|
repository_http_path: project.http_url_to_repo
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-07-28 00:04:57 -04:00
|
|
|
get "/merge_request_urls" do
|
2017-08-29 22:10:41 -04:00
|
|
|
merge_request_urls
|
2016-07-28 00:04:57 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 05:47:50 -05:00
|
|
|
#
|
2017-06-20 10:53:28 -04:00
|
|
|
# Discover user by ssh key or user id
|
2013-02-05 05:47:50 -05:00
|
|
|
#
|
|
|
|
get "/discover" do
|
2017-06-20 10:53:28 -04:00
|
|
|
if params[:key_id]
|
|
|
|
key = Key.find(params[:key_id])
|
|
|
|
user = key.user
|
|
|
|
elsif params[:user_id]
|
|
|
|
user = User.find_by(id: params[:user_id])
|
|
|
|
end
|
|
|
|
present 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,
|
2017-08-31 17:00:40 -04:00
|
|
|
gitlab_rev: Gitlab::REVISION,
|
|
|
|
redis: redis_ping
|
2013-02-05 08:55:49 -05:00
|
|
|
}
|
|
|
|
end
|
2015-02-07 10:41:30 -05:00
|
|
|
|
2017-06-15 09:47:33 -04:00
|
|
|
get "/broadcast_messages" do
|
|
|
|
if messages = BroadcastMessage.current
|
|
|
|
present messages, with: Entities::BroadcastMessage
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-07 10:41:30 -05:00
|
|
|
get "/broadcast_message" do
|
2017-07-14 00:38:26 -04:00
|
|
|
if message = BroadcastMessage.current&.last
|
2015-02-07 10:41:30 -05:00
|
|
|
present message, with: Entities::BroadcastMessage
|
2015-02-18 17:58:20 -05:00
|
|
|
else
|
|
|
|
{}
|
2015-02-07 10:41:30 -05:00
|
|
|
end
|
|
|
|
end
|
2016-07-26 17:48:51 -04:00
|
|
|
|
|
|
|
post '/two_factor_recovery_codes' do
|
|
|
|
status 200
|
|
|
|
|
2016-08-24 20:58:05 -04:00
|
|
|
key = Key.find_by(id: params[:key_id])
|
|
|
|
|
2016-12-21 09:59:54 -05:00
|
|
|
if key
|
|
|
|
key.update_last_used_at
|
|
|
|
else
|
2016-08-24 20:58:05 -04:00
|
|
|
return { 'success' => false, 'message' => 'Could not find the given key' }
|
|
|
|
end
|
2016-07-26 17:48:51 -04:00
|
|
|
|
2016-08-24 20:58:05 -04:00
|
|
|
if key.is_a?(DeployKey)
|
2016-07-26 17:48:51 -04:00
|
|
|
return { success: false, message: 'Deploy keys cannot be used to retrieve recovery codes' }
|
|
|
|
end
|
|
|
|
|
2016-08-24 20:58:05 -04:00
|
|
|
user = key.user
|
|
|
|
|
|
|
|
unless user
|
2016-07-26 17:48:51 -04:00
|
|
|
return { success: false, message: 'Could not find a user for the given key' }
|
|
|
|
end
|
|
|
|
|
|
|
|
unless user.two_factor_enabled?
|
|
|
|
return { success: false, message: 'Two-factor authentication is not enabled for this user' }
|
|
|
|
end
|
|
|
|
|
2017-06-23 11:11:31 -04:00
|
|
|
codes = nil
|
|
|
|
|
2017-09-27 05:48:33 -04:00
|
|
|
::Users::UpdateService.new(current_user, user: user).execute! do |user|
|
2017-06-23 11:11:31 -04:00
|
|
|
codes = user.generate_otp_backup_codes!
|
2017-06-22 05:27:37 -04:00
|
|
|
end
|
2016-07-26 17:48:51 -04:00
|
|
|
|
2017-06-23 11:11:31 -04:00
|
|
|
{ success: true, recovery_codes: codes }
|
2016-07-26 17:48:51 -04:00
|
|
|
end
|
2017-02-05 13:04:23 -05:00
|
|
|
|
2017-08-31 17:01:07 -04:00
|
|
|
post '/pre_receive' do
|
|
|
|
status 200
|
|
|
|
|
|
|
|
reference_counter_increased = Gitlab::ReferenceCounter.new(params[:gl_repository]).increase
|
|
|
|
|
|
|
|
{ reference_counter_increased: reference_counter_increased }
|
|
|
|
end
|
|
|
|
|
2017-02-05 13:04:23 -05:00
|
|
|
post "/notify_post_receive" do
|
|
|
|
status 200
|
|
|
|
|
2017-05-18 15:33:43 -04:00
|
|
|
# TODO: Re-enable when Gitaly is processing the post-receive notification
|
|
|
|
# return unless Gitlab::GitalyClient.enabled?
|
|
|
|
#
|
|
|
|
# begin
|
|
|
|
# repository = wiki? ? project.wiki.repository : project.repository
|
2017-07-18 03:59:36 -04:00
|
|
|
# Gitlab::GitalyClient::NotificationService.new(repository.raw_repository).post_receive
|
2017-05-18 15:33:43 -04:00
|
|
|
# rescue GRPC::Unavailable => e
|
|
|
|
# render_api_error!(e, 500)
|
|
|
|
# end
|
2017-02-05 13:04:23 -05:00
|
|
|
end
|
2017-08-29 22:10:41 -04:00
|
|
|
|
|
|
|
post '/post_receive' do
|
|
|
|
status 200
|
|
|
|
|
|
|
|
PostReceive.perform_async(params[:gl_repository], params[:identifier],
|
|
|
|
params[:changes])
|
|
|
|
broadcast_message = BroadcastMessage.current&.last&.message
|
|
|
|
reference_counter_decreased = Gitlab::ReferenceCounter.new(params[:gl_repository]).decrease
|
|
|
|
|
|
|
|
{
|
|
|
|
merge_request_urls: merge_request_urls,
|
|
|
|
broadcast_message: broadcast_message,
|
|
|
|
reference_counter_decreased: reference_counter_decreased
|
|
|
|
}
|
|
|
|
end
|
2013-02-04 10:53:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|