Welcome to mirror list, hosted at ThFree Co, Russian Federation.

people_controller.rb « controllers « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89ed4bc9a09b1d025da58b5c90ab2c36b751fdaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#   Copyright (c) 2010, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.

class PeopleController < ApplicationController
  before_filter :authenticate_user!

  respond_to :html
  respond_to :json, :only => [:index, :show]

  def index
    @aspect = :search
    @people = Person.search(params[:q]).paginate :page => params[:page], :per_page => 25, :order => 'created_at DESC'
    respond_with @people
  end

  def show
    @aspect = :profile

    @person = Person.find(params[:id].to_id)

    if @person
      @profile = @person.profile
      @contact = current_user.contact_for(@person)

      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
    else
      flash[:error] = "Person does not exist!"
      redirect_to people_path
    end
  end

  def destroy
    current_user.unfriend(current_user.visible_person_by_id(params[:id]))
    respond_with :location => root_url
  end

  def edit
    @aspect  = :person_edit
    @person  = current_user.person
    @profile = @person.profile
  end

  def update
    # convert date selector into proper timestamp
    birthday = params[:date]
    if birthday
      params[:person][:profile][:birthday] ||= Date.parse("#{birthday[:year]}-#{birthday[:month]}-#{birthday[:day]}")
    end

    # upload and set new profile photo
    if params[:person][:profile][:image]
      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

    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

    if params[:getting_started]
      redirect_to getting_started_path(:step => params[:getting_started].to_i+1)
    else
      redirect_to edit_person_path
    end
  end

  private
  def prep_image_url(params)
    if params[:profile] && params[:profile][:image_url]
      if params[:profile][:image_url].empty?
        params[:profile].delete(:image_url)
      else
        url = APP_CONFIG[:pod_url].dup
        url.chop! if APP_CONFIG[:pod_url][-1,1] == '/'
        if params[:profile][:image_url].match(/^https?:\/\//)
          params[:profile][:image_url] = params[:profile][:image_url]
        else
          params[:profile][:image_url] = url + params[:profile][:image_url]
        end
      end
    end
  end

end