mirror of
https://github.com/OCA/knowledge.git
synced 2025-12-22 13:22:19 -06:00
[ADD] document_reindex
This commit is contained in:
22
document_reindex/models/__init__.py
Normal file
22
document_reindex/models/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# OpenERP, Open Source Management Solution
|
||||
# This module copyright (C) 2015 Therp BV <http://therp.nl>.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from . import ir_attachment
|
||||
from . import knowledge_config_settings
|
||||
50
document_reindex/models/ir_attachment.py
Normal file
50
document_reindex/models/ir_attachment.py
Normal file
@@ -0,0 +1,50 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# OpenERP, Open Source Management Solution
|
||||
# This module copyright (C) 2015 Therp BV (<http://therp.nl>).
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from openerp import models, fields, api
|
||||
|
||||
|
||||
class IrAttachment(models.Model):
|
||||
_inherit = 'ir.attachment'
|
||||
|
||||
@api.multi
|
||||
def document_reindex(self):
|
||||
for this in self:
|
||||
if not this.datas:
|
||||
continue
|
||||
mimetype, indexed_content = this._index(
|
||||
this.datas.decode('base64'), this.datas_fname, this.file_type)
|
||||
this.write({
|
||||
'file_type': mimetype,
|
||||
'index_content': indexed_content,
|
||||
})
|
||||
|
||||
@api.model
|
||||
def document_reindex_all(self):
|
||||
self.search([('datas', '!=', False)]).document_reindex()
|
||||
|
||||
@api.model
|
||||
def document_reindex_unindexed(self):
|
||||
self.search([
|
||||
('datas', '!=', False),
|
||||
'|',
|
||||
('index_content', '=', False),
|
||||
('index_content', '=', ''),
|
||||
]).document_reindex()
|
||||
43
document_reindex/models/knowledge_config_settings.py
Normal file
43
document_reindex/models/knowledge_config_settings.py
Normal file
@@ -0,0 +1,43 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# OpenERP, Open Source Management Solution
|
||||
# This module copyright (C) 2015 Therp BV (<http://therp.nl>).
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from openerp import models, fields, api
|
||||
|
||||
|
||||
class KnowledgeConfigSettings(models.TransientModel):
|
||||
_inherit = 'knowledge.config.settings'
|
||||
|
||||
document_reindex_all = fields.Boolean('Reindex all documents')
|
||||
document_reindex_unindexed = fields.Boolean('Reindex unindexed documents')
|
||||
|
||||
@api.one
|
||||
def set_document_reindex(self):
|
||||
if self.document_reindex_all:
|
||||
self.document_reindex_create_cronjob('document_reindex_all')
|
||||
if self.document_reindex_unindexed:
|
||||
self.document_reindex_create_cronjob('document_reindex_unindexed')
|
||||
|
||||
@api.multi
|
||||
def document_reindex_create_cronjob(self, function):
|
||||
self.env['ir.cron'].create({
|
||||
'name': function,
|
||||
'model': 'ir.attachment',
|
||||
'function': function,
|
||||
})
|
||||
Reference in New Issue
Block a user