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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
odoo.define('mail/static/src/models/messaging/messaging.js', function (require) {
'use strict';
const { registerNewModel } = require('mail/static/src/model/model_core.js');
const { attr, many2many, many2one, one2many, one2one } = require('mail/static/src/model/model_field.js');
function factory(dependencies) {
class Messaging extends dependencies['mail.model'] {
/**
* @override
*/
_willDelete() {
if (this.env.services['bus_service']) {
this.env.services['bus_service'].off('window_focus', null, this._handleGlobalWindowFocus);
}
return super._willDelete(...arguments);
}
/**
* Starts messaging and related records.
*/
async start() {
this._handleGlobalWindowFocus = this._handleGlobalWindowFocus.bind(this);
this.env.services['bus_service'].on('window_focus', null, this._handleGlobalWindowFocus);
await this.async(() => this.initializer.start());
this.notificationHandler.start();
this.update({ isInitialized: true });
}
//----------------------------------------------------------------------
// Public
//----------------------------------------------------------------------
/**
* @returns {boolean}
*/
isNotificationPermissionDefault() {
const windowNotification = this.env.browser.Notification;
return windowNotification
? windowNotification.permission === 'default'
: false;
}
/**
* Open the form view of the record with provided id and model.
* Gets the chat with the provided person and returns it.
*
* If a chat is not appropriate, a notification is displayed instead.
*
* @param {Object} param0
* @param {integer} [param0.partnerId]
* @param {integer} [param0.userId]
* @param {Object} [options]
* @returns {mail.thread|undefined}
*/
async getChat({ partnerId, userId }) {
if (userId) {
const user = this.env.models['mail.user'].insert({ id: userId });
return user.getChat();
}
if (partnerId) {
const partner = this.env.models['mail.partner'].insert({ id: partnerId });
return partner.getChat();
}
}
/**
* Opens a chat with the provided person and returns it.
*
* If a chat is not appropriate, a notification is displayed instead.
*
* @param {Object} person forwarded to @see `getChat()`
* @param {Object} [options] forwarded to @see `mail.thread:open()`
* @returns {mail.thread|undefined}
*/
async openChat(person, options) {
const chat = await this.async(() => this.getChat(person));
if (!chat) {
return;
}
await this.async(() => chat.open(options));
return chat;
}
/**
* Opens the form view of the record with provided id and model.
*
* @param {Object} param0
* @param {integer} param0.id
* @param {string} param0.model
*/
async openDocument({ id, model }) {
this.env.bus.trigger('do-action', {
action: {
type: 'ir.actions.act_window',
res_model: model,
views: [[false, 'form']],
res_id: id,
},
});
if (this.env.messaging.device.isMobile) {
// messaging menu has a higher z-index than views so it must
// be closed to ensure the visibility of the view
this.env.messaging.messagingMenu.close();
}
}
/**
* Opens the most appropriate view that is a profile for provided id and
* model.
*
* @param {Object} param0
* @param {integer} param0.id
* @param {string} param0.model
*/
async openProfile({ id, model }) {
if (model === 'res.partner') {
const partner = this.env.models['mail.partner'].insert({ id });
return partner.openProfile();
}
if (model === 'res.users') {
const user = this.env.models['mail.user'].insert({ id });
return user.openProfile();
}
if (model === 'mail.channel') {
let channel = this.env.models['mail.thread'].findFromIdentifyingData({ id, model: 'mail.channel' });
if (!channel) {
channel = (await this.async(() =>
this.env.models['mail.thread'].performRpcChannelInfo({ ids: [id] })
))[0];
}
if (!channel) {
this.env.services['notification'].notify({
message: this.env._t("You can only open the profile of existing channels."),
type: 'warning',
});
return;
}
return channel.openProfile();
}
return this.env.messaging.openDocument({ id, model });
}
//----------------------------------------------------------------------
// Private
//----------------------------------------------------------------------
/**
* @private
*/
_handleGlobalWindowFocus() {
this.update({ outOfFocusUnreadMessageCounter: 0 });
this.env.bus.trigger('set_title_part', {
part: '_chat',
});
}
}
Messaging.fields = {
cannedResponses: one2many('mail.canned_response'),
chatWindowManager: one2one('mail.chat_window_manager', {
default: [['create']],
inverse: 'messaging',
isCausal: true,
}),
commands: one2many('mail.channel_command'),
currentPartner: one2one('mail.partner'),
currentUser: one2one('mail.user'),
device: one2one('mail.device', {
default: [['create']],
isCausal: true,
}),
dialogManager: one2one('mail.dialog_manager', {
default: [['create']],
isCausal: true,
}),
discuss: one2one('mail.discuss', {
default: [['create']],
inverse: 'messaging',
isCausal: true,
}),
/**
* Mailbox History.
*/
history: one2one('mail.thread'),
/**
* Mailbox Inbox.
*/
inbox: one2one('mail.thread'),
initializer: one2one('mail.messaging_initializer', {
default: [['create']],
inverse: 'messaging',
isCausal: true,
}),
isInitialized: attr({
default: false,
}),
locale: one2one('mail.locale', {
default: [['create']],
isCausal: true,
}),
messagingMenu: one2one('mail.messaging_menu', {
default: [['create']],
inverse: 'messaging',
isCausal: true,
}),
/**
* Mailbox Moderation.
*/
moderation: one2one('mail.thread'),
notificationGroupManager: one2one('mail.notification_group_manager', {
default: [['create']],
isCausal: true,
}),
notificationHandler: one2one('mail.messaging_notification_handler', {
default: [['create']],
inverse: 'messaging',
isCausal: true,
}),
outOfFocusUnreadMessageCounter: attr({
default: 0,
}),
partnerRoot: many2one('mail.partner'),
/**
* Determines which partner should be considered the public partner,
* which is a special partner notably used in livechat.
*
* @deprecated in favor of `publicPartners` because in multi-website
* setup there might be a different public partner per website.
*/
publicPartner: many2one('mail.partner'),
/**
* Determines which partners should be considered the public partners,
* which are special partners notably used in livechat.
*/
publicPartners: many2many('mail.partner'),
/**
* Mailbox Starred.
*/
starred: one2one('mail.thread'),
};
Messaging.modelName = 'mail.messaging';
return Messaging;
}
registerNewModel('mail.messaging', factory);
});
|