Skip to content
Extraits de code Groupes Projets
requests_controller.rb 1,81 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.  See
    #   the COPYRIGHT file.
    
    class RequestsController < ApplicationController
      before_filter :authenticate_user!
    
      include RequestsHelper
    
    Raphael's avatar
    Raphael a validé
          if params[:aspect_id]
            @friend = current_user.accept_and_respond( params[:id], params[:aspect_id])
    
            flash[:notice] = "You are now friends."
            respond_with :location => current_user.aspect_by_id(params[:aspect_id])
    
            flash[:error] = "Please select an aspect!"
            respond_with :location => requests_url
    
    Raphael's avatar
    Raphael a validé
          end
    
        else
          current_user.ignore_friend_request params[:id]
    
          flash[:notice] = "Ignored friend request."
          respond_with :location => requests_url
    
    Raphael's avatar
    Raphael a validé
        aspect = current_user.aspect_by_id(params[:request][:aspect_id])
    
        begin
    
          rel_hash = relationship_flow(params[:request][:destination_url])
        rescue Exception => e
    
          flash[:error] = "No diaspora seed found with this email!"
    
          respond_with :location => aspect
    
        Rails.logger.debug("Sending request: #{rel_hash}")
    
    Raphael's avatar
    Raphael a validé
          @request = current_user.send_friend_request_to(rel_hash[:friend], aspect)
    
        rescue Exception => e
          raise e unless e.message.include? "already friends"
    
          flash[:notice] = "You are already friends with #{params[:request][:destination_url]}!"
          respond_with :location => aspect
    
    Raphael's avatar
    Raphael a validé
          return
    
          flash[:notice] =  "A friend request was sent to #{@request.destination_url}."
          respond_with :location => aspect
    
          flash[:error] = "Something went horribly wrong."
          respond_with :location => aspect