2012-12-02 06:29:24 -05:00
|
|
|
class ProfilesController < ApplicationController
|
2013-02-25 15:51:15 -05:00
|
|
|
include ActionView::Helpers::SanitizeHelper
|
|
|
|
|
2012-07-31 01:32:49 -04:00
|
|
|
before_filter :user
|
2013-05-24 10:12:27 -04:00
|
|
|
before_filter :authorize_change_username!, only: :update_username
|
|
|
|
|
2012-12-02 06:29:24 -05:00
|
|
|
layout 'profile'
|
2012-07-31 01:32:49 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
2011-12-20 15:47:09 -05:00
|
|
|
def design
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2013-11-27 03:32:37 -05:00
|
|
|
params[:user].delete(:email) if @user.ldap_user?
|
|
|
|
|
2013-07-10 06:48:03 -04:00
|
|
|
if @user.update_attributes(params[:user])
|
2012-12-02 06:29:24 -05:00
|
|
|
flash[:notice] = "Profile was successfully updated"
|
|
|
|
else
|
|
|
|
flash[:alert] = "Failed to update profile"
|
|
|
|
end
|
2012-11-21 15:01:40 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to :back }
|
|
|
|
format.js
|
|
|
|
end
|
2011-10-19 18:34:05 -04:00
|
|
|
end
|
|
|
|
|
2011-11-15 08:08:20 -05:00
|
|
|
def reset_private_token
|
2012-12-02 06:29:24 -05:00
|
|
|
if current_user.reset_authentication_token!
|
|
|
|
flash[:notice] = "Token was successfully updated"
|
|
|
|
end
|
|
|
|
|
2013-10-09 09:37:37 -04:00
|
|
|
redirect_to profile_account_path
|
2011-11-15 08:08:20 -05:00
|
|
|
end
|
2012-07-31 01:32:49 -04:00
|
|
|
|
2012-09-14 12:13:25 -04:00
|
|
|
def history
|
|
|
|
@events = current_user.recent_events.page(params[:page]).per(20)
|
|
|
|
end
|
|
|
|
|
2012-12-02 06:29:24 -05:00
|
|
|
def update_username
|
2013-05-24 10:12:27 -04:00
|
|
|
@user.update_attributes(username: params[:user][:username])
|
2012-12-02 06:29:24 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.js
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-14 12:13:25 -04:00
|
|
|
private
|
2012-07-31 01:32:49 -04:00
|
|
|
|
|
|
|
def user
|
|
|
|
@user = current_user
|
|
|
|
end
|
2013-02-25 15:51:15 -05:00
|
|
|
|
2013-05-24 10:12:27 -04:00
|
|
|
def authorize_change_username!
|
|
|
|
return render_404 unless @user.can_change_username?
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|