Skip to content
Extraits de code Groupes Projets
status_messages_controller.rb 4,17 ko
Newer Older
  • Learn to ignore specific revisions
  • danielgrippi's avatar
    danielgrippi a validé
    #   Copyright (c) 2010-2011, 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.
    
    maxwell's avatar
    maxwell a validé
    class StatusMessagesController < ApplicationController
    
      before_filter :authenticate_user!
    
      before_filter :remove_getting_started, :only => [:create]
    
      use_bootstrap_for :bookmarklet
    
      respond_to :html,
                 :mobile,
                 :json
    
      layout 'application', only: :bookmarklet
    
      # Called when a user clicks "Mention" on a profile page
    
      # @param person_id [Integer] The id of the person to be mentioned
    
        if params[:person_id] && @person = Person.where(:id => params[:person_id]).first
    
          @aspect = :profile
          @contact = current_user.contact_for(@person)
          @aspects_with_person = []
          if @contact
            @aspects_with_person = @contact.aspects
    
            @aspect_ids = @aspects_with_person.map{|x| x.id}
    
            gon.aspect_ids = @aspect_ids
    
            @contacts_of_contact = @contact.contacts
            render :layout => nil
          end
    
        elsif(request.format == :mobile)
    
          @aspect = :all
          @aspects = current_user.aspects
          @aspect_ids = @aspects.map{ |a| a.id }
    
          gon.aspect_ids = @aspect_ids
    
        else
          redirect_to stream_path
    
        @aspects = current_user.aspects
        @aspect_ids = @aspects.map{|x| x.id}
      end
    
    
    maxwell's avatar
    maxwell a validé
      def create
    
        params[:status_message][:aspect_ids] = [*params[:aspect_ids]]
    
        services = [*params[:services]].compact
    
        @status_message = current_user.build_post(:status_message, params[:status_message])
    
    Marco Gallardo's avatar
    Marco Gallardo a validé
        @status_message.build_location(:address => params[:location_address], :coordinates => params[:location_coords]) if params[:location_address].present?
    
        if params[:poll_question].present?
          @status_message.build_poll(:question => params[:poll_question]) 
    
          [*params[:poll_answers]].each do |poll_answer|
    
            @status_message.poll.poll_answers.build(:answer => poll_answer)
          end
    
    Jannik Streek's avatar
    Jannik Streek a validé
        end
    
        @status_message.attach_photos_by_ids(params[:photos])
    
          aspects = current_user.aspects_from_ids(destination_aspect_ids)
    
          current_user.add_to_streams(@status_message, aspects)
    
          receiving_services = Service.titles(services)
    
          current_user.dispatch_post(@status_message, :url => short_post_url(@status_message.guid), :service_types => receiving_services)
    
    Dennis Collinson's avatar
    Dennis Collinson a validé
    
    
    Maxwell Salzberg's avatar
    Maxwell Salzberg a validé
          #this is done implicitly, somewhere else, but it doesnt work, says max. :'(
          @status_message.photos.each do |photo|
            current_user.dispatch_post(photo)
          end
    
          current_user.participate!(@status_message)
    
    Asphyxia's avatar
    Asphyxia a validé
          if coming_from_profile_page? && !own_profile_page? # if this is a post coming from a profile page
    
            flash[:notice] = successful_mention_message
    
            format.html { redirect_to :back }
            format.mobile { redirect_to stream_path }
    
            format.json { render :json => PostPresenter.new(@status_message, current_user), :status => 201 }
    
            format.mobile { redirect_to stream_path }
    
            format.json { render :nothing => true, :status => 403 }
    
    maxwell's avatar
    maxwell a validé
      end
    
      def destination_aspect_ids
        if params[:status_message][:public] || params[:status_message][:aspect_ids].first == "all_aspects"
          current_user.aspect_ids
        else
          params[:aspect_ids]
        end
      end
    
      def successful_mention_message
        t('status_messages.create.success', :names => @status_message.mentioned_people_names)
      end
    
      def coming_from_profile_page?
        request.env['HTTP_REFERER'].include?("people")
      end
    
    
    Asphyxia's avatar
    Asphyxia a validé
      def own_profile_page?
        request.env['HTTP_REFERER'].include?("/people/" + params[:status_message][:author][:guid].to_s)
      end
    
    
        # mobile || desktop conditions
    
        sm = params[:status_message]
        public_flag = (sm[:aspect_ids] && sm[:aspect_ids].first == 'public') || sm[:public]
    
        public_flag.to_s.match(/(true)|(on)/) ? public_flag = true : public_flag = false
        params[:status_message][:public] = public_flag
        public_flag
    
    maxwell's avatar
    maxwell a validé
      end
    
        current_user.disable_getting_started