You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2018 Akretion
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
|
|
import logging
|
|
|
|
import openerp
|
|
from openerp import api, models
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class MailMessage(models.Model):
|
|
_inherit = "mail.message"
|
|
|
|
@api.multi
|
|
def batch_unlink(self):
|
|
with api.Environment.manage():
|
|
with openerp.registry(
|
|
self.env.cr.dbname).cursor() as new_cr:
|
|
new_env = api.Environment(new_cr, self.env.uid,
|
|
self.env.context)
|
|
self = self.with_env(new_env)
|
|
try:
|
|
while self:
|
|
batch_delete_messages = self[0:1000]
|
|
self -= batch_delete_messages
|
|
batch_delete_messages.unlink()
|
|
new_env.cr.commit()
|
|
except Exception as e:
|
|
_logger.exception(
|
|
"Failed to delete messages : %s", str(e))
|
|
|
|
# Call by cron
|
|
@api.model
|
|
def autovacuum_mail_message(self):
|
|
rules = self.env['message.vacuum.rule'].search([])
|
|
for rule in rules:
|
|
domain = rule.get_message_domain()
|
|
messages = self.search(domain)
|
|
messages.batch_unlink()
|