Conflicts: app/controllers/requests_controller.rb app/controllers/tags_controller.rb app/helpers/aspects_helper.rb app/views/notifications/index.html.haml config/routes.rb public/javascripts/aspect-edit.js public/javascripts/contact-list.js spec/integration/receiving_spec.rb spec/models/user/connecting_spec.rb spec/models/user/posting_spec.rb
111 lines
3.6 KiB
Ruby
111 lines
3.6 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 Post < ActiveRecord::Base
|
|
require File.join(Rails.root, 'lib/diaspora/web_socket')
|
|
include ApplicationHelper
|
|
include ROXML
|
|
include Diaspora::Webhooks
|
|
include Diaspora::Guid
|
|
|
|
xml_attr :diaspora_handle
|
|
xml_attr :public
|
|
xml_attr :created_at
|
|
|
|
has_many :comments, :order => 'created_at ASC'
|
|
has_many :likes, :conditions => {:positive => true}, :dependent => :delete_all
|
|
has_many :dislikes, :conditions => {:positive => false}, :class_name => 'Like', :dependent => :delete_all
|
|
|
|
has_many :aspect_visibilities
|
|
has_many :aspects, :through => :aspect_visibilities
|
|
|
|
has_many :post_visibilities
|
|
has_many :contacts, :through => :post_visibilities
|
|
has_many :mentions, :dependent => :destroy
|
|
|
|
belongs_to :author, :class_name => 'Person'
|
|
|
|
cattr_reader :per_page
|
|
@@per_page = 10
|
|
|
|
def user_refs
|
|
if AspectVisibility.exists?(:post_id => self.id)
|
|
self.post_visibilities.count + 1
|
|
else
|
|
self.post_visibilities.count
|
|
end
|
|
end
|
|
|
|
def diaspora_handle= nd
|
|
self.author = Person.where(:diaspora_handle => nd).first
|
|
write_attribute(:diaspora_handle, nd)
|
|
end
|
|
|
|
def self.diaspora_initialize params
|
|
new_post = self.new params.to_hash
|
|
new_post.author = params[:author]
|
|
new_post.public = params[:public] if params[:public]
|
|
new_post.pending = params[:pending] if params[:pending]
|
|
new_post.diaspora_handle = new_post.author.diaspora_handle
|
|
new_post
|
|
end
|
|
|
|
def as_json(opts={})
|
|
{
|
|
:post => {
|
|
:id => self.guid,
|
|
:author => self.author.as_json,
|
|
}
|
|
}
|
|
end
|
|
|
|
def mutable?
|
|
false
|
|
end
|
|
|
|
def subscribers(user)
|
|
if self.public?
|
|
user.contact_people
|
|
else
|
|
user.people_in_aspects(user.aspects_with_post(self.id))
|
|
end
|
|
end
|
|
|
|
def receive(user, person)
|
|
#exists locally, but you dont know about it
|
|
#does not exsist locally, and you dont know about it
|
|
#exists_locally?
|
|
#you know about it, and it is mutable
|
|
#you know about it, and it is not mutable
|
|
|
|
local_post = Post.where(:guid => self.guid).first
|
|
if local_post && local_post.author_id == self.author_id
|
|
known_post = user.visible_posts.where(:guid => self.guid).first
|
|
if known_post
|
|
if known_post.mutable?
|
|
known_post.update_attributes(self.attributes)
|
|
else
|
|
Rails.logger.info("event=receive payload_type=#{self.class} update=true status=abort sender=#{self.diaspora_handle} reason=immutable existing_post=#{known_post.id}")
|
|
end
|
|
else
|
|
user.contact_for(person).receive_post(local_post)
|
|
user.notify_if_mentioned(local_post)
|
|
Rails.logger.info("event=receive payload_type=#{self.class} update=true status=complete sender=#{self.diaspora_handle} existing_post=#{local_post.id}")
|
|
return local_post
|
|
end
|
|
elsif !local_post
|
|
if self.save
|
|
user.contact_for(person).receive_post(self)
|
|
user.notify_if_mentioned(self)
|
|
Rails.logger.info("event=receive payload_type=#{self.class} update=false status=complete sender=#{self.diaspora_handle}")
|
|
return self
|
|
else
|
|
Rails.logger.info("event=receive payload_type=#{self.class} update=false status=abort sender=#{self.diaspora_handle} reason=#{self.errors.full_messages}")
|
|
end
|
|
else
|
|
Rails.logger.info("event=receive payload_type=#{self.class} update=true status=abort sender=#{self.diaspora_handle} reason='update not from post owner' existing_post=#{self.id}")
|
|
end
|
|
end
|
|
end
|
|
|