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.

117 lines
4.3 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. cr.execute(
  59. "UPDATE ir_attachment SET res_model = FALSE "
  60. "WHERE id in %s",
  61. (tuple(attachment_ids), ))
  62. if attachment_ids:
  63. attachment_pool.write(
  64. cr, uid, attachment_ids, {'res_model': False},
  65. context=context)
  66. constraint_ids = constraint_pool.search(
  67. cr, uid, [('model', '=', line.name)], context=context)
  68. if constraint_ids:
  69. constraint_pool.unlink(
  70. cr, uid, constraint_ids, context=context)
  71. model_pool.unlink(cr, uid, [row[0]], context=local_context)
  72. line.write({'purged': True})
  73. cr.commit()
  74. return True
  75. class CleanupPurgeWizardModel(orm.TransientModel):
  76. _inherit = 'cleanup.purge.wizard'
  77. _name = 'cleanup.purge.wizard.model'
  78. def default_get(self, cr, uid, fields, context=None):
  79. res = super(CleanupPurgeWizardModel, self).default_get(
  80. cr, uid, fields, context=context)
  81. if 'name' in fields:
  82. res['name'] = _('Purge models')
  83. return res
  84. def find(self, cr, uid, context=None):
  85. """
  86. Search for models that cannot be instantiated.
  87. """
  88. res = []
  89. cr.execute("SELECT model from ir_model")
  90. for (model,) in cr.fetchall():
  91. if not self.pool.get(model):
  92. res.append((0, 0, {'name': model}))
  93. if not res:
  94. raise orm.except_orm(
  95. _('Nothing to do'),
  96. _('No orphaned models found'))
  97. return res
  98. _columns = {
  99. 'purge_line_ids': fields.one2many(
  100. 'cleanup.purge.line.model',
  101. 'wizard_id', 'Models to purge'),
  102. }