66 lines
2.4 KiB
Python
Executable File
66 lines
2.4 KiB
Python
Executable File
# -*- coding: utf-8 -*-
|
|
# (C) 2020 Smile (<http://www.smile.fr>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
import os
|
|
import time
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class SmileLog(models.Model):
|
|
_name = 'smile.log'
|
|
_description = 'Smile Logs'
|
|
_rec_name = 'message'
|
|
_log_access = False
|
|
_order = 'log_date desc'
|
|
|
|
@api.depends('log_uid')
|
|
def _get_user_name(self):
|
|
for log in self:
|
|
user = self.env['res.users'].browse(log.log_uid)
|
|
if user.exists():
|
|
log.log_user_name = "%s [%s]" % (user.name, log.log_uid)
|
|
else:
|
|
log.log_user_name = "[%s]" % log.log_uid
|
|
|
|
@api.depends('res_id')
|
|
def _get_res_name(self):
|
|
for log in self:
|
|
log.log_res_name = ""
|
|
if log.model_name:
|
|
res = self.env[log.model_name].browse(log.res_id)
|
|
infos = res.name_get()
|
|
if infos:
|
|
log.log_res_name = infos[0][1]
|
|
|
|
log_date = fields.Datetime('Date', readonly=True)
|
|
log_uid = fields.Integer('User', readonly=True)
|
|
log_user_name = fields.Char(
|
|
string='User', size=256, compute='_get_user_name')
|
|
log_res_name = fields.Char(
|
|
string='Ressource name', size=256, compute='_get_res_name')
|
|
model_name = fields.Char('Model name', size=64, readonly=True, index=True)
|
|
res_id = fields.Integer(
|
|
'Ressource id', readonly=True, group_operator="count", index=True)
|
|
pid = fields.Integer(readonly=True, group_operator="count")
|
|
level = fields.Char(size=16, readonly=True)
|
|
message = fields.Text('Message', readonly=True)
|
|
|
|
@api.model
|
|
def archive_and_delete_old_logs(self, nb_days=90, archive_path=''):
|
|
# Thanks to transaction isolation, the COPY and DELETE will find
|
|
# the same smile_log records
|
|
if archive_path:
|
|
file_name = time.strftime("%Y%m%d_%H%M%S.log.csv")
|
|
file_path = os.path.join(archive_path, file_name)
|
|
self.env.cr.execute("""COPY (SELECT * FROM smile_log
|
|
WHERE log_date + interval'%s days' < NOW() at time zone 'UTC')
|
|
TO %s
|
|
WITH (FORMAT csv, ENCODING utf8)""", (nb_days, file_path,))
|
|
self.env.cr.execute(
|
|
"DELETE FROM smile_log "
|
|
"WHERE log_date + interval '%s days' < NOW() at time zone 'UTC'",
|
|
(nb_days,))
|
|
return True
|