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 = current_user.visible_person_by_id(params[:id])
Raphael
a validé
unless @person
render :file => "#{Rails.root}/public/404.html", :layout => false, :status => 404
else
@profile = @person.profile
@contact = current_user.contact_for(@person)
@aspects_with_person = @contact.aspects if @contact
@posts = current_user.visible_posts(:person_id => @person.id).paginate :page => params[:page], :order => 'created_at DESC'
respond_with @person
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é
prep_image_url(params[:person])
if current_user.update_profile params[:person][:profile]
flash[:notice] = "Profile updated"
else
flash[:error] = "Failed to update profile"
end
redirect_to getting_started_path(:step => params[:getting_started].to_i+1)
else
redirect_to edit_person_path
end
danielvincent
a validé
end
private
def prep_image_url(params)
if params[:profile] && params[:profile][:image_url]
url = APP_CONFIG[:pod_url].dup
url.chop! if APP_CONFIG[:pod_url][-1,1] == '/'
if params[:profile][:image_url].empty?
params[:profile].delete(:image_url)
danielvincent
a validé
else
if /^http:\/\// =~ params[:profile][:image_url]
params[:profile][:image_url] = params[:profile][:image_url]
else
params[:profile][:image_url] = url + params[:profile][:image_url]
end
danielvincent
a validé
end
end
end