Newer
Older
# licensed under the Affero General Public License version 3 or later. See
Daniel Vincent Grippi
a validé
class ApplicationController < ActionController::Base
#has_mobile_fu
protect_from_forgery :except => :receive
#before_filter :mobile_except_ipad
before_filter :set_contacts_notifications_and_status, :except => [:create, :update]
before_filter :count_requests
before_filter :set_invites
if user_signed_in?
danielvincent
a validé
@aspect = nil
@object_aspect_ids = []
danielvincent
a validé
@all_aspects = current_user.aspects.fields(:name, :contacts)
@aspects_dropdown_array = @all_aspects.collect{|x| [x.to_s, x.id]}
maxwell
a validé
@notification_count = Notification.for(current_user, :unread =>true).all.count
def mobile_except_ipad
if is_mobile_device?
Sarah Mei
a validé
if request.env["HTTP_USER_AGENT"].include? "iPad"
Sarah Mei
a validé
else
session[:mobile_view] = true
end
@request_count = Request.to(current_user.person).count if current_user
def set_invites
@invites = current_user.invites
end
end
I18n.locale = current_user.language
else
I18n.locale = request.compatible_language_from AVAILABLE_LANGUAGE_CODES
end
def similar_people contact, opts={}
opts[:limit] ||= 5
count = Contact.count(:user_id => current_user.id,
:person_id.ne => contact.person.id,
:aspect_ids.in => aspect_ids)
if count > opts[:limit]
offset = rand(count-opts[:limit])
else
offset = 0
end
contacts = Contact.all(:user_id => current_user.id,
:person_id.ne => contact.person.id,
:aspect_ids.in => aspect_ids,
:skip => offset,
:limit => opts[:limit])
contacts.collect!{ |contact| contact.person }
end