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.

115 lines
4.2 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # This module copyright (C) 2014 Therp BV (<http://therp.nl>).
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. from openerp.osv import orm, fields
  22. from openerp.tools.translate import _
  23. from openerp.addons.base.ir.ir_model import MODULE_UNINSTALL_FLAG
  24. class IrModel(orm.Model):
  25. _inherit = 'ir.model'
  26. def _drop_table(self, cr, uid, ids, context=None):
  27. # Allow to skip this step during model unlink
  28. # The super method crashes if the model cannot be instantiated
  29. if context and context.get('no_drop_table'):
  30. return True
  31. return super(IrModel, self)._drop_table(cr, uid, ids, context=context)
  32. class CleanupPurgeLineModel(orm.TransientModel):
  33. _inherit = 'cleanup.purge.line'
  34. _name = 'cleanup.purge.line.model'
  35. _columns = {
  36. 'wizard_id': fields.many2one(
  37. 'cleanup.purge.wizard.model', 'Purge Wizard', readonly=True),
  38. }
  39. def purge(self, cr, uid, ids, context=None):
  40. """
  41. Unlink models upon manual confirmation.
  42. """
  43. model_pool = self.pool['ir.model']
  44. attachment_pool = self.pool['ir.attachment']
  45. constraint_pool = self.pool['ir.model.constraint']
  46. local_context=(context or {}).copy()
  47. local_context.update({
  48. MODULE_UNINSTALL_FLAG: True,
  49. 'no_drop_table': True,
  50. })
  51. for line in self.browse(cr, uid, ids, context=context):
  52. cr.execute(
  53. "SELECT id, model from ir_model WHERE model = %s",
  54. (line.name,))
  55. row = cr.fetchone()
  56. if row:
  57. self.logger.info('Purging model %s', row[1])
  58. attachment_ids = attachment_pool.search(
  59. cr, uid, [('res_model', '=', line.name)], context=context)
  60. if attachment_ids:
  61. attachment_pool.write(
  62. cr, uid, attachment_ids, {'res_model': False},
  63. context=context)
  64. constraint_ids = constraint_pool.search(
  65. cr, uid, [('model', '=', line.name)], context=context)
  66. if constraint_ids:
  67. constraint_pool.unlink(
  68. cr, uid, constraint_ids, context=context)
  69. model_pool.unlink(cr, uid, [row[0]], context=local_context)
  70. line.write({'purged': True})
  71. cr.commit()
  72. return True
  73. class CleanupPurgeWizardModel(orm.TransientModel):
  74. _inherit = 'cleanup.purge.wizard'
  75. _name = 'cleanup.purge.wizard.model'
  76. def default_get(self, cr, uid, fields, context=None):
  77. res = super(CleanupPurgeWizardModel, self).default_get(
  78. cr, uid, fields, context=context)
  79. if 'name' in fields:
  80. res['name'] = _('Purge models')
  81. return res
  82. def find(self, cr, uid, context=None):
  83. """
  84. Search for models that cannot be instantiated.
  85. """
  86. res = []
  87. cr.execute("SELECT model from ir_model")
  88. for (model,) in cr.fetchall():
  89. if not self.pool.get(model):
  90. res.append((0, 0, {'name': model}))
  91. if not res:
  92. raise orm.except_orm(
  93. _('Nothing to do'),
  94. _('No orphaned models found'))
  95. return res
  96. _columns = {
  97. 'purge_line_ids': fields.one2many(
  98. 'cleanup.purge.line.model',
  99. 'wizard_id', 'Models to purge'),
  100. }