metamaps--metamaps/app/controllers/users_controller.rb

123 lines
3.5 KiB
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
2017-11-25 19:23:47 +00:00
2012-09-23 02:39:12 +00:00
class UsersController < ApplicationController
2017-11-25 19:23:47 +00:00
before_action :require_user, only: %i(edit update updatemetacodes update_metacode_focus)
respond_to :html, :json
2015-09-10 14:12:50 +00:00
2014-07-27 19:57:35 +00:00
# GET /users/1.json
def show
@user = User.find(params[:id])
render json: @user
end
2014-08-12 22:14:04 +00:00
# GET /users/:id/edit
2012-09-23 02:39:12 +00:00
def edit
@user = User.find(current_user.id)
2012-09-23 02:39:12 +00:00
end
2014-08-12 22:14:04 +00:00
# PUT /users/:id
2012-09-23 02:39:12 +00:00
def update
@user = User.find(current_user.id)
if user_params[:password] == '' && user_params[:password_confirmation] == ''
# not trying to change the password
2015-11-03 12:56:50 +00:00
if @user.update_attributes(user_params.except(:password, :password_confirmation))
update_follow_settings(@user, params[:settings])
@user.image = nil if params[:remove_image] == '1'
@user.save
bypass_sign_in(@user)
respond_to do |format|
2017-03-08 18:50:39 +00:00
format.html { redirect_to root_url, notice: 'Settings updated' }
end
else
bypass_sign_in(@user)
respond_to do |format|
format.html { redirect_to edit_user_path(@user), notice: @user.errors.to_a[0] }
end
end
else
# trying to change the password
correct_pass = @user.valid_password?(params[:current_password])
2015-11-03 12:56:50 +00:00
if correct_pass && @user.update_attributes(user_params)
update_follow_settings(@user, params[:settings]) if is_tester(@user)
@user.image = nil if params[:remove_image] == '1'
@user.save
sign_in(@user, bypass: true)
respond_to do |format|
2017-03-08 18:50:39 +00:00
format.html { redirect_to root_url, notice: 'Settings updated' }
end
else
respond_to do |format|
if correct_pass
u = User.find(@user.id)
sign_in(u, bypass: true)
format.html { redirect_to edit_user_path(@user), notice: @user.errors.to_a[0] }
else
sign_in(@user, bypass: true)
format.html { redirect_to edit_user_path(@user), notice: 'Incorrect current password' }
end
end
end
2012-09-23 02:39:12 +00:00
end
end
# GET /users/:id/details [.json]
def details
@user = User.find(params[:id])
@details = {}
@details['name'] = @user.name
@details['created_at'] = @user.created_at.strftime('%m/%d/%Y')
@details['image'] = @user.image.url(:ninetysix)
@details['generation'] = @user.generation
@details['numSynapses'] = @user.synapses.count
@details['numTopics'] = @user.topics.count
@details['numMaps'] = @user.maps.count
render json: @details
end
# PUT /user/updatemetacodes
def updatemetacodes
@user = current_user
@m = params[:metacodes][:value]
@user.settings.metacodes = @m.split(',')
@user.save
respond_to do |format|
format.json { render json: @user }
end
end
2012-09-23 02:39:12 +00:00
2017-02-05 06:28:10 +00:00
# PUT /user/update_metacode_focus
def update_metacode_focus
@user = current_user
@user.settings.metacode_focus = params[:value]
@user.save
respond_to do |format|
2017-11-25 19:23:47 +00:00
format.json { render json: { success: 'success' } }
2017-02-05 06:28:10 +00:00
end
end
2015-09-19 08:26:34 +00:00
private
2017-03-08 18:50:39 +00:00
def update_follow_settings(user, settings)
user.settings.follow_topic_on_created = settings[:follow_topic_on_created]
user.settings.follow_topic_on_contributed = settings[:follow_topic_on_contributed]
user.settings.follow_map_on_created = settings[:follow_map_on_created]
user.settings.follow_map_on_contributed = settings[:follow_map_on_contributed]
end
2015-09-19 08:26:34 +00:00
def user_params
2016-12-11 22:29:48 +00:00
params.require(:user).permit(
2017-03-08 18:50:39 +00:00
:name, :email, :image, :password, :password_confirmation, :emails_allowed, :settings
2016-12-11 22:29:48 +00:00
)
end
2012-09-23 02:39:12 +00:00
end