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
|
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
|
|
|
|
|
2012-12-02 06:29:24 -05:00
|
|
|
def account
|
|
|
|
end
|
|
|
|
|
2011-12-20 15:47:09 -05:00
|
|
|
def update
|
2013-02-25 15:51:15 -05:00
|
|
|
if @user.update_attributes(user_attributes)
|
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
|
|
|
|
|
2012-05-19 05:00:46 -04:00
|
|
|
def token
|
|
|
|
end
|
|
|
|
|
2012-12-02 06:29:24 -05:00
|
|
|
def update_password
|
2011-10-26 09:46:25 -04:00
|
|
|
params[:user].reject!{ |k, v| k != "password" && k != "password_confirmation"}
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
if @user.update_attributes(params[:user])
|
|
|
|
flash[:notice] = "Password was successfully updated. Please login with it"
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
else
|
2012-11-04 16:47:37 -05:00
|
|
|
render 'account'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
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
|
|
|
|
|
|
|
|
redirect_to account_profile_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-01-30 15:14:34 -05:00
|
|
|
if @user.can_change_username?
|
|
|
|
@user.update_attributes(username: params[:user][:username])
|
|
|
|
end
|
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
|
|
|
|
|
|
|
def user_attributes
|
|
|
|
user_attributes = params[:user]
|
|
|
|
|
|
|
|
# Sanitize user input because we dont have strict
|
|
|
|
# validation for this fields
|
|
|
|
%w(name skype linkedin twitter bio).each do |attr|
|
|
|
|
value = user_attributes[attr]
|
|
|
|
user_attributes[attr] = sanitize(value) if value.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
user_attributes
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|