server-tools/database_cleanup/models/purge_menus.py

69 lines
2.2 KiB
Python

# Copyright 2014-2016 Therp BV <http://therp.nl>
# Copyright 2021 Camptocamp <https://camptocamp.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
# pylint: disable=consider-merging-classes-inherited
from odoo import _, api, fields, models
from odoo.exceptions import UserError
class CleanupPurgeLineMenu(models.TransientModel):
_inherit = "cleanup.purge.line"
_name = "cleanup.purge.line.menu"
_description = "Cleanup Purge Line Menu"
wizard_id = fields.Many2one(
"cleanup.purge.wizard.menu", "Purge Wizard", readonly=True
)
menu_id = fields.Many2one("ir.ui.menu", "Menu entry")
def purge(self):
"""Unlink menu entries upon manual confirmation."""
if self:
objs = self
else:
objs = self.env["cleanup.purge.line.menu"].browse(
self._context.get("active_ids")
)
to_unlink = objs.filtered(lambda x: not x.purged and x.menu_id)
self.logger.info("Purging menu entries: %s", to_unlink.mapped("name"))
to_unlink.mapped("menu_id").unlink()
return to_unlink.write({"purged": True})
class CleanupPurgeWizardMenu(models.TransientModel):
_inherit = "cleanup.purge.wizard"
_name = "cleanup.purge.wizard.menu"
_description = "Purge menus"
@api.model
def find(self):
"""
Search for models that cannot be instantiated.
"""
res = []
for menu in (
self.env["ir.ui.menu"]
.with_context(active_test=False)
.search([("action", "!=", False)])
):
if menu.action.type != "ir.actions.act_window":
continue
if menu.action.res_model and menu.action.res_model not in self.env:
res.append(
(
0,
0,
{
"name": menu.complete_name,
"menu_id": menu.id,
},
)
)
if not res:
raise UserError(_("No dangling menu entries found"))
return res
purge_line_ids = fields.One2many(
"cleanup.purge.line.menu", "wizard_id", "Menus to purge"
)