users_controller.rb 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. class Admin::UsersController < ApplicationController
  2. before_action :authenticate_admin!
  3. before_action :find_user, only: [:edit, :destroy, :update, :deactivate, :activate]
  4. helper_method :resource
  5. def index
  6. @users = User.reorder('created_at DESC').page(params[:page])
  7. respond_to do |format|
  8. format.html
  9. format.json { render json: @users }
  10. end
  11. end
  12. def new
  13. @user = User.new
  14. end
  15. def create
  16. admin = params[:user].delete(:admin)
  17. @user = User.new(params[:user])
  18. @user.requires_no_invitation_code!
  19. @user.admin = admin
  20. respond_to do |format|
  21. if @user.save
  22. format.html { redirect_to admin_users_path, notice: "User '#{@user.username}' was successfully created." }
  23. format.json { render json: @user, status: :ok, location: admin_users_path(@user) }
  24. else
  25. format.html { render action: 'new' }
  26. format.json { render json: @user.errors, status: :unprocessable_entity }
  27. end
  28. end
  29. end
  30. def edit
  31. end
  32. def update
  33. admin = params[:user].delete(:admin)
  34. params[:user].except!(:password, :password_confirmation) if params[:user][:password].blank?
  35. @user.assign_attributes(params[:user])
  36. @user.admin = admin
  37. respond_to do |format|
  38. if @user.save
  39. format.html { redirect_to admin_users_path, notice: "User '#{@user.username}' was successfully updated." }
  40. format.json { render json: @user, status: :ok, location: admin_users_path(@user) }
  41. else
  42. format.html { render action: 'edit' }
  43. format.json { render json: @user.errors, status: :unprocessable_entity }
  44. end
  45. end
  46. end
  47. def destroy
  48. @user.destroy
  49. respond_to do |format|
  50. format.html { redirect_to admin_users_path, notice: "User '#{@user.username}' was deleted." }
  51. format.json { head :no_content }
  52. end
  53. end
  54. def deactivate
  55. @user.deactivate!
  56. respond_to do |format|
  57. format.html { redirect_to admin_users_path, notice: "User '#{@user.username}' was deactivated." }
  58. format.json { render json: @user, status: :ok, location: admin_users_path(@user) }
  59. end
  60. end
  61. def activate
  62. @user.activate!
  63. respond_to do |format|
  64. format.html { redirect_to admin_users_path, notice: "User '#{@user.username}' was activated." }
  65. format.json { render json: @user, status: :ok, location: admin_users_path(@user) }
  66. end
  67. end
  68. private
  69. def find_user
  70. @user = User.find(params[:id])
  71. end
  72. def resource
  73. @user
  74. end
  75. end