2012-05-05 17:02:45 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2007-03-12 20:59:02 +03: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-16 03:52:48 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-05-16 03:52:48 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
class Document < ActiveRecord::Base
|
2012-03-06 22:54:41 +04:00
|
|
|
include Redmine::SafeAttributes
|
2007-03-12 20:59:02 +03:00
|
|
|
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
|
|
|
|
2008-05-18 20:15:22 +04:00
|
|
|
acts_as_searchable :columns => ['title', "#{table_name}.description"], :include => :project
|
2007-09-27 21:28:22 +04:00
|
|
|
acts_as_event :title => Proc.new {|o| "#{l(:label_document)}: #{o.title}"},
|
2007-11-12 11:00:00 +03:00
|
|
|
:author => Proc.new {|o| (a = o.attachments.find(:first, :order => "#{Attachment.table_name}.created_on ASC")) ? a.author : nil },
|
2007-09-27 21:28:22 +04:00
|
|
|
:url => Proc.new {|o| {:controller => 'documents', :action => 'show', :id => o.id}}
|
2008-07-27 21:54:09 +04:00
|
|
|
acts_as_activity_provider :find_options => {:include => :project}
|
2011-05-16 03:52:48 +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-16 03:52:48 +04:00
|
|
|
|
2012-04-27 03:51:10 +04:00
|
|
|
scope :visible, lambda {|*args| { :include => :project,
|
2011-04-05 16:50:19 +04:00
|
|
|
:conditions => Project.allowed_to_condition(args.shift || User.current, :view_documents, *args) } }
|
2011-05-16 03:52:48 +04:00
|
|
|
|
2012-03-06 22:54:41 +04:00
|
|
|
safe_attributes 'category_id', 'title', 'description'
|
|
|
|
|
2009-12-13 17:26:54 +03:00
|
|
|
def visible?(user=User.current)
|
|
|
|
!user.nil? && user.allowed_to?(:view_documents, project)
|
|
|
|
end
|
2011-05-16 03:52:48 +04:00
|
|
|
|
2011-12-18 18:57:58 +04:00
|
|
|
def initialize(attributes=nil, *args)
|
|
|
|
super
|
2008-12-12 16:49:14 +03:00
|
|
|
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-16 03:52:48 +04:00
|
|
|
|
2009-11-26 23:12:20 +03:00
|
|
|
def updated_on
|
|
|
|
unless @updated_on
|
2012-01-01 21:35:34 +04:00
|
|
|
a = attachments.last
|
2009-11-26 23:12:20 +03:00
|
|
|
@updated_on = (a && a.created_on) || created_on
|
|
|
|
end
|
|
|
|
@updated_on
|
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|