45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Redmine plugin for Document Management System "Features"
|
|
#
|
|
# Copyright © 2011 Vít Jonáš <vit.jonas@gmail.com>
|
|
# Copyright © 2012 Daniel Munn <dan.munn@munnster.co.uk>
|
|
# Copyright © 2011-23 Karel Pičman <karel.picman@kontron.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.
|
|
|
|
require('xapian_easy_search/base_mapper') if defined?(EasyExtensions)
|
|
|
|
module XapianEasySearch
|
|
# DmsfFolder mapper
|
|
class DmsfFolderMapper < XapianEasySearch::BaseMapper
|
|
class << self
|
|
def default_index_options
|
|
super.merge title: :title, updated_at: :updated_at, content: :description
|
|
end
|
|
|
|
def extend_query_filter
|
|
proc do |query|
|
|
# TODO: we filter the results with all folders visible for the user. It's the worst way how to filter them.
|
|
ids = DmsfFolder.visible.ids
|
|
Xapian::Query.new Xapian::Query::OP_AND, query, boolean_filter_query(:source_id, ids)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
XapianEasySearch::DmsfFolderMapper.attach if Redmine::Plugin.installed?('easy_extensions')
|