Newer
Older
# licensed under the Affero General Public License version 3 or later. See
Daniel Vincent Grippi
a validé
danielvincent
a validé
class PeopleController < ApplicationController
before_filter :authenticate_user!
respond_to :html
respond_to :json, :only => [:index, :show]
danielvincent
a validé
def index
@aspect = :search
@people = Person.search(params[:q]).paginate :page => params[:page], :per_page => 25, :order => 'created_at DESC'
respond_with @people
danielvincent
a validé
end
danielvincent
a validé
def show
@aspect = :profile
@person = Person.find(params[:id].to_id)
if @person
@profile = @person.profile
@contact = current_user.contact_for(@person)
@is_contact = @person != current_user.person && @contact
if @contact
@aspects_with_person = @contact.aspects
else
@pending_request = current_user.pending_requests.find_by_person_id(@person.id)
end
@posts = current_user.visible_posts(:person_id => @person.id).paginate :page => params[:page], :order => 'created_at DESC'
respond_with @person
flash[:error] = I18n.t 'people.show.does_not_exist'
redirect_to people_path
Raphael
a validé
end
danielvincent
a validé
end
danielvincent
a validé
def destroy
current_user.unfriend(current_user.visible_person_by_id(params[:id]))
danielvincent
a validé
end
danielvincent
a validé
def edit
@aspect = :person_edit
@person = current_user.person
@profile = @person.profile
end
def update
danielvincent
a validé
# convert date selector into proper timestamp
birthday = params[:date]
if birthday
params[:person][:profile][:birthday] ||= Date.parse("#{birthday[:year]}-#{birthday[:month]}-#{birthday[:day]}")
end
danielvincent
a validé
# upload and set new profile photo
params[:person][:profile] ||= {}
if params[:person][:profile][:image].present?
danielvincent
a validé
raw_image = params[:person][:profile].delete(:image)
params[:profile_image_hash] = { :user_file => raw_image, :to => "all" }
photo = current_user.post(:photo, params[:profile_image_hash])
params[:person][:profile][:image_url] = photo.url(:thumb_medium)
end
danielvincent
a validé
if current_user.update_profile params[:person][:profile]
danielvincent
a validé
else
danielvincent
a validé
end
redirect_to getting_started_path(:step => params[:getting_started].to_i+1)
else
redirect_to edit_person_path
end
danielvincent
a validé
end