31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class IrAttachment(models.Model):
|
|
_inherit = "ir.attachment"
|
|
|
|
voice_ids = fields.One2many("discuss.voice.metadata", "attachment_id")
|
|
|
|
def _bus_notification_target(self):
|
|
self.ensure_one()
|
|
if self.res_model == "discuss.channel" and self.res_id:
|
|
return self.env["discuss.channel"].browse(self.res_id)
|
|
guest = self.env["mail.guest"]._get_guest_from_context()
|
|
if self.env.user._is_public() and guest:
|
|
return guest
|
|
return super()._bus_notification_target()
|
|
|
|
def _attachment_format(self):
|
|
attachment_format = super()._attachment_format()
|
|
for a in attachment_format:
|
|
# sudo: discuss.voice.metadata - checking the existence of voice metadata for accessible attachments is fine
|
|
a["voice"] = bool(self.browse(a["id"]).with_prefetch(self._prefetch_ids).sudo().voice_ids)
|
|
return attachment_format
|
|
|
|
def _post_add_create(self, **kwargs):
|
|
super()._post_add_create()
|
|
if kwargs.get('voice'):
|
|
self.env["discuss.voice.metadata"].create([{"attachment_id": attachment.id} for attachment in self])
|