Skip to content
  1. Jan 11, 2024
  2. Jun 04, 2023
  3. Jun 01, 2023
  4. May 23, 2023
  5. Apr 08, 2023
  6. Mar 13, 2023
  7. Mar 05, 2023
  8. Feb 12, 2023
  9. Feb 11, 2023
  10. Feb 04, 2023
  11. Jan 29, 2023
  12. Dec 14, 2022
  13. Jun 27, 2022
  14. Jun 13, 2022
  15. Mar 29, 2022
  16. Mar 09, 2022
  17. Feb 28, 2022
  18. Feb 18, 2022
  19. Jan 26, 2022
    • Daniel Zhu's avatar
      [bforbank] Fix life insurance history · 4792991f
      Daniel Zhu authored and ntome's avatar ntome committed
      Prior to this commit, trying to retrieve the history of a life
      insurance resulted in an error 500. It seems the bank website has
      changed its parameter `id_account` in the URL by a given code,
      loaded when the accounts are retrieved.
      
      The previous endpoint:
      
      `/espace-client/assuranceVie/{id_account}`
      
      is now:
      
      `/espace-client/assuranceVie/{url_code}`
      
      Fixing this allow to retrieve once again the history of a life
      insurance account.
      4792991f
  20. Sep 23, 2021
  21. Aug 27, 2021
  22. Aug 13, 2021
  23. Jul 23, 2021
    • Damien Mat Jedrzejewski's avatar
      [bforbank] fix IBAN and card page with account._url_code · 3400ccef
      Damien Mat Jedrzejewski authored and hydrargyrum's avatar hydrargyrum committed
      Recently some URLs have changed their account id param.
      Instead of the account id, they needed the new _url_code
      attribute. Not using this one leads to error 500 with a
      maintenance message that is in fact deceptive.
      
      Since the implementation of the new URLs, IBAN were not retrieved anymore.
      That is because the RIB request also need to use _url_code.
      This commit fixes this, as well as simplifying and cleaning the way
      IBAN is retrieved.
      
      _url_code must also now be used to access card_page
      or we also end up on a error 500.
      3400ccef
  24. Jun 30, 2021
  25. Jun 05, 2021
    • Damien Ramelet's avatar
      [bforbank] Change regex in order to correctly recover url value · fba22b3e
      Damien Ramelet authored and hydrargyrum's avatar hydrargyrum committed
      On BforBank website, when an user has several accounts, there is a
      dropdown with all accounts available. The module iterate over this
      dropdown and recover the value attribute of each <option> in order to build the
      url that lead to saids accounts.
      
      The previous regex that extract the value attribute was like this:
      
      r'[^\d]' which allow to extract this value 123456789 and lead to build
      this kind of url :
      
      BASE_URL/espace-client/rib/123456789
      
      This now lead to a 500 error and a lookalike unavailable/maintenance page.
      
      The value attribute has obviously changed, and now look like this :
      
      COMPTE_TITRE/yLsl6hUcNO_FbC7i9i0fUkFdESgVzGF2nwVuHfQhs08=
      
      PEA/Alql9hUcDO_FbL4i9i4fUoPdJSgQzHF2nwVuHfQhs08=
      
      etc...
      
      r'/(.+)' allow to extract the value following the slash and build
      this kind of url:
      
      BASE_URL/espace-client/rib/wk4C9nIlhkw8-DGPATODM4QuZgPTf5-RQb1ftWHpoqA=
      fba22b3e
    • Christophe François's avatar
      [bforbank] Fix navigation to life insurance space · 69b0ae2a
      Christophe François authored and hydrargyrum's avatar hydrargyrum committed
      The URL without the account's ID leads to a 404 error.
      69b0ae2a
  26. Apr 26, 2021
  27. Apr 11, 2021
  28. Apr 04, 2021
  29. Dec 26, 2020