2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2012-09-20 10:44:44 -04:00
|
|
|
class Session < Grape::API
|
2016-11-09 11:36:35 -05:00
|
|
|
desc 'Login to get token' do
|
2017-04-21 05:47:58 -04:00
|
|
|
success Entities::UserWithPrivateDetails
|
2016-11-09 11:36:35 -05:00
|
|
|
end
|
|
|
|
params do
|
|
|
|
optional :login, type: String, desc: 'The username'
|
|
|
|
optional :email, type: String, desc: 'The email of the user'
|
|
|
|
requires :password, type: String, desc: 'The password of the user'
|
|
|
|
at_least_one_of :login, :email
|
|
|
|
end
|
2012-09-20 10:44:44 -04:00
|
|
|
post "/session" do
|
2016-06-10 08:51:16 -04:00
|
|
|
user = Gitlab::Auth.find_with_user_password(params[:email] || params[:login], params[:password])
|
2012-09-20 10:44:44 -04:00
|
|
|
|
2013-07-16 04:28:19 -04:00
|
|
|
return unauthorized! unless user
|
2016-08-17 18:39:20 -04:00
|
|
|
return render_api_error!('401 Unauthorized. You have 2FA enabled. Please use a personal access token to access the API', 401) if user.two_factor_enabled?
|
2017-04-21 05:47:58 -04:00
|
|
|
present user, with: Entities::UserWithPrivateDetails
|
2012-09-20 10:44:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|