mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-10 16:27:06 +02:00
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
class SessionsController < ApplicationController
|
|
layout "sign_in"
|
|
skip_before_action :login_required, only: [:new, :create]
|
|
before_action :set_user
|
|
|
|
def create
|
|
if session_params[:name] != "admin" # NOTE: Application user is "admin" only, other user name is invalid for now.
|
|
flash.now[:notice] = I18n.t("messages.login_failed")
|
|
return render :new
|
|
end
|
|
|
|
unless @user.authenticate(session_params[:password])
|
|
flash.now[:notice] = I18n.t("messages.login_failed")
|
|
return render :new
|
|
end
|
|
sign_in @user
|
|
if session_params[:password] == Settings.default_password
|
|
flash[:warning] = t('terms.changeme_password')
|
|
end
|
|
redirect_to root_path
|
|
end
|
|
|
|
def destroy
|
|
session.delete :succeed_password
|
|
redirect_to new_sessions_path
|
|
end
|
|
|
|
private
|
|
|
|
def set_user
|
|
@user = User.new(name: "admin")
|
|
end
|
|
|
|
def session_params
|
|
params.require(:session).permit(:name, :password)
|
|
end
|
|
|
|
def sign_in(user)
|
|
# NOTE: Cookie will encrypt by Rails, but store raw password into session is a bad practice.
|
|
# If we use some DB in the future, change this to store token with expire limitation (not password).
|
|
session[:succeed_password] = session_params[:password]
|
|
end
|
|
end
|