2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
class Users::SessionsController < Devise::SessionsController
|
2018-06-21 15:54:35 +00:00
|
|
|
layout 'layouts/apified', only: :new
|
|
|
|
|
|
|
|
|
|
|
|
def new
|
|
|
|
@theme = 'minimal'
|
|
|
|
super
|
|
|
|
end
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2018-05-21 20:03:46 +00:00
|
|
|
def create
|
2018-06-21 15:54:35 +00:00
|
|
|
@theme = 'minimal'
|
|
|
|
|
|
|
|
respond_to do |format|
|
2018-03-25 17:30:42 +00:00
|
|
|
format.json {
|
|
|
|
warden.authenticate!(:scope => resource_name, :recall => "#{controller_path}#new")
|
|
|
|
render :status => 200, :json => { :status => "Success" }
|
2018-05-21 20:03:46 +00:00
|
|
|
}
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
# post /users/confirm_auth
|
|
|
|
# A simple action to confirm an entered password for a user who is already signed in
|
|
|
|
def confirm_auth
|
|
|
|
if current_user.valid_password?(params[:password])
|
|
|
|
tok = SecureRandom.uuid
|
|
|
|
session[:pw_token] = tok
|
|
|
|
session[:pw_timestamp] = Time.current.to_s
|
|
|
|
render json: {token: tok}, status: :ok
|
|
|
|
else
|
|
|
|
render json: ["Incorrect password. Please enter your #{Settings.general.name} %> password."], status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|