Skip to content
Extraits de code Groupes Projets
people_controller.rb 3,24 ko
Newer Older
  • Learn to ignore specific revisions
  • Raphael's avatar
    Raphael a validé
    #   Copyright (c) 2010, Diaspora Inc.  This file is
    
    Raphael's avatar
    Raphael a validé
    #   licensed under the Affero General Public License version 3 or later.  See
    
    Raphael's avatar
    Raphael a validé
    #   the COPYRIGHT file.
    
    class PeopleController < ApplicationController
      before_filter :authenticate_user!
    
    
      respond_to :html
      respond_to :json, :only => [:index, :show]
    
        @people = Person.search(params[:q]).paginate :page => params[:page], :per_page => 25, :order => 'created_at DESC'
    
    Raphael's avatar
    Raphael a validé
        
        
        # dont do it@people.first.diaspora_handle == params[:q]  
        
        #only do it if it is an email address
        if params[:q].try(:match, Devise.email_regexp)
          find_remote_user(params[:q])
        end
        
    
    Raphael's avatar
    Raphael a validé
      def find_remote_user(account)
    
        finger = EMWebfinger.new(account)
        finger.on_person do |response|
          begin
            puts response.inspect
            if response.class == Person
    
              response.socket_to_uid(current_user.id, :aspects => @aspects)
            else
              require File.join(Rails.root,'lib/diaspora/websocket')
              puts Diaspora::WebSocket
              Diaspora::WebSocket.queue_to_user(current_user.id, {:class => 'person', :query => account, :response => response})
            end
          rescue 
          end
        end
      end
    
    
    
        @person = Person.find(params[:id].to_id)
    
        @aspect = :none 
    
          @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'
    
    MrZYX's avatar
    MrZYX a validé
          flash[:error] = I18n.t 'people.show.does_not_exist'
    
          redirect_to people_path
    
        current_user.disconnect(current_user.visible_person_by_id(params[:id]))
    
        respond_with :location => root_url
    
      def edit
        @aspect  = :person_edit
        @person  = current_user.person
        @profile = @person.profile
      end
    
      def update
    
        # convert date selector into proper timestamp
    
        if birthday = params[:date]
          unless [:month, :day, :year].any?{|x| birthday[x].blank?} 
            params[:person][:profile][:birthday] ||= Date.parse("#{birthday[:year]}-#{birthday[:month]}-#{birthday[:day]}")
          end
    
        params[:person][:profile] ||= {}
    
        if params[:person][:profile][:image].present?
    
          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
    
    
        if current_user.update_profile params[:person][:profile]
    
    MrZYX's avatar
    MrZYX a validé
          flash[:notice] = I18n.t 'people.update.updated'
    
    MrZYX's avatar
    MrZYX a validé
          flash[:error] = I18n.t 'people.update.failed'
    
        if params[:getting_started]
    
          redirect_to getting_started_path(:step => params[:getting_started].to_i+1)
    
        else
          redirect_to edit_person_path
        end