git-svn-id: http://redmine-dmsf.googlecode.com/svn/trunk/redmine_dmsf@5 5e329b0b-a2ee-ea63-e329-299493fc886d
79 lines
2.4 KiB
Ruby
79 lines
2.4 KiB
Ruby
# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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 DmsfFolder < ActiveRecord::Base
|
|
unloadable
|
|
belongs_to :project
|
|
belongs_to :folder, :class_name => "DmsfFolder", :foreign_key => "dmsf_folder_id"
|
|
has_many :subfolders, :class_name => "DmsfFolder", :foreign_key => "dmsf_folder_id", :order => "name ASC"
|
|
has_many :files, :class_name => "DmsfFile", :foreign_key => "dmsf_folder_id", :order => "name ASC",
|
|
:conditions => { :deleted => false }
|
|
belongs_to :user
|
|
|
|
validates_presence_of :name
|
|
validates_uniqueness_of :name, :scope => [:dmsf_folder_id, :project_id]
|
|
|
|
def self.project_root_folders(project)
|
|
find(:all, :conditions =>
|
|
["dmsf_folder_id is NULL and project_id = :project_id", {:project_id => project.id}], :order => "name ASC")
|
|
end
|
|
|
|
def self.create_from_params(project, parent_folder, params)
|
|
new_folder = DmsfFolder.new(params)
|
|
new_folder.project = project
|
|
new_folder.folder = parent_folder
|
|
new_folder.user = User.current
|
|
new_folder.save
|
|
new_folder
|
|
end
|
|
|
|
def dmsf_path
|
|
folder = self
|
|
path = []
|
|
while !folder.nil?
|
|
path.unshift(folder)
|
|
folder = folder.folder
|
|
end
|
|
path
|
|
end
|
|
|
|
def dmsf_path_str
|
|
path = self.dmsf_path
|
|
string_path = path.map { |element| element.name }
|
|
string_path.join("/")
|
|
end
|
|
|
|
def notify?
|
|
return true if self.notification
|
|
return true if folder && folder.notify?
|
|
return false
|
|
end
|
|
|
|
def notify_deactivate
|
|
self.notification = false
|
|
self.save!
|
|
end
|
|
|
|
def notify_activate
|
|
self.notification = true
|
|
self.save!
|
|
end
|
|
|
|
end
|
|
|