rosa-build/app/controllers/api/v1/users_controller.rb

52 lines
1.4 KiB
Ruby
Raw Normal View History

2012-10-15 10:45:00 +01:00
class Api::V1::UsersController < Api::V1::BaseController
2012-12-29 12:38:14 +00:00
2015-03-04 23:19:19 +00:00
before_action :authenticate_user!
skip_before_action :authenticate_user!, only: [:show] if APP_CONFIG['anonymous_access']
before_action :load_user, only: %i(show)
2015-03-04 23:19:19 +00:00
before_action :set_current_user, except: :show
2012-10-15 10:45:00 +01:00
def show
2012-12-29 16:22:21 +00:00
@user = User.opened.find params[:id] # dont show system users
end
def show_current_user
render :show
end
def update
user_params = params[:user] || {}
send_confirmation = user_params[:email] != @user.email
if @user.update_without_password(user_params)
if send_confirmation
@user.confirmed_at, @user.confirmation_sent_at = nil
@user.send_confirmation_instructions
end
render_json_response @user, 'User has been updated successfully'
2012-10-15 10:45:00 +01:00
else
render_validation_error @user, "#{class_name} has not been updated"
2012-10-15 10:45:00 +01:00
end
end
def notifiers
if request.put?
if @user.notifier.update_attributes(params[:notifiers])
render_json_response @user, 'User notification settings have been updated successfully'
else
render_json_response @user, error_message(@user.notifier, 'User notification settings have not been updated'), 422
end
end
end
protected
def set_current_user
authorize @user = current_user
end
# Private: before_action hook which loads User.
def load_user
authorize @user = User.find(params[:id])
end
2012-12-29 12:38:14 +00:00
end