Skip to content
Snippets Groups Projects
  1. Nov 27, 2022
  2. Nov 25, 2022
  3. Nov 24, 2022
  4. Nov 20, 2022
  5. Nov 13, 2022
  6. Oct 30, 2022
  7. Oct 28, 2022
    • Pierre Paridans's avatar
      [FIX] bus: SharedWorker is buggy on iOS 16.1 · afac382b
      Pierre Paridans authored
      
      Since the iOS 16.1 update, the WKWebView used in the iOS mobile app
      crashes when trying to instanciate a `SharedWorker`... even if this
      feature was newly added in iOS 16.0.
      
      Safari iOS doesn't seem to be impacted.
      
      This commit works around this issue by disabling the usage of the
      `SharedWorker` in the iOS mobile app, using instead the existing
      fallback to a regular `Worker`.
      
      Steps to reproduce:
      - On a device running iOS 16.1
      - Open Odoo in the iOS mobile app
      => Once connected the app freezes with a gray screen
      
      opw-3045539
      
      closes odoo/odoo#104295
      
      Signed-off-by: default avatarAdrien Dieudonné (adr) <adr@odoo.com>
      afac382b
  8. Oct 23, 2022
  9. Oct 17, 2022
    • tsm-odoo's avatar
      [IMP] bus: last notification id reset after restoring db · 5118da53
      tsm-odoo authored
      
      Before this PR, the last notification id known by the client
      was not reset after restoring the database. This was an issue
      since there can be a gap between the last notification  and the
      one that has been restored with the database. In this scenario,
      messages are not received after restoring the database since the
      client subscribes to higher notification ids that the ones that are
      created.
      
      This PR fixes this issue by defaulting to 0 if the one the client
      passed is higher.
      
      closes odoo/odoo#103025
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      5118da53
  10. Oct 16, 2022
  11. Oct 12, 2022
    • tsm-odoo's avatar
      [FIX] bus: fix threads can only be started once · daded012
      tsm-odoo authored
      
      The `ImDispatch` thread uses the `thread.is_alive` method to check
      whether or not the thread should be started. The issue is that, this
      method will return `False` after the start method has been called, but
      before the run method is invoked leading to the RuntimeError: thread
      can only be started once.
      
      This commit fixes this issue by suppressing this error in this case.
      
      closes odoo/odoo#103153
      
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      daded012
  12. Oct 10, 2022
    • Martin Trigaux's avatar
      [I18N] *: export 16.0 source terms · de550a9c
      Martin Trigaux authored
      
      closes odoo/odoo#102902
      
      Related: odoo/enterprise#32633
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      de550a9c
    • Xavier-Do's avatar
      [IMP] tests: add generic Basecase.start for patch · 7d5a193d
      Xavier-Do authored
      
      Using patcher.start() can easily lead to incorrect cleanup.
      -> after a copy paste, patcher is working, but stop is forgotten
      -> stop is present, but won't be called if something fails during the
      test
      
      This commit add an utility `start(patcher)` to always have the add
      cleanup.
      
      Using a standard way to start the patcher with an automated addCleanup
      should prevent this kind of mistake. This is why this commit also
      replaces all valid patch.start() (followed immediately by a addCleanup)
      
      closes odoo/odoo#101971
      
      Related: odoo/enterprise#32529
      Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
      7d5a193d
  13. Oct 09, 2022
  14. Oct 06, 2022
    • tsm-odoo's avatar
      [FIX] bus: adapt presence service to work with iframe · ce57d449
      tsm-odoo authored
      
      Before this PR, the presence service was relying on window events
      blur/focus to determine whether or not odoo was focused. The issue is
      that in the website backend, an iframe is used. When this iframe is focused,
      the window looses the focus and vice versa.
      
      This commit fixes this issue by using `window.parent.hasFocus` method.
      
      task-3003950
      
      closes odoo/odoo#102479
      
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      ce57d449
    • tsm-odoo's avatar
      [IMP] bus: throttle update bus presence method · 0b581f5a
      tsm-odoo authored
      
      Before this commit, the `updateBusPresence` method could have been
      called many times in a row, resulting in many `update_presence` messages
      being sent through the socket. This commit solves this issue by throttling
      this method in order for it to only be called once in `UPDATE_BUS_PRESENCE_DELAY`
      seconds.
      
      closes odoo/odoo#102251
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      0b581f5a
    • tsm-odoo's avatar
      [FIX] bus: reconnect websocket after user log in/out · 225f8088
      tsm-odoo authored
      
      Before this PR, a websocket would wait for the server to close
      it with a `SessionExpired` close code to be refreshed after the user
      logged in/out. Indeed, the server is responsible to check for outdated
      sessions on incoming/outgoing messages.
      
      This is problematic: a user logging in with more than one tab opened,
      would have to wait to receive its messages. This PR solves this issue
      by refreshing the connection immediately in this scenario.
      
      closes odoo/odoo#101385
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      225f8088
  15. Oct 03, 2022
  16. Oct 02, 2022
  17. Sep 28, 2022
  18. Sep 27, 2022
  19. Sep 26, 2022
  20. Sep 25, 2022
  21. Sep 22, 2022
    • tsm-odoo's avatar
      [FIX] bus: getItemFromStorage error when no dbuuid is provided · ed992ed0
      tsm-odoo authored
      
      The `bus_service` uses the `dbuuid` key from session in order to
      know when to drop the last notification id from the local storage:
      when the db changes.
      
      The issue is that public pages don't fetch the session, this results
      in undefined being added into the local storage. The multi tab service
      speculates on the fact that the value stored will always be json
      parsable.
      
      This commit fixes the issue by taking into account the fact that session
      dbuuid can be undefined. Moreover, the multi tab service has been
      updated to return the raw value if it is not parsable.
      
      closes odoo/odoo#100652
      
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      ed992ed0
    • tsm-odoo's avatar
      [FIX] bus: fix im_status during tests · f0e758b0
      tsm-odoo authored
      
      Before this PR, the `_mockIrWebsocket__updatePresence` route of the
      bus mock server could lead to errors when no im status ids were
      provided. This commit fixes this issue by ensuring im status ids
      were passed before calling `_mockIrWebsocket__getImStatus` method.
      
      Moreover, old longpolling routes were still present on the bus mock
      server. This commit removes these routes.
      
      closes odoo/odoo#100583
      
      closes odoo/odoo#100651
      
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      f0e758b0
  22. Sep 20, 2022
    • tsm-odoo's avatar
      [FIX] bus: handle session expired in peek notifications · be1ea4d3
      tsm-odoo authored
      
      In order to know whether or not the websocket session is up to date,
      the session is saved when opening a websocket connection. Then, for
      each incoming/outgoing message, we check if the session still exists
      on the file system. When it does not exist anymore, the websocket
      connection is refreshed. This ensures the session is always up to date.
      
      Odoo sh proxies the websocket connection and needs a way to tell
      when a websocket session is expired. This commit adds the same
      check that is done for each incoming websocket message in the
      websocket peek route in order to raise a `SessionExpiredException`
      when the session is outdated.
      
      This will allow odoo sh to catch this error and to refresh their
      websocket connection accordingly.
      
      closes odoo/odoo#100416
      
      Signed-off-by: default avatarJulien Castiaux <juc@odoo.com>
      be1ea4d3
    • Denis Vermylen's avatar
      [FIX] bus: fix websocket json routes · 8ec96343
      Denis Vermylen authored
      Transform the /websocket/update_bus_presence route to type='json'
      which makes more sense as a POST than a get, seeing it does things with
      a parameter and doesn't return anything.
      
      Also fixes the _update_bus_presence method that leads to access errors
      when accessed from HTTP when the user is the public one (only portal/
      internal users should update their presences).
      
      Part-of: odoo/odoo#100416
      8ec96343
    • Martin Trigaux's avatar
      [I18N] *: export 16.0 source terms · 1a877276
      Martin Trigaux authored
      
      closes odoo/odoo#100573
      
      Related: odoo/enterprise#31507
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      1a877276
    • tsm-odoo's avatar
      [IMP] mail: remove im status route · 5471bd4c
      tsm-odoo authored
      
      *: bus, hr_holidays.
      
      The `/bus/im_status` route polls the server every minute in order for
      the user im_status to be up to date. This commit removes this poll
      by sending the im_status on the bus when updating the current user
      presence.
      
      Moreover, before [1], the user bus presence was updated on each poll.
      When the user didn't poll for 50 seconds, we assumed the user was
      disconnected. Since [1], the bus presence is updated each 30 seconds
      by the `im_status` service. This is too frequent: there is no need
      to update the user presence so often.
      
      In order not to overhelm the server with unnecessary requests, the update
      presence interval as well as the delay to be considered disconnected
      have been updated: the former from 30 to 60 seconds, the later from
      55 to 65 seconds (assuming that a user that has missed an update
      presence tick is disconnected).
      
      [1]: odoo/odoo@a5623d2
      
      closes odoo/odoo#100249
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      5471bd4c
  23. Sep 19, 2022
  24. Sep 18, 2022
    • qsm-odoo's avatar
      [IMP] web, *: move assets_common files directly inside assets_frontend · 08dcbc8f
      qsm-odoo authored
      
      *: auth_password_policy, bus, calendar, event, mass_mailing, stock,
         survey, web_editor, web_tour, website, website_event, website_forum,
         website_mass_mailing, website_sale
      
      This commit is a first step towards a potential deletion of the
      assets_common bundle, although that step would need more work, specs and
      discussions as some layouts kinda only use the assets_common bundle
      (some take the full assets_common but parts of the assets_backend one
      for example).
      
      The main goal of this commit is to have the assets_frontend bundle
      directly include the "common" files we need. As a first step, this
      commit only blindly duplicates them all into assets_frontend (without
      removing the potentially useless ones). The goal is to have those
      advantages:
      
      - Reaching a frontend page only calls two main JS files (one normal and
        one lazy-loaded) instead of 4 (two normals and two lazy-loaded). This
        may help reach a better google page speed (which is becoming more and
        more strict).
      
      - The frontend CSS is built as one: the common SCSS which was using
        bootstrap variables, or even Odoo-based SCSS added by mistake in
        common instead of both backend and frontend is now computed with the
        right bootstrap customizations. E.g. the tempusdominus datetimepickers
        use bootstrap grays... after this PR, they use the right grays as
        customized by the user on the website.
      
      It was also chosen to not have a common "sub-asset" which is included in
      assets_frontend. Making assets_frontend completely independent makes
      sense (as it probably will for other "main" asset bundles): we can focus
      on adding the files each layout needs without the need of worrying if it
      impacts unrelated layouts. Sub-assets (when not strictly necessary) is
      also a source of errors: extending the "main" bundle instead of the
      right sub-asset it may use (like it was the case with the sub-assets of
      assets_common: _assets_common_scripts and _assets_common_styles as
      explained in the previous commit). So this is indeed a small drawback of
      not factorizing the code for the inclusion of "common" files in bundles
      but it seems more explicit and easier to maintain that way. Note that
      adding "common" file is not the most common usecase anyway, apps
      generally only need files in backend or frontend.
      The __manifest__ declaration will also likely evolve in more and more
      uses of wildcards to match entire directories. In the future, adding
      "common" web-app files in both backend, frontend and other "main"
      bundles could just be about one line duplicated into each bundle.
      
      closes odoo/odoo#100314
      
      Related: odoo/enterprise#31394
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      08dcbc8f
  25. Sep 17, 2022
    • tsm-odoo's avatar
      [FIX] bus: fix channels subscription ater disconnection test · b47a06c6
      tsm-odoo authored
      
      Before this commit, the `channels subscription after disconnect` bus
      test failed randomly. This occured when the websocket reconnection
      happened before the first subscription. Indeed, the first subscription
      is made only if the resulting channel list differs from the last one
      we sent.
      
      This commit fixes the issue by wating for the first subscription
      before disconnecting the websocket.
      
      closes odoo/odoo#100391
      
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      b47a06c6
  26. Sep 16, 2022
    • tsm-odoo's avatar
      [FIX] bus: fix incorrect login colors · 2507be3a
      tsm-odoo authored
      
      Before [1], the web_editor module was auto installed. After that commit,
      the bus module has been added to the web_editor dependencies. Since
      the bus module is not auto installed, the web_editor module dependencies
      are not met which means the login colors are wrong (blue instead of green).
      
      This commit fixes this error by adding the `auto_install` flag to the
      bus module.
      
      [1]: odoo@a5623d24b77f523aeeafbb8c2bfaf27241ef3c8e
      
      closes odoo/odoo#100212
      
      Signed-off-by: default avatarAdrien Dieudonné (adr) <adr@odoo.com>
      2507be3a
  27. Sep 13, 2022
    • tsm-odoo's avatar
      [FIX] bus: fix interface error on server stop · 03e47dd6
      tsm-odoo authored
      
      When stopping the server, all cursors are closed. The issue is that
      the ImDispatch thread is kept alive until the main thread exits.
      
      This can lead to errors during server stop: the ImDispatch thread
      could try to poll an already closed connection thus raising a
      `psycopg2.InterfaceError` exception.
      
      This commit solves the issue by hiding the interface error when
      it occurs during server stop.
      
      closes odoo/odoo#100002
      
      X-original-commit: 83777078
      Signed-off-by: default avatarJulien Castiaux <juc@odoo.com>
      03e47dd6
  28. Sep 12, 2022
  29. Sep 08, 2022
    • tsm-odoo's avatar
      [FIX] bus: keep last notification id during refresh · 26444fca
      tsm-odoo authored
      
      Before the websocket were introduced, the last notification id was
      persisted in the local storage in order to use it even after a page
      reload.
      
      The last notification id is now stored on the `SharedWorker` which
      means this information is lost if the last opened tab is reloaded.
      
      This commit fixes this issue by storing this information by the mean of
      the localStorage. Since the localStorage is not accessible from the
      worker global scope, the bus service will store this information and
      relay it to the worker when starting. The worker will now wait to
      receive the last notification id before subscribing.
      
      closes odoo/odoo#99621
      
      Related: odoo/enterprise#31124
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      26444fca
  30. Sep 07, 2022
    • tsm-odoo's avatar
      [FIX] bus: fix im status service listeners · 29bd02e9
      tsm-odoo authored
      
      The im status service subscribes to the `become_main_tab`,
      `no_longer_main_tab` events.
      
      Since the PR improving the multi tab service, the multi tab
      itself is not an event target anymore but exposes a bus instance
      that should be used to subscribe to those events.
      
      The im status service is still based on the first version (that was
      using env.bus) which means the event will never be received. This
      commit fixes this issue.
      
      closes odoo/odoo#99635
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      29bd02e9
  31. Sep 06, 2022
    • tsm-odoo's avatar
      [FIX] bus: fix display reconnect notification test · 65a9e730
      tsm-odoo authored
      
      The `displays reconnect notification` bus test relies on a `nextTick`
      to assert that a notification is present after the websocket
      disconnection.
      
      The issue is that we can't be sure that the notification will be
      displayed after this tick. Indeed, we need to wait for: the `postMessage`
      to reach the bus service, the notification to be added, the notification
      to be added in the DOM.
      
      This commit solves this issue, by waiting for the next render after the
      `simulateConnectionLost` method to occur.
      
      closes odoo/odoo#99590
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      65a9e730
Loading