# Part of Odoo. See LICENSE file for full copyright and licensing details. import base64 from collections import defaultdict from hashlib import sha512 from secrets import choice from markupsafe import Markup from datetime import timedelta from odoo import _, api, fields, models, tools, Command from odoo.addons.base.models.avatar_mixin import get_hsl_from_seed from odoo.addons.base.models.ir_mail_server import MailDeliveryException from odoo.addons.mail.tools.discuss import Store from odoo.addons.mail.tools.web_push import PUSH_NOTIFICATION_TYPE from odoo.exceptions import AccessError, UserError, ValidationError from odoo.fields import Domain from odoo.tools import format_list, email_normalize, html_escape from odoo.tools.misc import hash_sign, OrderedSet from odoo.tools.sql import SQL channel_avatar = ''' ''' group_avatar = ''' ''' def is_channel(channel): """Predicate to filter channels for which the channel type is 'channel'. :returns: Whether the channel type is 'channel'. :rtype: bool """ return channel.channel_type == "channel" def is_channel_or_group(channel): """Predicate to filter channels for which the channel type is either 'channel' or 'group'. :returns: Whether the channel type is 'channel' or 'group'. :rtype: bool """ return channel.channel_type in ("channel", "group") class DiscussChannel(models.Model): _name = 'discuss.channel' _description = 'Discussion Channel' _mail_flat_thread = False _mail_post_access = 'read' _inherit = ["mail.thread", "bus.listener.mixin"] MAX_BOUNCE_LIMIT = 10 @api.model def _generate_random_token(self): # Built to be shared on invitation link. It uses non-ambiguous characters and it is of a # reasonable length: enough to avoid brute force, but short enough to be shareable easily. # This token should not contain "mail.guest"._cookie_separator value. return ''.join(choice('abcdefghijkmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ23456789') for _i in range(10)) # description name = fields.Char('Name', required=True) active = fields.Boolean(default=True, help="Set active to false to hide the channel without removing it.") channel_type = fields.Selection([ ('chat', 'Chat'), ('channel', 'Channel'), ('group', 'Group')], string='Channel Type', required=True, default='channel', readonly=True, help="Chat is private and unique between 2 persons. Group is private among invited persons. Channel can be freely joined (depending on its configuration).") is_editable = fields.Boolean('Is Editable', compute='_compute_is_editable') default_display_mode = fields.Selection(string="Default Display Mode", selection=[('video_full_screen', "Full screen video")], help="Determines how the channel will be displayed by default when opening it from its invitation link. No value means display text (no voice/video).") description = fields.Text('Description') image_128 = fields.Image("Image", max_width=128, max_height=128) avatar_128 = fields.Image("Avatar", max_width=128, max_height=128, compute='_compute_avatar_128') avatar_cache_key = fields.Char(compute="_compute_avatar_cache_key") channel_partner_ids = fields.Many2many( 'res.partner', string='Partners', compute='_compute_channel_partner_ids', inverse='_inverse_channel_partner_ids', search='_search_channel_partner_ids') channel_member_ids = fields.One2many('discuss.channel.member', 'channel_id', string='Members') parent_channel_id = fields.Many2one("discuss.channel", help="Parent channel", ondelete="cascade", index=True, bypass_search_access=True, readonly=True) sub_channel_ids = fields.One2many("discuss.channel", "parent_channel_id", string="Sub Channels", readonly=True) from_message_id = fields.Many2one("mail.message", help="The message the channel was created from.", readonly=True) pinned_message_ids = fields.One2many('mail.message', 'res_id', domain=[('model', '=', 'discuss.channel'), ('pinned_at', '!=', False)], string='Pinned Messages') sfu_channel_uuid = fields.Char(groups="base.group_system") sfu_server_url = fields.Char(groups="base.group_system") rtc_session_ids = fields.One2many('discuss.channel.rtc.session', 'channel_id', groups="base.group_system") call_history_ids = fields.One2many("discuss.call.history", "channel_id") is_member = fields.Boolean("Is Member", compute="_compute_is_member", search="_search_is_member", compute_sudo=True) # sudo: discuss.channel - sudo for performance, self member can be accessed on accessible channel self_member_id = fields.Many2one("discuss.channel.member", compute="_compute_self_member_id", compute_sudo=True) # sudo: discuss.channel - sudo for performance, invited members can be accessed on accessible channel invited_member_ids = fields.One2many("discuss.channel.member", compute="_compute_invited_member_ids", compute_sudo=True) member_count = fields.Integer(string="Member Count", compute='_compute_member_count', compute_sudo=True) message_count = fields.Integer("# Messages", readonly=True, compute="_compute_message_count") last_interest_dt = fields.Datetime( "Last Interest", default=lambda self: fields.Datetime.now() - timedelta(seconds=1), index=True, help="Contains the date and time of the last interesting event that happened in this channel. This updates itself when new message posted.", ) group_ids = fields.Many2many( 'res.groups', string='Auto Subscription', help="Members of those groups will automatically added as followers. " "Note that they will be able to manage their subscription manually " "if necessary.") # access uuid = fields.Char('UUID', size=50, default=_generate_random_token, copy=False) group_public_id = fields.Many2one('res.groups', string='Authorized Group', compute='_compute_group_public_id', recursive=True, readonly=False, store=True) invitation_url = fields.Char('Invitation URL', compute='_compute_invitation_url') channel_name_member_ids = fields.One2many( "discuss.channel.member", compute="_compute_channel_name_member_ids", help="Members from which the channel name is computed when the name field is empty.", ) _from_message_id_unique = models.Constraint( 'UNIQUE(from_message_id)', 'Messages can only be linked to one sub-channel', ) _uuid_unique = models.Constraint( 'UNIQUE(uuid)', 'The channel UUID must be unique', ) _group_public_id_check = models.Constraint( "CHECK (channel_type = 'channel' OR group_public_id IS NULL)", 'Group authorization and group auto-subscription are only supported on channels.', ) # CONSTRAINTS @api.constrains("from_message_id") def _constraint_from_message_id(self): # sudo: discuss.channel - skipping ACL for constraint, more performant and no sensitive information is leaked if failing_channels := self.sudo().filtered( lambda c: c.from_message_id and ( c.from_message_id.res_id not in [c.parent_channel_id.id] + c.parent_channel_id.sub_channel_ids.ids or c.from_message_id.model != "discuss.channel" ) ): raise ValidationError( _( "Cannot create %(channels)s: initial message should belong to parent channel or one of its sub-channels.", channels=failing_channels.mapped("name"), ) ) @api.constrains("parent_channel_id") def _constraint_parent_channel_id(self): # sudo: discuss.channel - skipping ACL for constraint, more performant and no sensitive information is leaked if failing_channels := self.sudo().filtered( lambda c: c.parent_channel_id and ( c.parent_channel_id.parent_channel_id or c.parent_channel_id.channel_type not in ["channel", "group"] or c.parent_channel_id.channel_type != c.channel_type ) ): raise ValidationError( _( "Cannot create %(channels)s: parent should not be a sub-channel and should be of type 'channel' or 'group'. The sub-channel should have the same type as the parent.", channels=failing_channels.mapped("name"), ), ) @api.constrains('channel_member_ids') def _constraint_partners_chat(self): # sudo: discuss.channel - skipping ACL for constraint, more performant and no sensitive information is leaked for ch in self.sudo().filtered(lambda ch: ch.channel_type == 'chat'): if len(ch.channel_member_ids) > 2: raise ValidationError(_("A channel of type 'chat' cannot have more than two users.")) @api.constrains('group_public_id', 'group_ids') def _constraint_group_id_channel(self): # sudo: discuss.channel - skipping ACL for constraint, more performant and no sensitive information is leaked failing_channels = self.sudo().filtered(lambda channel: channel.channel_type != 'channel' and (channel.group_public_id or channel.group_ids)) if failing_channels: raise ValidationError(_("For %(channels)s, channel_type should be 'channel' to have the group-based authorization or group auto-subscription.", channels=', '.join([ch.name for ch in failing_channels]))) # COMPUTE / INVERSE @api.depends("channel_name_member_ids", "name") def _compute_display_name(self): for channel in self: if channel.name: channel.display_name = channel.name continue parts = channel.channel_name_member_ids.mapped( lambda m: m.partner_id.name or m.guest_id.name ) if channel.member_count > 3: remaining = channel.member_count - 3 parts.append( self.env._("1 other") if remaining == 1 else self.env._("%s others", remaining) ) channel.display_name = format_list(self.env, parts) @api.depends("channel_member_ids") def _compute_channel_name_member_ids(self): to_compute = self.filtered( lambda c: c.channel_type in self._member_based_naming_channel_types() ) (self - to_compute).channel_name_member_ids = False if not to_compute: return self.env.cr.execute(""" SELECT channel.id, member.id FROM discuss_channel channel JOIN LATERAL ( SELECT id FROM discuss_channel_member M WHERE M.channel_id = channel.id ORDER BY id LIMIT 3 ) as member ON TRUE WHERE channel.id IN %s """, (tuple(to_compute.ids),)) channel_id_to_member_ids = defaultdict(list) for channel_id, member_id in self.env.cr.fetchall(): channel_id_to_member_ids[channel_id].append(member_id) for channel in self: channel.channel_name_member_ids = channel_id_to_member_ids.get(channel.id) @api.depends("channel_type", "is_member", "group_public_id") @api.depends_context("uid") def _compute_is_editable(self): for channel in self: channel.is_editable = channel.has_access("write") @api.depends('channel_type', 'image_128', 'uuid') def _compute_avatar_128(self): for record in self: record.avatar_128 = record.image_128 or record._generate_avatar() @api.depends('avatar_128') def _compute_avatar_cache_key(self): for channel in self: if not channel.avatar_128: channel.avatar_cache_key = 'no-avatar' else: channel.avatar_cache_key = sha512(channel.avatar_128).hexdigest() def _generate_avatar(self): if self.channel_type not in ('channel', 'group'): return False avatar = group_avatar if self.channel_type == 'group' else channel_avatar bgcolor = get_hsl_from_seed(self.uuid) avatar = avatar.replace('fill="#875a7b"', f'fill="{bgcolor}"') return base64.b64encode(avatar.encode()) @api.depends('channel_member_ids.partner_id') def _compute_channel_partner_ids(self): for channel in self: channel.channel_partner_ids = channel.channel_member_ids.partner_id def _inverse_channel_partner_ids(self): new_members = [] outdated = self.env['discuss.channel.member'] for channel in self: current_members = channel.channel_member_ids partners = channel.channel_partner_ids partners_new = partners - current_members.partner_id new_members += [{ 'channel_id': channel.id, 'partner_id': partner.id, } for partner in partners_new] outdated += current_members.filtered(lambda m: m.partner_id not in partners) if new_members: self.env['discuss.channel.member'].create(new_members) if outdated: outdated.unlink() def _search_channel_partner_ids(self, operator, operand): return [('channel_member_ids', 'any', [('partner_id', operator, operand)])] @api.depends_context('uid', 'guest') @api.depends('channel_member_ids') def _compute_is_member(self): for channel in self: channel.is_member = bool(channel.self_member_id) def _search_is_member(self, operator, operand): if operator != 'in': return NotImplemented # Separate query to fetch candidate channels because the sub-select that _search would # generate leads psql query plan to take bad decisions. When candidate ids are explicitly # given it doesn't need to make (incorrect) guess, at the cost of one extra but fast query. # It is expected to return hundreds of channels, a thousand at most, which is acceptable. # A "join" would be ideal, but the ORM is currently not able to generate it from the domain. current_partner, current_guest = self.env["res.partner"]._get_current_persona() if current_guest: # sudo: discuss.channel - sudo for performance, just checking existence channels = current_guest.sudo().channel_ids elif current_partner: # sudo: discuss.channel - sudo for performance, just checking existence channels = current_partner.sudo().channel_ids else: channels = self.env["discuss.channel"] return [('id', 'in', channels.ids)] @api.depends_context("uid", "guest") @api.depends("channel_member_ids") def _compute_self_member_id(self): member_by_channel = { channel: self.env["discuss.channel.member"].browse(member_id) for channel, member_id in self.env["discuss.channel.member"]._read_group( [("channel_id", "in", self.ids), ("is_self", "=", True)], ["channel_id"], ["id:max"] ) } for channel in self: channel.self_member_id = member_by_channel.get(channel) @api.depends("channel_member_ids.rtc_inviting_session_id") def _compute_invited_member_ids(self): members_by_channel = { channel: self.env["discuss.channel.member"].browse(member_ids) for channel, member_ids in self.env["discuss.channel.member"]._read_group( [("channel_id", "in", self.ids), ("rtc_inviting_session_id", "!=", False)], ["channel_id"], ["id:array_agg"], ) } for channel in self: channel.invited_member_ids = members_by_channel.get(channel) @api.depends('channel_member_ids') def _compute_member_count(self): read_group_res = self.env['discuss.channel.member']._read_group(domain=[('channel_id', 'in', self.ids)], groupby=['channel_id'], aggregates=['__count']) member_count_by_channel_id = {channel.id: count for channel, count in read_group_res} for channel in self: channel.member_count = member_count_by_channel_id.get(channel.id, 0) @api.depends("message_ids") def _compute_message_count(self): read_group_res = self.env["mail.message"]._read_group( domain=[ ("model", "=", "discuss.channel"), ("res_id", "in", self.ids), ("message_type", "not in", ["user_notification", "notification"]) ], groupby=["res_id"], aggregates=["__count"] ) message_count_by_channel_id = dict(read_group_res) for channel in self: channel.message_count = message_count_by_channel_id.get(channel.id, 0) @api.depends("channel_type", "parent_channel_id.group_public_id") def _compute_group_public_id(self): channels = self.filtered(lambda channel: channel.channel_type == "channel") for channel in channels: if channel.parent_channel_id: channel.group_public_id = channel.parent_channel_id.group_public_id elif not channel.group_public_id: channel.group_public_id = self.env.ref("base.group_user") (self - channels).group_public_id = None @api.depends('uuid') def _compute_invitation_url(self): for channel in self: channel.invitation_url = f"/chat/{channel.id}/{channel.uuid}" # ------------------------------------------------------------ # CRUD # ------------------------------------------------------------ @api.model def _get_allowed_channel_member_create_params(self): return ["partner_id", "guest_id", "unpin_dt", "last_interest_dt"] @api.model_create_multi def create(self, vals_list): for vals in vals_list: # find partners to add from partner_ids partner_ids_cmd = vals.get('channel_partner_ids') or [] if any(cmd[0] not in (4, 6) for cmd in partner_ids_cmd): raise ValidationError(_('Invalid value when creating a channel with members, only 4 or 6 are allowed.')) partner_ids = [cmd[1] for cmd in partner_ids_cmd if cmd[0] == 4] partner_ids += [cmd[2] for cmd in partner_ids_cmd if cmd[0] == 6] # find partners to add from channel_member_ids membership_ids_cmd = vals.get('channel_member_ids', []) for cmd in membership_ids_cmd: if cmd[0] != 0: raise ValidationError(_('Invalid value when creating a channel with memberships, only 0 is allowed.')) for field_name in cmd[2]: if field_name not in self._get_allowed_channel_member_create_params(): raise ValidationError( _( "Invalid field ā€œ%(field_name)sā€ when creating a channel with members.", field_name=field_name, ) ) membership_pids = [ cmd[2]["partner_id"] for cmd in membership_ids_cmd if cmd[0] == 0 and "partner_id" in cmd[2] ] partner_ids_to_add = partner_ids # always add current user to new channel to have right values for # is_pinned + ensure they have rights to see channel if not self.env.context.get('install_mode') and not self.env.user._is_public(): partner_ids_to_add = list(set(partner_ids + [self.env.user.partner_id.id])) vals['channel_member_ids'] = membership_ids_cmd + [ (0, 0, {'partner_id': pid}) for pid in partner_ids_to_add if pid not in membership_pids ] # clean vals vals.pop('channel_partner_ids', False) # Create channel and alias channels = super(DiscussChannel, self.with_context(mail_create_bypass_create_check=self.env['discuss.channel.member']._bypass_create_check, mail_create_nolog=True, mail_create_nosubscribe=True)).create(vals_list) # pop the mail_create_bypass_create_check key to avoid leaking it outside of create) channels = channels.with_context(mail_create_bypass_create_check=None) channels._subscribe_users_automatically() if not self.env.context.get("install_mode") and not self.env.user._is_public(): Store(bus_channel=self.env.user).add(channels).bus_send() return channels @api.ondelete(at_uninstall=False) def _unlink_except_all_employee_channel(self): # Delete discuss.channel try: all_emp_group = self.env.ref('mail.channel_all_employees') except ValueError: all_emp_group = None if all_emp_group and all_emp_group in self: raise UserError(_('You cannot delete those groups, as the Whole Company group is required by other modules.')) for channel in self: channel._bus_send("discuss.channel/delete", {"id": channel.id}) def write(self, vals): if 'channel_type' in vals: failing_channels = self.filtered(lambda channel: channel.channel_type != vals.get('channel_type')) if failing_channels: raise UserError(_('Cannot change the channel type of: %(channel_names)s', channel_names=', '.join(failing_channels.mapped('name')))) if {"from_message_id", "parent_channel_id"} & set(vals): raise UserError( _( "Cannot change initial message nor parent channel of: %(channels)s.", channels=self.mapped("name"), ) ) if "group_public_id" in vals: if failing_channels := self.filtered(lambda channel: channel.parent_channel_id): raise UserError( self.env._( "Cannot change authorized group of sub-channel: %(channels)s.", channels=failing_channels.mapped("name"), ) ) def get_field_name(field_description): if isinstance(field_description, Store.Attr): return field_description.field_name return field_description def get_field_value(channel, field_description): if isinstance(field_description, Store.Attr): if field_description.predicate and not field_description.predicate(channel): return None if isinstance(field_description, Store.Relation): return field_description._get_value(channel).records if isinstance(field_description, Store.Attr): return field_description._get_value(channel) return channel[field_description] def get_vals(channel): return { subchannel: { get_field_name(field_description): ( get_field_value(channel, field_description), field_description, ) for field_description in field_descriptions } for subchannel, field_descriptions in self._sync_field_names().items() } old_vals = {channel: get_vals(channel) for channel in self} result = super().write(vals) for channel in self: new_subchannel_vals = get_vals(channel) for subchannel, values in new_subchannel_vals.items(): diff = [] for field_name, (value, field_description) in values.items(): if value != old_vals[channel][subchannel][field_name][0]: diff.append(field_description) if diff: Store( bus_channel=channel, bus_subchannel=subchannel, ).add(channel, diff).bus_send() if vals.get('group_ids'): self._subscribe_users_automatically() return result def _sync_field_names(self): # keys are bus subchannel names, values are lists of field names to sync res = defaultdict(list) res[None] += [ Store.Attr("avatar_cache_key", predicate=is_channel_or_group), "channel_type", "create_uid", "default_display_mode", Store.Attr("description", predicate=is_channel_or_group), Store.Many("group_ids", [], predicate=is_channel), Store.One("group_public_id", predicate=is_channel), "last_interest_dt", "member_count", "name", "uuid", ] return res # ------------------------------------------------------------ # MEMBERS MANAGEMENT # ------------------------------------------------------------ def _subscribe_users_automatically(self): if not (new_members_to_create := self._subscribe_users_automatically_get_members()): return to_create = [ {"channel_id": channel_id, "partner_id": partner_id} for channel_id in new_members_to_create for partner_id in new_members_to_create[channel_id] ] # sudo: discuss.channel.member - adding member of other users based on channel auto-subscribe new_members = self.env["discuss.channel.member"].sudo().create(to_create) notifications = defaultdict(lambda: self.env["discuss.channel.member"]) for member in new_members: bus_channel = member._bus_channel() notifications[bus_channel] |= member for bus_channel, members in notifications.items(): members = members.with_prefetch(new_members.ids) Store(bus_channel=bus_channel).add(members.channel_id).add( members, [ Store.One("channel_id", [], as_thread=True), *self.env["discuss.channel.member"]._to_store_persona(), "unpin_dt", ], ).bus_send() def _subscribe_users_automatically_get_members(self): """ Return new members per channel ID """ return dict( (channel.id, ((channel.group_ids.all_user_ids.partner_id.filtered(lambda p: p.active) - channel.channel_partner_ids).ids)) for channel in self ) def action_unfollow(self): self._action_unfollow(self.env.user.partner_id) def _action_unfollow(self, partner=None, guest=None, post_leave_message=True): self.ensure_one() if partner is None: partner = self.env["res.partner"] if guest is None: guest = self.env["mail.guest"] self.message_unsubscribe(partner.ids) member = self.env["discuss.channel.member"].search( [ ("channel_id", "=", self.id), ("partner_id", "=", partner.id) if partner else ("guest_id", "=", guest.id), ] ) custom_store = Store(bus_channel=member._bus_channel() or partner.main_user_id or guest) custom_store.add(self, {"close_chat_window": True, "isLocallyPinned": False}).bus_send() if not member: return if self.channel_type != "channel" and post_leave_message: notification = Markup('
%s
') % _( "left the channel" ) # sudo: mail.message - post as sudo since the user just unsubscribed from the channel member.channel_id.sudo().message_post( body=notification, subtype_xmlid="mail.mt_comment", author_id=partner.id ) member.unlink() Store(bus_channel=self).add( self, [ Store.Many("channel_member_ids", [], mode="DELETE", value=member), "member_count", ], ).bus_send() def add_members( self, partner_ids=None, guest_ids=None, invite_to_rtc_call=False, post_joined_message=True ): """ Adds the given partner_ids and guest_ids as member of self channels. """ return self._add_members( partners=self.env["res.partner"].browse(partner_ids or []).exists(), guests=self.env["mail.guest"].browse(guest_ids or []).exists(), invite_to_rtc_call=invite_to_rtc_call, post_joined_message=post_joined_message, ) def _add_members( self, *, guests=None, partners=None, users=None, create_member_params=None, invite_to_rtc_call=False, post_joined_message=True, inviting_partner=None, ): inviting_partner = inviting_partner or self.env["res.partner"] partners = partners or self.env["res.partner"] if users: partners |= users.partner_id guests = guests or self.env["mail.guest"] current_partner, current_guest = self.env["res.partner"]._get_current_persona() all_new_members = self.env["discuss.channel.member"] for channel in self: members_to_create = [] existing_members = self.env['discuss.channel.member'].search( Domain('channel_id', '=', channel.id) & (Domain('partner_id', 'in', partners.ids) | Domain('guest_id', 'in', guests.ids)) ) members_to_create += [{ **(create_member_params or {}), 'partner_id': partner.id, 'channel_id': channel.id, } for partner in partners - existing_members.partner_id] members_to_create += [{ **(create_member_params or {}), 'guest_id': guest.id, 'channel_id': channel.id, } for guest in guests - existing_members.guest_id] if channel.parent_channel_id and channel.parent_channel_id.has_access("write"): new_members = self.env["discuss.channel.member"].sudo().create(members_to_create) else: new_members = self.env["discuss.channel.member"].create(members_to_create) all_new_members += new_members for member in new_members: payload = { "channel_id": member.channel_id.id, "invite_to_rtc_call": invite_to_rtc_call, "data": Store(bus_channel=member._bus_channel()) .add(member.channel_id) .add(member, "unpin_dt") .get_result(), } if not member.is_self and not self.env.user._is_public(): payload["invited_by_user_id"] = self.env.user.id member._bus_send("discuss.channel/joined", payload) if channel.channel_type != "channel" and post_joined_message: notification = ( _("joined the channel") if member.is_self else _("invited %s to the channel", member._get_html_link(for_persona=True)) ) member.channel_id.message_post( author_id=inviting_partner.id or None, body=Markup('
%s
') % notification, message_type="notification", subtype_xmlid="mail.mt_comment", ) if new_members: Store(bus_channel=channel).add(channel, "member_count").add(new_members).bus_send() if existing_members and (bus_channel := current_partner.main_user_id or current_guest): # If the current user invited these members but they are already present, notify the current user about their existence as well. # In particular this fixes issues where the current user is not aware of its own member in the following case: # create channel from form view, and then join from discuss without refreshing the page. Store( bus_channel=bus_channel, ).add(channel, "member_count").add(existing_members).bus_send() if invite_to_rtc_call: for channel in self: current_channel_member = self.env['discuss.channel.member'].search([('channel_id', '=', channel.id), ('is_self', '=', True)]) # sudo: discuss.channel.rtc.session - reading rtc sessions of current user if current_channel_member and current_channel_member.sudo().rtc_session_ids: # sudo: discuss.channel.rtc.session - current user can invite new members in call current_channel_member.sudo()._rtc_invite_members(member_ids=new_members.ids) return all_new_members def invite_by_email(self, emails): """ Send channel invitation emails to a list of email addresses. Existing members' email addresses are ignored. :param emails: List of email addresses to invite. :type emails: list[str] """ if not self.env.user._is_internal() or not self.has_access("read"): raise AccessError(self.env._("You don't have access to invite users to this channel.")) if not self._allow_invite_by_email(): raise UserError( self.env._("Inviting by email is not allowed for this channel type (%s).") % self.channel_type ) eligible_emails = OrderedSet(norm for email in emails if email and (norm := email_normalize(email))) # Removing emails linked to members of this channel. member_domain = Domain("channel_id", "=", self.id) & Domain.OR( [ [(field, "=ilike", email)] for email in eligible_emails for field in ("guest_id.email", "partner_id.email") ], ) eligible_emails -= set( self.env["discuss.channel.member"] .search_fetch(member_domain, ["partner_id", "guest_id"]) .mapped(lambda m: email_normalize(m.partner_id.email or m.guest_id.email)) ) mail_body = Markup("

%s

") % self.env._( "%(user_name)s has invited you to the %(strong_start)s%(channel_name)s%(strong_end)s channel." ) % { "user_name": self.env.user.name, "channel_name": self.name, "strong_start": Markup(""), "strong_end": Markup(""), } to_create = [] for addr in eligible_emails: body = self.env["ir.qweb"]._render( "mail.discuss_channel_invitation_template", { "base_url": self.env["ir.config_parameter"].get_base_url(), "channel": self, "email_token": hash_sign(self.env(su=True), "mail.invite_email", addr), "mail_body": mail_body, "user": self.env.user, }, minimal_qcontext=True, ) to_create.append( { "body_html": body, "email_from": self.env.user.partner_id.email_formatted, "email_to": addr, "message_type": "user_notification", "model": "discuss.channel", "res_id": self.id, "subject": self.env._("%(author_name)s has invited you to a channel") % {"author_name": self.env.user.name}, }, ) if not to_create: return try: # sudo - mail.mail: internal users having read access to the channel can invite others. self.env["mail.mail"].sudo().create(to_create).send(raise_exception=True) except MailDeliveryException as mde: error_msg = self.env._( "There was an error when trying to deliver your Email, please check your configuration." ) if len(mde.args) == 2 and isinstance(mde.args[1], ConnectionRefusedError): error_msg = self.env._( "Could not contact the mail server, please check your outgoing email server configuration." ) raise UserError(error_msg) from mde # ------------------------------------------------------------ # RTC # ------------------------------------------------------------ def _get_call_notification_tag(self): self.ensure_one() return f"call_{self.id}" def _rtc_cancel_invitations(self, member_ids=None): """ Cancels the invitations of the RTC call from all invited members, if member_ids is provided, only the invitations of the specified members are canceled. :param list member_ids: list of the members ids from which the invitation has to be removed """ self.ensure_one() channel_member_domain = Domain([ ('channel_id', '=', self.id), ('rtc_inviting_session_id', '!=', False), ]) if member_ids: channel_member_domain &= Domain('id', 'in', member_ids) members = self.env['discuss.channel.member'].search(channel_member_domain) members.rtc_inviting_session_id = False if members: Store(bus_channel=self).add( self, { "invited_member_ids": Store.Many( members, [ Store.One("channel_id", [], as_thread=True), *self.env["discuss.channel.member"]._to_store_persona("avatar_card"), ], mode="DELETE", ), }, ).bus_send() devices, private_key, public_key = self._web_push_get_partners_parameters(members.partner_id.ids) if devices: self._web_push_send_notification(devices, private_key, public_key, payload={ "title": "", "options": { "data": { "type": PUSH_NOTIFICATION_TYPE.CANCEL }, "tag": self._get_call_notification_tag(), } }) # ------------------------------------------------------------ # MAILING # ------------------------------------------------------------ def _notify_get_recipients(self, message, msg_vals=False, **kwargs): # Override recipients computation as channel is not a standard # mail.thread document. Indeed there are no followers on a channel. # Instead of followers it has members that should be notified. msg_vals = msg_vals or {} # notify only user input (comment, whatsapp messages or incoming / outgoing emails) message_type = msg_vals['message_type'] if 'message_type' in msg_vals else message.message_type if message_type not in ('comment', 'email', 'email_outgoing', 'whatsapp_message'): return [] recipients_data = [] author_id = msg_vals.get("author_id") or message.author_id.id pids = msg_vals['partner_ids'] or [] if 'partner_ids' in msg_vals else message.partner_ids.ids if pids: email_from = tools.email_normalize(msg_vals.get('email_from') or message.email_from) self.env['res.partner'].flush_model(['active', 'email', 'partner_share']) self.env['res.users'].flush_model(['notification_type', 'partner_id']) sql_query = SQL( """ SELECT DISTINCT ON (partner.id) partner.id, partner.email_normalized, partner.lang, partner.name, partner.partner_share, users.id as uid, COALESCE(users.notification_type, 'email') as notif, COALESCE(users.share, FALSE) as ushare FROM res_partner partner LEFT JOIN res_users users on partner.id = users.partner_id WHERE partner.active IS TRUE AND partner.email != %(email)s AND partner.id IN %(partner_ids)s AND partner.id != %(author_id)s """, email=email_from or "", partner_ids=tuple(pids), author_id=author_id or 0, ) self.env.cr.execute(sql_query) for partner_id, email_normalized, lang, name, partner_share, uid, notif, ushare in self.env.cr.fetchall(): # ocn_client: will add partners to recipient recipient_data. more ocn notifications. We neeed to filter them maybe recipients_data.append({ 'active': True, 'email_normalized': email_normalized, 'id': partner_id, 'is_follower': False, 'groups': [], 'lang': lang, 'name': name, 'notif': notif, 'share': partner_share, 'type': 'user' if not partner_share and notif else 'customer', 'uid': uid, 'ushare': ushare, }) domain = Domain.AND([ [("channel_id", "=", self.id)], [("partner_id", "!=", author_id)], [("partner_id.active", "=", True)], [("mute_until_dt", "=", False)], [("partner_id.user_ids.manual_im_status", "!=", "busy")], Domain.OR([ [("channel_id.channel_type", "!=", "channel")], Domain.AND([ [("channel_id.channel_type", "=", "channel")], Domain.OR([ [("custom_notifications", "=", "all")], Domain.AND([ [("custom_notifications", "=", False)], [("partner_id.user_ids.res_users_settings_ids.channel_notifications", "=", "all")], ]), Domain.AND([ [("custom_notifications", "=", "mentions")], [("partner_id", "in", pids)], ]), Domain.AND([ [("custom_notifications", "=", False)], [("partner_id.user_ids.res_users_settings_ids.channel_notifications", "=", False)], [("partner_id", "in", pids)], ]), ]), ]), ]), ]) # sudo: discuss.channel.member - read to get the members of the channel and res.users.settings of the partners members = self.env["discuss.channel.member"].sudo().search(domain) for member in members: recipients_data.append({ "active": True, "id": member.partner_id.id, "is_follower": False, "groups": [], "lang": member.partner_id.lang, "notif": "web_push", "share": member.partner_id.partner_share, "type": "customer", "uid": False, "ushare": False, }) return recipients_data def _notify_get_recipients_groups(self, message, model_description, msg_vals=False): # All recipients of a message on a channel are considered as partners. # This means they will receive a minimal email, without a link to access # in the backend. Mailing lists should indeed send minimal emails to avoid # the noise. groups = super()._notify_get_recipients_groups( message, model_description, msg_vals=msg_vals ) for (index, (group_name, _group_func, group_data)) in enumerate(groups): if group_name != 'customer': groups[index] = (group_name, lambda partner: False, group_data) return groups def _get_notify_valid_parameters(self): return super()._get_notify_valid_parameters() | {"silent"} def _notify_thread(self, message, msg_vals=False, **kwargs): # link message to channel rdata = super()._notify_thread(message, msg_vals=msg_vals, **kwargs) payload = {"data": Store(bus_channel=self).add(message).get_result(), "id": self.id} if temporary_id := self.env.context.get("temporary_id"): payload["temporary_id"] = temporary_id if kwargs.get("silent"): payload["silent"] = True self._bus_send("discuss.channel/new_message", payload) return rdata def _notify_by_web_push_prepare_payload(self, message, msg_vals=False, force_record_name=False): payload = super()._notify_by_web_push_prepare_payload( message, msg_vals=msg_vals, force_record_name=force_record_name, ) msg_vals = msg_vals or {} payload['options']['data']['action'] = 'mail.action_discuss' record_name = force_record_name or message.record_name author_ids = [msg_vals["author_id"]] if msg_vals.get("author_id") else message.author_id.ids author = self.env["res.partner"].browse(author_ids) or self.env["mail.guest"].browse( msg_vals.get("author_guest_id", message.author_guest_id.id) ) if self.channel_type == 'chat': payload['title'] = author.name elif self.channel_type == 'channel': payload['title'] = "#%s - %s" % (record_name, author.name) elif self.channel_type == 'group': if not record_name: member_names = self.channel_member_ids.mapped(lambda m: m.partner_id.name if m.partner_id else m.guest_id.name) record_name = f"{', '.join(member_names[:-1])} and {member_names[-1]}" if len(member_names) > 1 else member_names[0] if member_names else "" payload['title'] = "%s - %s" % (record_name, author.name) else: payload['title'] = "#%s" % (record_name) return payload def _notify_thread_by_web_push(self, message, recipients_data, msg_vals=False, **kwargs): # only notify "web_push" recipients in discuss channels. # exclude "inbox" recipients in discuss channels as inbox and web push can be mutually exclusive. # the user can turn off the web push but receive notifs via inbox if they want to. super()._notify_thread_by_web_push(message, [r for r in recipients_data if r["notif"] == "web_push"], msg_vals=msg_vals, **kwargs) def _message_receive_bounce(self, email, partner): # Override bounce management to unsubscribe bouncing addresses for p in partner: if p.message_bounce >= self.MAX_BOUNCE_LIMIT: self._action_unfollow(p) return super()._message_receive_bounce(email, partner) def _get_allowed_message_params(self): return super()._get_allowed_message_params() | {"special_mentions", "parent_id"} def _get_allowed_message_partner_ids(self, partner_ids): """Ensure only partners having access to the channel can be mentioned.""" partners = self.env["res.partner"].browse(partner_ids) if self.channel_type == "channel": if self.group_public_id: partners = partners.filtered( lambda p: p.user_ids.all_group_ids & self.group_public_id, ) else: partners = ( self.env["discuss.channel.member"] .search_fetch( [("channel_id", "=", self.id), ("partner_id", "in", partner_ids)], ["partner_id"], ) .partner_id ) return partners.ids def message_post(self, *, message_type="notification", partner_ids=None, **kwargs): if message_type not in ["notification", "user_notification"]: # sudo: discuss.channel - write to discuss.channel is not accessible for most users self.sudo().last_interest_dt = fields.Datetime.now() if "everyone" in kwargs.pop("special_mentions", []): partner_ids = list(OrderedSet((partner_ids or []) + self.channel_member_ids.partner_id.ids)) if partner_ids: kwargs["partner_ids"] = self._get_allowed_message_partner_ids(partner_ids) # mail_post_autofollow=False is necessary to prevent adding followers # when using mentions in channels. Followers should not be added to # channels, and especially not automatically (because channel membership # should be managed with discuss.channel.member instead). # The current client code might be setting the key to True on sending # message but it is only useful when targeting customers in chatter. # This value should simply be set to False in channels no matter what. return super( DiscussChannel, self.with_context(mail_post_autofollow_author_skip=True, mail_post_autofollow=False), ).message_post(message_type=message_type, **kwargs) def _message_post_after_hook(self, message, msg_vals): # Automatically set the message posted by the current user as seen for themselves. if self.self_member_id and message.is_current_user_or_guest_author: self.self_member_id._set_last_seen_message(message, notify=False) self.self_member_id._set_new_message_separator(message.id + 1) # Invite mentioned partners to sub-channel. if self.parent_channel_id and message.partner_ids: members = self.env["discuss.channel.member"].search([ ("channel_id", "=", self.parent_channel_id.id), ("partner_id", "in", message.partner_ids.ids), ]) to_invite = members.filtered(lambda m: m.custom_notifications != "no_notif" if m.custom_notifications else m.partner_id.user_ids.res_users_settings_id.channel_notifications != "no_notif" ).partner_id if self.parent_channel_id.channel_type == "channel": to_invite |= (message.partner_ids - members.partner_id).filtered(lambda p: p.user_ids.res_users_settings_id.channel_notifications != "no_notif" ) self._add_members(partners=to_invite) return super()._message_post_after_hook(message, msg_vals) def _message_update_content(self, message, /, *, partner_ids=None, **kwargs): if partner_ids: kwargs["partner_ids"] = self._get_allowed_message_partner_ids(partner_ids) super()._message_update_content(message, **kwargs) def _check_can_update_message_content(self, message): # Don't call super in this override as we want to ignore the mail.thread behavior completely if not message.message_type == 'comment': raise UserError(_("Only messages type comment can have their content updated on model 'discuss.channel'")) def _create_attachments_for_post(self, values_list, extra_list): # Create voice metadata from meta information attachments = super()._create_attachments_for_post(values_list, extra_list) voice = attachments.env['ir.attachment'] # keep env, notably for potential sudo for attachment, (_cid, _name, _token, info) in zip(attachments, extra_list): if info.get('voice'): voice += attachment if voice: voice._set_voice_metadata() return attachments def _message_subscribe(self, partner_ids=None, subtype_ids=None, customer_ids=None): # Do not allow follower subscription on channels. Only members are considered raise UserError(_('Adding followers on channels is not possible. Consider adding members instead.')) def _should_invite_members_to_join_call(self): self.ensure_one() return len(self.rtc_session_ids) == 1 and self.channel_type != "channel" def _get_access_action(self, access_uid=None, force_website=False): """ Redirect to Discuss instead of form view. """ self.ensure_one() if not self.env.user._is_internal() or force_website: return { "type": "ir.actions.act_url", "url": f"/discuss/channel/{self.id}", "target": "self", "target_type": "public", } return { "type": "ir.actions.act_url", "url": f"/odoo/action-mail.action_discuss?active_id={self.id}", "target": "self", } # ------------------------------------------------------------ # BROADCAST # ------------------------------------------------------------ # Anonymous method def _broadcast(self, partner_ids): """ Broadcast the current channel header to the given partner ids :param partner_ids : the partner to notify """ for partner in self.env['res.partner'].browse(partner_ids): if user := partner.main_user_id: Store(bus_channel=user).add( self.with_user(user).with_context(allowed_company_ids=[]), ).bus_send() # ------------------------------------------------------------ # INSTANT MESSAGING API # ------------------------------------------------------------ # A channel header should be broadcasted: # - when adding user to channel (only to the new added partners) # - when folding/minimizing a channel (only to the user making the action) # A message should be broadcasted: # - when a message is posted on a channel (to the channel, using _notify() method) # ------------------------------------------------------------ def set_message_pin(self, message_id, pinned): """ (Un)pin a message on the channel and send a notification to the members. :param message_id: id of the message to be pinned. :param pinned: whether the message should be pinned or unpinned. """ self.ensure_one() message_to_update = self.env['mail.message'].search([ ['id', '=', message_id], ['model', '=', 'discuss.channel'], ['res_id', '=', self.id], ['pinned_at', '=' if pinned else '!=', False] ]) if not message_to_update: return message_to_update.flush_recordset(['pinned_at']) # Use SQL because by calling write method, write_date is going to be updated, but we don't want pin/unpin # a message changes the write_date self.env.cr.execute("UPDATE mail_message SET pinned_at=%s WHERE id=%s", (fields.Datetime.now() if pinned else None, message_to_update.id)) message_to_update.invalidate_recordset(['pinned_at']) Store(bus_channel=self).add(message_to_update, "pinned_at").bus_send() if pinned: notification_text = '''
%(user_pinned_a_message_to_this_channel)s %(see_all_pins)s
''' notification = Markup(notification_text) % { 'user_pinned_a_message_to_this_channel': Markup('%s') % ( message_id, _('%(user_name)s pinned a message to this channel.', user_name=self.self_member_id._get_html_link_title()), ), 'see_all_pins': _('See all pinned messages.'), } self.message_post(body=notification, message_type="notification", subtype_xmlid="mail.mt_comment") def _find_or_create_member_for_self(self): self.ensure_one() domain = [("channel_id", "=", self.id), ("is_self", "=", True)] member = self.env["discuss.channel.member"].search(domain) if member: return member if not self.env.user._is_public(): return self._add_members(users=self.env.user) guest = self.env["mail.guest"]._get_guest_from_context() if guest: return self._add_members(guests=guest) return self.env["discuss.channel.member"] def _find_or_create_persona_for_channel( self, guest_name, timezone, country_code, create_member_params=None, post_joined_message=True, ): """ :param guest_name: name of the persona :param post_joined_message: whether to post a message to the channel to notify that the persona joined :param dict create_member_params: optional parameters to pass to the channel member create function. :rtype: tuple[partner, guest] """ self.ensure_one() guest = self.env["mail.guest"] member = self.env["discuss.channel.member"].search([("channel_id", "=", self.id), ("is_self", "=", True)]) if member: return member.partner_id, member.guest_id if not self.env.user._is_public(): self._add_members(users=self.env.user, post_joined_message=post_joined_message) else: guest = guest._get_or_create_guest( guest_name=guest_name, country_code=country_code, timezone=timezone ) self.with_context(guest=guest)._add_members( guests=guest, create_member_params=create_member_params, post_joined_message=post_joined_message, ) return self.env.user.partner_id if not guest else self.env["res.partner"], guest @api.model def _get_channels_as_member(self): # 2 different queries because the 2 sub-queries together with OR are less efficient member_domain = [("channel_type", "in", ("channel", "group")), ("is_member", "=", True)] pinned_member_domain = [ ("channel_type", "not in", ("channel", "group")), ("channel_member_ids", "any", [("is_self", "=", True), ("is_pinned", "=", True)]), ] channels = self.env["discuss.channel"].search(member_domain) channels += self.env["discuss.channel"].search(pinned_member_domain) return channels def _to_store_defaults(self, target: Store.Target): # As the method uses partial recordsets with filtered (that lose the prefetch ids) it is # best to prefetch these computed fields once to avoid doing partial queries multiple times, # especially because these 2 fields are used in ACL too. self.fetch(["is_member", "self_member_id"]) # Avoid sending potentially a lot of members for big channels: exclude chat and other small # channels from this optimization because they are assumed to be smaller and it's important # to know the member list for them. channels_with_all_members = self.filtered( lambda channel: channel.channel_type not in self._lazy_load_members_channel_types(), ) all_members = ( self.self_member_id | self.invited_member_ids # sudo: discuss.channel - reading sessions of accessible channel is acceptable | self.sudo().rtc_session_ids.channel_member_id | channels_with_all_members.channel_member_ids | self.channel_name_member_ids ) # Prefetch all members at once. The first field accessed on a member will be channel_id # (in _to_store_defaults of livechat), but the field is known for some of the members # (through inverse of channels_with_all_members.channel_member_ids), so the ORM will only # prefetch all fields for members with unknown channel_id. The following line force a # single fetch for all fields of all members. all_members.mapped("create_date") # any field in table will do except channel_id # prefetch in batch, including nested relations (member, guest, ...) Store(bus_channel=target.channel, bus_subchannel=target.subchannel).add(all_members) # sudo: bus.bus: reading non-sensitive last id bus_last_id = self.env["bus.bus"].sudo()._bus_last_id() res = [ Store.Attr("avatar_cache_key", predicate=is_channel_or_group), "channel_type", "create_uid", Store.Many( "channel_member_ids", only_data=True, sort="id", predicate=lambda channel: channel in channels_with_all_members, ), "default_display_mode", Store.Attr("description", predicate=is_channel_or_group), Store.One("from_message_id", predicate=is_channel_or_group), Store.Many("group_ids", [], predicate=is_channel, sudo=True), # sudo: we are reading only the ids (comodel is inaccessible) Store.One("group_public_id", ["full_name"], predicate=is_channel), Store.Many( "invited_member_ids", [ Store.One("channel_id", [], as_thread=True), *self.env["discuss.channel.member"]._to_store_persona("avatar_card"), ], mode="ADD", ), "last_interest_dt", "member_count", "name", Store.Many( "channel_name_member_ids", sort="id", predicate=lambda c: c.channel_type in self._member_based_naming_channel_types(), ), Store.One("parent_channel_id", predicate=is_channel_or_group), # sudo: discuss.channel: reading sessions of accessible channel is acceptable Store.Many( "rtc_session_ids", mode="ADD", extra_fields=self.sudo().rtc_session_ids._get_store_extra_fields(), sudo=True, ), "uuid", ] if target.is_current_user(self.env): res = res + [ {"fetchChannelInfoState": "fetched"}, "is_editable", "message_needaction_counter", {"message_needaction_counter_bus_id": bus_last_id}, Store.One( "self_member_id", extra_fields=[ "custom_channel_name", "custom_notifications", "last_interest_dt", "message_unread_counter", {"message_unread_counter_bus_id": bus_last_id}, "mute_until_dt", "new_message_separator", # sudo: discuss.channel.rtc.session - each member can see who is inviting them Store.One("rtc_inviting_session_id", sudo=True), "unpin_dt", ], only_data=True, ), ] return res def _to_store(self, store: Store, fields): store.add_records_fields(self, fields) # User methods @api.model def _get_or_create_chat(self, partners_to, pin=True): """ Get the canonical private channel between some partners, create it if needed. To reuse an old channel (conversation), this one must be private, and contains only the given partners. :param partners_to : list of res.partner ids to add to the conversation :param pin : True if getting the channel should pin it for the current user :returns: channel_info of the created or existing channel :rtype: dict """ partners = ( self.env["res.partner"] .with_context(active_test=False) .search([("id", "in", partners_to)]) ) | self.env.user.partner_id if len(partners) > 2: raise UserError(_("A chat should not be created with more than 2 persons. Create a group instead.")) # determine type according to the number of partner in the channel self.flush_model() self.env['discuss.channel.member'].flush_model() self.env.cr.execute( SQL( """ SELECT M.channel_id FROM discuss_channel C, discuss_channel_member M WHERE M.channel_id = C.id AND M.partner_id IN %(partner_ids)s AND C.channel_type LIKE 'chat' AND NOT EXISTS ( SELECT 1 FROM discuss_channel_member M2 WHERE M2.channel_id = C.id AND M2.partner_id NOT IN %(partner_ids)s ) GROUP BY M.channel_id HAVING ARRAY_AGG(DISTINCT M.partner_id ORDER BY M.partner_id) = %(sorted_partner_ids)s LIMIT 1 """, partner_ids=tuple(partners.ids), sorted_partner_ids=sorted(partners.ids), ) ) result = self.env.cr.dictfetchall() # use the same "now" in the whole function to ensure unpin_dt > last_interest_dt now = fields.Datetime.now() last_interest_dt = now - timedelta(seconds=1) if result: # get the existing channel between the given partners channel = self.browse(result[0].get('channel_id')) # pin or open the channel for the current partner if pin: channel.self_member_id.write( {"last_interest_dt": last_interest_dt, "unpin_dt": False} ) channel._broadcast(self.env.user.partner_id.ids) else: # create a new one channel = self.create( { "channel_member_ids": [ Command.create( { "last_interest_dt": last_interest_dt, "partner_id": partner.id, # only pin for the current user, so the chat does not show up for the correspondent until a message has been sent "unpin_dt": False if partner == self.env.user.partner_id else now, } ) for partner in partners ], "channel_type": "chat", "last_interest_dt": last_interest_dt, "name": ", ".join(partners.mapped("name")), } ) channel._broadcast(partners.ids) return channel def channel_pin(self, pinned=False): self.ensure_one() member = self.env['discuss.channel.member'].search( [('partner_id', '=', self.env.user.partner_id.id), ('channel_id', '=', self.id), ('is_pinned', '!=', pinned)]) if member: member.write({'unpin_dt': False if pinned else fields.Datetime.now()}) store = Store(bus_channel=self.env.user) if not pinned: store.add(self, {"close_chat_window": True}) else: store.add(self) store.bus_send() def _allow_invite_by_email(self): return self.channel_type == "group" or ( self.channel_type == "channel" and not self.group_public_id ) def _types_allowing_seen_infos(self): """ Return the channel types which allow sending seen infos notification on the channel """ return ["chat", "group"] def _types_allowing_unfollow(self): """ Return the channel types which allow leaving the channel, channel will be unpinned otherwise """ return ["channel", "group"] def _member_based_naming_channel_types(self): """ Return the channel types that use member-based naming, specifically the `channel_name_member_ids` field. """ return ["group"] def _lazy_load_members_channel_types(self): """ Return the channel types that load members lazily. """ return ["channel", "group"] def channel_fetched(self): """ Broadcast the channel_fetched notification to channel members """ for channel in self: if not channel.message_ids.ids: continue # a bit not-modular but helps understanding code if channel.channel_type not in {'chat', 'whatsapp'}: continue last_message_id = channel.message_ids.ids[0] # zero is the index of the last message member = self.env['discuss.channel.member'].search([('channel_id', '=', channel.id), ('partner_id', '=', self.env.user.partner_id.id)], limit=1) if not member: # member not a part of the channel continue if member.fetched_message_id.id == last_message_id: # last message fetched by user is already up-to-date continue # Avoid serialization error when multiple tabs are opened. query = """ UPDATE discuss_channel_member SET fetched_message_id = %s WHERE id IN ( SELECT id FROM discuss_channel_member WHERE id = %s FOR NO KEY UPDATE SKIP LOCKED ) """ self.env.cr.execute(query, (last_message_id, member.id)) channel._bus_send( "discuss.channel.member/fetched", { "channel_id": channel.id, "id": member.id, "last_message_id": last_message_id, "partner_id": self.env.user.partner_id.id, }, ) def channel_set_custom_name(self, name): self.ensure_one() self.self_member_id.custom_channel_name = name Store(bus_channel=self.self_member_id._bus_channel()).add( self.self_member_id, "custom_channel_name", ).bus_send() def channel_rename(self, name): self.ensure_one() self.write({'name': name}) body = Markup('
%s
') % name self.message_post(body=body, message_type="notification", subtype_xmlid="mail.mt_comment") def channel_change_description(self, description): self.ensure_one() self.write({'description': description}) def channel_join(self): """Shortcut to add the current user as member of self channels. Prefer calling add_members() directly when possible. """ self._add_members(users=self.env.user) @api.model def _create_channel(self, name, group_id): """ Create a channel and add the current partner, broadcast it (to make the user directly listen to it when polling) :param name : the name of the channel to create :param group_id : the group allowed to join the channel. :return dict : channel header """ # create the channel vals = { 'channel_type': 'channel', 'name': name, } new_channel = self.create(vals) group = self.env['res.groups'].search([('id', '=', group_id)]) if group_id else None new_channel.group_public_id = group.id if group else None notification = Markup('
%s
') % _("created this channel.") new_channel.message_post(body=notification, message_type="notification", subtype_xmlid="mail.mt_comment") return new_channel @api.model def _create_group(self, partners_to, default_display_mode=False, name=''): """ Creates a group channel. :param partners_to : list of res.partner ids to add to the conversation :param str default_display_mode: how the channel will be displayed by default :param str name: group name. default name is computed client side from the list of members if no name is set :returns: channel_info of the created channel :rtype: dict """ partners_to = OrderedSet(partners_to) channel = self.create({ 'channel_member_ids': [Command.create({'partner_id': partner_id}) for partner_id in partners_to], 'channel_type': 'group', 'default_display_mode': default_display_mode, 'name': name, }) channel._broadcast(channel.channel_member_ids.partner_id.ids) return channel def _create_sub_channel(self, from_message_id=None, name=None): self.ensure_one() message = self.env["mail.message"] if from_message_id: message = self.env["mail.message"].search([("id", "=", from_message_id)]) if not name: name = self.env._("New Thread") if message: if message._filter_empty(): name = self.env._("This message has been removed") elif stripped := message.body and message.body.striptags(): name = stripped[:30] sub_channel = self.create( { "channel_type": self.channel_type, "from_message_id": message.id, "name": name, "parent_channel_id": self.id, } ) sub_channel.add_members(partner_ids=(self.env.user.partner_id | message.author_id).ids, post_joined_message=False) notification = ( Markup('
%s
') % _( "%(user)s started a thread: %(goto)s%(thread_name)s%(goto_end)s." ) ) % { "user": self.env.user.display_name, "goto": Markup( "" ) % sub_channel.id, "goto_end": Markup(""), "thread_name": sub_channel.name, } self.message_post( body=notification, message_type="notification", subtype_xmlid="mail.mt_comment" ) return sub_channel @api.readonly @api.model def get_mention_suggestions(self, search, limit=8): """ Return 'limit'-first channels' name, channel_type and group_public_id fields such that the name matches a 'search' string. Exclude channels of type chat (DM) and group. """ domain = [("name", "ilike", search), ("channel_type", "=", "channel")] channels = self.search(domain, limit=limit) channel_fields = [ "name", "channel_type", Store.One("group_public_id", ["full_name"]), Store.One("parent_channel_id", []) ] store = Store().add(channels, channel_fields) return store.get_result() def _get_last_messages(self): """ Return the last message for each of the given channels.""" if not self.ids: return self.env["mail.message"] self.env['mail.message'].flush_model() self.env.cr.execute( """ SELECT last_message_id FROM discuss_channel LEFT JOIN LATERAL ( SELECT id FROM mail_message WHERE mail_message.model = 'discuss.channel' AND mail_message.res_id = discuss_channel.id ORDER BY id DESC LIMIT 1 ) AS t(last_message_id) ON TRUE WHERE discuss_channel.id IN %(ids)s GROUP BY discuss_channel.id, t.last_message_id ORDER BY discuss_channel.id """, {"ids": tuple(self.ids)}, ) return self.env["mail.message"].browse([mid for (mid,) in self.env.cr.fetchall() if mid]) def _clean_empty_message(self, message): super()._clean_empty_message(message) message.parent_id = False def _get_store_message_update_extra_fields(self): return super()._get_store_message_update_extra_fields() + [Store.One("parent_id")] # ------------------------------------------------------------ # COMMANDS # ------------------------------------------------------------ def execute_command_help(self, **kwargs): self.ensure_one() if self.channel_type == 'channel': msg = _( "You are in channel %(bold_start)s#%(channel_name)s%(bold_end)s.", bold_start=Markup(""), bold_end=Markup(""), channel_name=self.name, ) else: if members := self.channel_member_ids.filtered(lambda m: not m.is_self): member_names = html_escape(format_list(self.env, [f"%(member_{member.id})s" for member in members])) % { f"member_{member.id}": member._get_html_link(for_persona=True) for member in members } msg = _( "You are in a private conversation with %(member_names)s.", member_names=member_names, ) else: msg = _("You are alone in a private conversation.") msg += self._execute_command_help_message_extra() self.env.user._bus_send_transient_message(self, msg) def _execute_command_help_message_extra(self): msg = _( "%(new_line)s" "%(new_line)sType %(bold_start)s@username%(bold_end)s to mention someone, and grab their attention." "%(new_line)sType %(bold_start)s#channel%(bold_end)s to mention a channel." "%(new_line)sType %(bold_start)s/command%(bold_end)s to execute a command." "%(new_line)sType %(bold_start)s::shortcut%(bold_end)s to insert a canned response in your message." "%(new_line)sType %(bold_start)s:emoji:%(bold_end)s to insert an emoji in your message.", bold_start=Markup(""), bold_end=Markup(""), new_line=Markup("
"), ) return msg def execute_command_leave(self, **kwargs): if self.channel_type in self._types_allowing_unfollow(): self.action_unfollow() else: self.channel_pin(False) def execute_command_who(self, **kwargs): if all_other_members := self.channel_member_ids.filtered(lambda m: not m.is_self): members = all_other_members[:30] list_params = [f"%(member_{member.id})s" for member in members] if len(all_other_members) != len(members): list_params.append(_("more")) else: list_params.append(_("you")) member_names = html_escape(format_list(self.env, list_params)) % { f"member_{member.id}": member._get_html_link(for_persona=True) for member in members } msg = _( "Users in this channel: %(members)s.", members=member_names, ) else: msg = _("You are alone in this channel.") self.env.user._bus_send_transient_message(self, msg)