Browse Source
[FIX] Don't remove uid field from wkf_instance, which is written in
[FIX] Don't remove uid field from wkf_instance, which is written in
raw SQL query (but never read afterwards). Workaround for lp:1277899 [FIX] Preserve dangling workflow table which is in use [RFR] Group models per table when detecting columns to purge to prevent problems with models sharing the same table [ADD] Allow purging of dangling data entries [FIX] Data purging now working [IMP] Docstrings [FIX] Label [FIX] Catch attempt to unlink field from nonexisting model [RFR] Flake8pull/1009/head
Stefan Rijnhart
11 years ago
committed by
Holger Brunn
No known key found for this signature in database
GPG Key ID: 1C9760FECA3AE18
10 changed files with 211 additions and 29 deletions
-
5database_cleanup/__openerp__.py
-
1database_cleanup/model/__init__.py
-
43database_cleanup/model/purge_columns.py
-
106database_cleanup/model/purge_data.py
-
19database_cleanup/model/purge_models.py
-
2database_cleanup/model/purge_modules.py
-
17database_cleanup/model/purge_tables.py
-
1database_cleanup/model/purge_wizard.py
-
9database_cleanup/view/menu.xml
-
37database_cleanup/view/purge_data.xml
@ -0,0 +1,106 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# OpenERP, Open Source Management Solution |
|||
# This module copyright (C) 2014 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.osv import orm, fields |
|||
from openerp.tools.translate import _ |
|||
|
|||
|
|||
class CleanupPurgeLineData(orm.TransientModel): |
|||
_inherit = 'cleanup.purge.line' |
|||
_name = 'cleanup.purge.line.data' |
|||
|
|||
_columns = { |
|||
'data_id': fields.many2one( |
|||
'ir.model.data', 'Data entry', |
|||
ondelete='SET NULL'), |
|||
'wizard_id': fields.many2one( |
|||
'cleanup.purge.wizard.data', 'Purge Wizard', readonly=True), |
|||
} |
|||
|
|||
def purge(self, cr, uid, ids, context=None): |
|||
""" |
|||
Unlink data entries upon manual confirmation. |
|||
""" |
|||
data_ids = [] |
|||
for line in self.browse(cr, uid, ids, context=context): |
|||
if line.purged or not line.data_id: |
|||
continue |
|||
data_ids.append(line.data_id.id) |
|||
self.logger.info('Purging data entry: %s', line.name) |
|||
self.pool['ir.model.data'].unlink(cr, uid, data_ids, context=context) |
|||
return self.write(cr, uid, ids, {'purged': True}, context=context) |
|||
|
|||
|
|||
class CleanupPurgeWizardData(orm.TransientModel): |
|||
_inherit = 'cleanup.purge.wizard' |
|||
_name = 'cleanup.purge.wizard.data' |
|||
|
|||
def default_get(self, cr, uid, fields, context=None): |
|||
res = super(CleanupPurgeWizardData, self).default_get( |
|||
cr, uid, fields, context=context) |
|||
if 'name' in fields: |
|||
res['name'] = _('Purge data') |
|||
return res |
|||
|
|||
def find(self, cr, uid, context=None): |
|||
""" |
|||
Collect all rows from ir_model_data that refer |
|||
to a nonexisting model, or to a nonexisting |
|||
row in the model's table. |
|||
""" |
|||
res = [] |
|||
data_pool = self.pool['ir.model.data'] |
|||
data_ids = [] |
|||
unknown_models = [] |
|||
cr.execute("""SELECT DISTINCT(model) FROM ir_model_data""") |
|||
for (model,) in cr.fetchall(): |
|||
if not model: |
|||
continue |
|||
if not self.pool.get(model): |
|||
unknown_models.append(model) |
|||
continue |
|||
cr.execute( |
|||
""" |
|||
SELECT id FROM ir_model_data |
|||
WHERE model = %%s |
|||
AND res_id IS NOT NULL |
|||
AND res_id NOT IN ( |
|||
SELECT id FROM %s) |
|||
""" % self.pool[model]._table, (model,)) |
|||
data_ids += [data_row[0] for data_row in cr.fetchall()] |
|||
data_ids += data_pool.search( |
|||
cr, uid, [('model', 'in', unknown_models)], context=context) |
|||
for data in data_pool.browse(cr, uid, data_ids, context=context): |
|||
res.append((0, 0, { |
|||
'data_id': data.id, |
|||
'name': "%s.%s, object of type %s" % ( |
|||
data.module, data.name, data.model)})) |
|||
if not res: |
|||
raise orm.except_orm( |
|||
_('Nothing to do'), |
|||
_('No orphaned data entries found')) |
|||
return res |
|||
|
|||
_columns = { |
|||
'purge_line_ids': fields.one2many( |
|||
'cleanup.purge.line.data', |
|||
'wizard_id', 'Data to purge'), |
|||
} |
@ -0,0 +1,37 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
<record id="purge_data_view" model="ir.ui.view"> |
|||
<field name="name">Form view for purge data wizard</field> |
|||
<field name="model">cleanup.purge.wizard.data</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="Purge data entries that refer to missing resources" version="7.0"> |
|||
<h1> |
|||
<field name="name"/> |
|||
</h1> |
|||
<button type="object" name="purge_all" string="Purge all data" /> |
|||
<field name="purge_line_ids" colspan="4" nolabel="1"> |
|||
<tree string="Purge data"> |
|||
<field name="name" /> |
|||
<field name="data_id" /> |
|||
<field name="purged" invisible="0" /> |
|||
<button type="object" name="purge" |
|||
icon="gtk-cancel" string="Purge this data" |
|||
attrs="{'invisible': [('purged', '=', True)]}"/> |
|||
</tree> |
|||
</field> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="action_purge_data" model="ir.actions.act_window"> |
|||
<field name="name">Purge data entries that refer to missing resources</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">cleanup.purge.wizard.data</field> |
|||
<field name="view_type">form</field> |
|||
<field name="view_mode">form</field> |
|||
</record> |
|||
|
|||
</data> |
|||
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue