-
- Downloads
[IMP] bus, mail, *: improve longpolling bus notification format
* = auth_signup, calendar, im_livechat, snailmail_account, survey, test_mail, web_editor, website_crm_iap_reveal, website_livechat The aim of this PR is to improve/fix various flaws and limitation of the current API, to make it easier to use and more efficient. Notification are now defined with 3 distinct parts: - the channel determines which client(s) should receive it - the type determines how it should be handled - the payload determines any extra information helpful for handling it Channel ======= Business code ------------- - Record channel is introduced for ease of subscribing to and sending notifications to specific partners, channels, documents, ... - String channel is still supported (but it is converted internally to the tuple channel). - Tuple channel is still supported without any change (but should be avoided whenever possible due to its complex syntax). The channel is no longer sent to the client. When the channel was used for business purpose, the information it contained has been moved into either the new type, or the payload itself. Technical note -------------- All channels are now internally converted to the tuple (db, ...) channel, which is necessary for the platform code (saas/sh). Internally, the bus.bus table is not changed, type and payload are grouped together into what was (and still is) called message. Type ==== Type is introduced to uniformize the way notifications are sent and handled. All existing notifications already had some kind of manually-built type in them. This is now officially supported at the bus API. In client code this will allow (to be done in future commits) to register one handler per specific type, instead of having to iterate and to filter all received notifications on every handler. Payload ======= Payload (ex message) did not change, it can still be anything depending on business needs. Few adaptations: - When the type was included on the payload, the type has been moved to the new type parameter. - When the channel was used in business code, its data has been copied into the payload. task-1891151 closes odoo/odoo#79201 X-original-commit: 543af27c Related: odoo/enterprise#21998 Signed-off-by:Sébastien Theys (seb) <seb@odoo.com>
Showing
- addons/auth_signup/models/res_users.py 4 additions, 7 deletionsaddons/auth_signup/models/res_users.py
- addons/base_geolocalize/models/res_partner.py 4 additions, 8 deletionsaddons/base_geolocalize/models/res_partner.py
- addons/bus/controllers/main.py 2 additions, 11 deletionsaddons/bus/controllers/main.py
- addons/bus/models/bus.py 27 additions, 14 deletionsaddons/bus/models/bus.py
- addons/bus/static/src/js/longpolling_bus.js 1 addition, 1 deletionaddons/bus/static/src/js/longpolling_bus.js
- addons/bus/static/src/js/services/assets_watchdog_service.js 4 additions, 6 deletionsaddons/bus/static/src/js/services/assets_watchdog_service.js
- addons/bus/static/tests/assets_watchdog_tests.js 10 additions, 9 deletionsaddons/bus/static/tests/assets_watchdog_tests.js
- addons/bus/static/tests/bus_tests.js 7 additions, 11 deletionsaddons/bus/static/tests/bus_tests.js
- addons/bus/tests/test_assetsbundle.py 6 additions, 6 deletionsaddons/bus/tests/test_assetsbundle.py
- addons/calendar/controllers/__init__.py 0 additions, 1 deletionaddons/calendar/controllers/__init__.py
- addons/calendar/controllers/bus.py 0 additions, 15 deletionsaddons/calendar/controllers/bus.py
- addons/calendar/models/calendar_alarm_manager.py 2 additions, 2 deletionsaddons/calendar/models/calendar_alarm_manager.py
- addons/calendar/models/calendar_event.py 4 additions, 6 deletionsaddons/calendar/models/calendar_event.py
- addons/calendar/static/src/js/services/calendar_notification_service.js 3 additions, 3 deletions...r/static/src/js/services/calendar_notification_service.js
- addons/calendar/static/tests/calendar_notification_tests.js 16 additions, 16 deletionsaddons/calendar/static/tests/calendar_notification_tests.js
- addons/calendar/tests/test_event_notifications.py 13 additions, 11 deletionsaddons/calendar/tests/test_event_notifications.py
- addons/crm_iap_enrich/models/crm_lead.py 4 additions, 8 deletionsaddons/crm_iap_enrich/models/crm_lead.py
- addons/im_livechat/models/mail_channel.py 6 additions, 10 deletionsaddons/im_livechat/models/mail_channel.py
- addons/im_livechat/static/src/components/discuss_sidebar_category/tests/discuss_sidebar_category_tests.js 10 additions, 18 deletions..._sidebar_category/tests/discuss_sidebar_category_tests.js
- addons/im_livechat/static/src/components/thread_icon/tests/thread_icon_tests.js 9 additions, 8 deletions...tic/src/components/thread_icon/tests/thread_icon_tests.js
Loading
Please register or sign in to comment