130 lines
3.9 KiB
Ruby
130 lines
3.9 KiB
Ruby
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
class AspectsController < ApplicationController
|
|
before_filter :authenticate_user!
|
|
|
|
respond_to :html
|
|
respond_to :json, :only => :show
|
|
|
|
def index
|
|
@posts = current_user.visible_posts(:_type => "StatusMessage").paginate :page => params[:page], :per_page => 15, :order => 'created_at DESC'
|
|
@aspect = :all
|
|
|
|
if current_user.getting_started == true
|
|
redirect_to getting_started_path
|
|
end
|
|
end
|
|
|
|
def create
|
|
puts "horray" if request.env['HTTP_REFERER']
|
|
@aspect = current_user.aspects.create(params[:aspect])
|
|
if @aspect.valid?
|
|
flash[:notice] = I18n.t('aspects.create.success', :name => @aspect.name)
|
|
if current_user.getting_started
|
|
redirect_to :back
|
|
elsif request.env['HTTP_REFERER'].includes("aspects/manage")
|
|
redirect_to :back
|
|
else
|
|
respond_with @aspect
|
|
end
|
|
else
|
|
flash[:error] = I18n.t('aspects.create.failure')
|
|
redirect_to :back
|
|
end
|
|
end
|
|
|
|
def new
|
|
@aspect = Aspect.new
|
|
end
|
|
|
|
def destroy
|
|
@aspect = current_user.aspect_by_id params[:id]
|
|
|
|
begin
|
|
current_user.drop_aspect @aspect
|
|
flash[:notice] = I18n.t 'aspects.destroy.success',:name => @aspect.name
|
|
rescue RuntimeError => e
|
|
flash[:error] = e.message
|
|
end
|
|
|
|
respond_with :location => aspects_manage_path
|
|
end
|
|
|
|
def show
|
|
@aspect = current_user.aspect_by_id params[:id]
|
|
unless @aspect
|
|
render :file => "#{Rails.root}/public/404.html", :layout => false, :status => 404
|
|
else
|
|
@aspect_contacts = @aspect.contacts
|
|
@posts = @aspect.posts.find_all_by__type("StatusMessage", :order => 'created_at desc').paginate :per_page => 15
|
|
respond_with @aspect
|
|
end
|
|
end
|
|
|
|
def manage
|
|
@aspect = :manage
|
|
@remote_requests = current_user.requests_for_me
|
|
end
|
|
|
|
def update
|
|
@aspect = current_user.aspect_by_id(params[:id])
|
|
|
|
@aspect.update_attributes( params[:aspect] )
|
|
flash[:notice] = I18n.t 'aspects.update.success',:name => @aspect.name
|
|
respond_with @aspect
|
|
end
|
|
|
|
def move_contact
|
|
unless current_user.move_contact( :person_id => params[:person_id], :from => params[:from], :to => params[:to][:to])
|
|
flash[:error] = I18n.t 'aspects.move_contact.error',:inspect => params.inspect
|
|
end
|
|
if aspect = current_user.aspect_by_id(params[:to][:to])
|
|
flash[:notice] = I18n.t 'aspects.move_contact.success'
|
|
render :nothing => true
|
|
else
|
|
flash[:notice] = I18n.t 'aspects.move_contact.failure'
|
|
render aspects_manage_path
|
|
end
|
|
end
|
|
|
|
def add_to_aspect
|
|
begin current_user.add_person_to_aspect( params[:person_id], params[:aspect_id])
|
|
@person_id = params[:person_id]
|
|
@aspect_id = params[:aspect_id]
|
|
flash.now[:notice] = I18n.t 'aspects.add_to_aspect.success'
|
|
|
|
respond_to do |format|
|
|
format.js { render :status => 200 }
|
|
format.html{ redirect_to aspect_path(@aspect_id)}
|
|
end
|
|
rescue Exception => e
|
|
flash.now[:error] = I18n.t 'aspects.add_to_aspect.failure'
|
|
respond_to do |format|
|
|
format.js { render :text => e, :status => 403 }
|
|
format.html{ redirect_to aspect_path(@aspect_id)}
|
|
end
|
|
end
|
|
end
|
|
|
|
def remove_from_aspect
|
|
begin current_user.delete_person_from_aspect(params[:person_id], params[:aspect_id])
|
|
@person_id = params[:person_id]
|
|
@aspect_id = params[:aspect_id]
|
|
flash.now[:notice] = I18n.t 'aspects.remove_from_aspect.success'
|
|
|
|
respond_to do |format|
|
|
format.js { render :status => 200 }
|
|
format.html{ redirect_to aspect_path(@aspect_id)}
|
|
end
|
|
rescue Exception => e
|
|
flash.now[:error] = I18n.t 'aspects.remove_from_aspect.failure'
|
|
|
|
respond_to do |format|
|
|
format.js { render :text => e, :status => 403 }
|
|
format.html{ redirect_to aspect_path(@aspect_id)}
|
|
end
|
|
end
|
|
end
|
|
end
|