Cleaned up the User model, controller, access periods and added a UserRoleService to help with this.

This commit is contained in:
Ben 2024-04-29 13:45:56 -05:00
parent 1460df687f
commit 2103713552
4 changed files with 49 additions and 82 deletions

View File

@ -1,78 +1,46 @@
class UsersController < ApplicationController class UsersController < ApplicationController
before_action :authenticate_user! before_action :authenticate_user!
before_action :set_user, only: [:edit, :update, :destroy]
before_action :require_admin before_action :require_admin
before_action :set_user, only: [:show, :edit, :update, :destroy]
load_and_authorize_resource load_and_authorize_resource
def index
@users = User.all
end
def new
@user = User.new
@user.access_periods.build unless @user.access_periods.any?
end
def edit
@user = User.find(params[:id])
@user.access_periods.build if @user.access_periods.empty?
end
def create def create
@user = User.new(user_params) @user = User.new(user_params)
# Ensure an access period is built if none exist and no start_date is provided
if @user.access_periods.empty?
@user.access_periods.build(start_date: Date.today) # Set start date automatically
end
if @user.save if @user.save
update_user_roles(@user, params[:user][:roles] || ['user'])
redirect_to users_path, notice: 'User was successfully created.' redirect_to users_path, notice: 'User was successfully created.'
else else
render :new render :new
end end
end end
def edit
# Since @user is set by set_user, there's no need to find the user again
end
def update def update
@user = User.find(params[:id]) # If @user is set in a before_action, this line can be removed. # Clean up password fields if they are blank
# Handling password change: if password fields are blank, they are removed from user_params to prevent updating the password to nil.
cleaned_params = user_params cleaned_params = user_params
if cleaned_params[:password].blank? if cleaned_params[:password].blank?
cleaned_params.delete(:password) cleaned_params.delete(:password)
cleaned_params.delete(:password_confirmation) cleaned_params.delete(:password_confirmation)
end end
if @user.update(cleaned_params.except(:roles)) # Attempt to update the user with the cleaned parameters
# Update roles if @user.update(cleaned_params)
update_user_roles(@user, params[:user][:roles] || []) UserRoleService.new(@user, params[:user][:roles] || []).update_roles # Handle roles separately
# Check and update the access revoked status and end date
if params[:user][:access_revoked] == "1"
current_period = @user.access_periods.order(:created_at).last
current_period.update(end_date: Date.today) unless current_period.end_date.present?
end
redirect_to users_path, notice: 'User was successfully updated.' redirect_to users_path, notice: 'User was successfully updated.'
else else
render :edit render :edit # If there's an error, it will render the edit view where you can display error messages
end end
end end
def show
@user = User.includes(:access_periods).find(params[:id])
end
def destroy def destroy
@user.destroy @user.destroy
redirect_to users_path, notice: 'User was successfully deleted.' redirect_to users_path, notice: 'User was successfully deleted.'
end end
private private
def set_user def set_user
@ -84,46 +52,12 @@ class UsersController < ApplicationController
:email, :password, :password_confirmation, :remember_me, :email, :password, :password_confirmation, :remember_me,
:first_name, :last_name, :phone, :company, :first_name, :last_name, :phone, :company,
:access_revoked, :access_start_date, :access_end_date, :access_revoked, :access_start_date, :access_end_date,
access_periods_attributes: [:id, :start_date, :end_date, :_destroy], access_periods_attributes: [:id, :start_date, :end_date, :_destroy],
roles: []
) )
end end
def require_admin def require_admin
unless current_user.admin? redirect_to root_path, alert: 'Only admins are allowed to access this section.' unless current_user.admin?
redirect_to root_path, alert: 'Only admins are allowed to access this section.'
end
end end
def assign_roles(user)
user.roles = []
params[:user][:roles].each do |role_name|
user.add_role(role_name) unless role_name.blank?
end if params[:user][:roles].present?
end
def update_user_roles(user, roles_names)
# Assume roles_names should only contain one role at most
new_role = roles_names.reject(&:blank?).uniq.first # Take the first valid role name
# Clear all roles and set the new one
user.roles.delete_all
user.add_role(new_role) if new_role
end
def handle_access_revocation
if params[:user][:access_revoked] == "1"
current_period = @user.access_periods.find_or_initialize_by(end_date: nil)
current_period.update(end_date: Date.today) unless current_period.end_date.present?
elsif params[:user][:access_revoked] == "0" && @user.access_periods.last&.end_date.present?
@user.access_periods.build(start_date: Date.today)
end
end
end end

View File

@ -1,6 +1,7 @@
class AccessPeriod < ApplicationRecord class AccessPeriod < ApplicationRecord
belongs_to :user belongs_to :user
before_validation :set_default_start_date, on: :create
before_create :set_default_start_date
validates :end_date, presence: true, if: -> { user&.access_revoked? } validates :end_date, presence: true, if: -> { user&.access_revoked? }
private private
@ -9,4 +10,3 @@ class AccessPeriod < ApplicationRecord
self.start_date ||= Date.today if self.new_record? && self.start_date.blank? self.start_date ||= Date.today if self.new_record? && self.start_date.blank?
end end
end end

View File

@ -4,6 +4,7 @@ class User < ApplicationRecord
has_many :access_periods, dependent: :destroy has_many :access_periods, dependent: :destroy
accepts_nested_attributes_for :access_periods, allow_destroy: true accepts_nested_attributes_for :access_periods, allow_destroy: true
after_create :assign_default_role after_create :assign_default_role
before_update :handle_access_revocation
validate :password_complexity validate :password_complexity
@ -33,6 +34,14 @@ class User < ApplicationRecord
self.admin = has_role?(:admin) self.admin = has_role?(:admin)
end end
def handle_access_revocation
if access_revoked_changed? && access_revoked
access_periods.find_or_initialize_by(end_date: nil).update(end_date: Date.today)
elsif access_revoked_changed? && !access_revoked
access_periods.create(start_date: Date.today)
end
end
def end_date_after_start_date def end_date_after_start_date
if access_start_date.present? if access_start_date.present?
errors.add(:access_end_date, 'must be provided when access is revoked') unless access_end_date.present? errors.add(:access_end_date, 'must be provided when access is revoked') unless access_end_date.present?

View File

@ -0,0 +1,24 @@
class UserRoleService
def initialize(user, role_names)
@user = user
@role_names = role_names.reject(&:blank?).uniq
end
def update_roles
@user.roles = Role.where(name: @role_names)
end
private
def remove_unassigned_roles
current_roles = @user.roles.pluck(:name)
roles_to_remove = current_roles - @role_names
roles_to_remove.each { |role| @user.remove_role(role) }
end
def add_new_roles
roles_to_add = @role_names - @user.roles.pluck(:name)
roles_to_add.each { |role| @user.add_role(role) }
end
end