diaspora/app/models/post.rb
Mike Sofaer, Raphael Sofaer & Sarah Mei 5c21e220ff post_spec now passes with mysql
2010-12-18 20:23:16 -08:00

63 lines
1.4 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/encryptable')
require File.join(Rails.root, 'lib/diaspora/web_socket')
include ApplicationHelper
include ROXML
include Diaspora::Webhooks
xml_reader :guid
xml_reader :diaspora_handle
xml_reader :public
xml_reader :created_at
has_many :comments, :order => 'created_at ASC'
has_and_belongs_to_many :aspects
belongs_to :person, :class_name => 'Person'
cattr_reader :per_page
@@per_page = 10
before_destroy :propogate_retraction
after_destroy :destroy_comments
attr_accessible :user_refs
def self.instantiate params
new_post = self.new params.to_hash
new_post.person = params[:person]
params[:aspect_ids].each do |aspect_id|
new_post.aspects << Aspect.find_by_id(aspect_id)
end if params[:aspect_ids]
new_post.public = params[:public]
new_post.pending = params[:pending]
new_post.diaspora_handle = new_post.person.diaspora_handle
new_post
end
def as_json(opts={})
{
:post => {
:id => self.id,
:person => self.person.as_json,
}
}
end
def mutable?
false
end
protected
def destroy_comments
comments.each { |c| c.destroy }
end
def propogate_retraction
self.person.owner.retract(self)
end
end