1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
from odoo.addons.mail.tools.discuss import Store
class IrAttachment(models.Model):
_inherit = "ir.attachment"
voice_ids = fields.One2many("discuss.voice.metadata", "attachment_id")
def _bus_channel(self):
self.ensure_one()
if self.res_model == "discuss.channel" and self.res_id:
return self.env["discuss.channel"].browse(self.res_id)._bus_channel()
guest = self.env["mail.guest"]._get_guest_from_context()
if self.env.user._is_public() and guest:
return guest._bus_channel()
return super()._bus_channel()
def _to_store(self, store: Store, **kwargs):
super()._to_store(store, **kwargs)
for attachment in self:
# TODO master: make a real computed / inverse field and stop propagating
# kwargs through hook methods
# sudo: discuss.voice.metadata - checking the existence of voice metadata for accessible attachments is fine
store.add(attachment, {"voice": bool(attachment.sudo().voice_ids)})
def _post_add_create(self, **kwargs):
super()._post_add_create(**kwargs)
if kwargs.get('voice'):
self._set_voice_metadata()
def _set_voice_metadata(self):
self.env["discuss.voice.metadata"].create([{"attachment_id": att.id} for att in self])
|