2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
class Document < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
2009-05-31 03:30:36 +04:00
|
|
|
belongs_to :category, :class_name => "DocumentCategory", :foreign_key => "category_id"
|
2008-12-09 19:54:46 +03:00
|
|
|
acts_as_attachable :delete_permission => :manage_documents
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2010-07-15 20:24:12 +04:00
|
|
|
acts_as_journalized :event_title => Proc.new {|o| "#{l(:label_document)}: #{o.title}"},
|
2010-09-15 13:05:42 +04:00
|
|
|
:event_url => Proc.new {|o| {:controller => 'documents', :action => 'show', :id => o.journaled_id}},
|
2010-07-15 20:24:12 +04:00
|
|
|
:event_author => (Proc.new do |o|
|
|
|
|
o.attachments.find(:first, :order => "#{Attachment.table_name}.created_on ASC").try(:author)
|
|
|
|
end)
|
|
|
|
|
2008-05-18 20:15:22 +04:00
|
|
|
acts_as_searchable :columns => ['title', "#{table_name}.description"], :include => :project
|
2011-04-14 00:23:37 +04:00
|
|
|
acts_as_watchable
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
validates_presence_of :project, :title, :category
|
2007-07-16 21:16:49 +04:00
|
|
|
validates_length_of :title, :maximum => 60
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-01-23 19:47:59 +03:00
|
|
|
named_scope :visible, lambda {|*args| { :include => :project,
|
|
|
|
:conditions => Project.allowed_to_condition(args.first || User.current, :view_documents) } }
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-12-13 17:26:54 +03:00
|
|
|
def visible?(user=User.current)
|
|
|
|
!user.nil? && user.allowed_to?(:view_documents, project)
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-12-12 16:49:14 +03:00
|
|
|
def after_initialize
|
|
|
|
if new_record?
|
2009-05-31 03:30:36 +04:00
|
|
|
self.category ||= DocumentCategory.default
|
2008-12-12 16:49:14 +03:00
|
|
|
end
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-11-26 23:12:20 +03:00
|
|
|
def updated_on
|
|
|
|
unless @updated_on
|
|
|
|
a = attachments.find(:first, :order => 'created_on DESC')
|
|
|
|
@updated_on = (a && a.created_on) || created_on
|
|
|
|
end
|
|
|
|
@updated_on
|
|
|
|
end
|
2011-04-14 00:23:37 +04:00
|
|
|
|
|
|
|
def recipients
|
|
|
|
mails = super # from acts_as_event
|
|
|
|
mails += watcher_recipients
|
|
|
|
mails.uniq
|
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|