Deepchat bot doesn't work for anonymous user

Created on 5 February 2025, 2 months ago

Problem/Motivation

My goal is for the anonymous user to access and use the chatbot. Currently there's an whenever the anonymous user sends a message in the Deepchat-block:

Path: /api/deepchat?token=xxx. Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException: 'csrf_token' URL query argument is invalid. in Drupal\Core\Routing\AccessAwareRouter->checkAccess() (line 118 of /var/www/html/web/core/lib/Drupal/Core/Routing/AccessAwareRouter.php).

This can be 'fixed' by removing the requirement for `_csrf_token` in the route (see patch), but probably that's not ideal.

🐛 Bug report
Status

Active

Version

1.1

Component

Other Submodules

Created by

🇩🇪Germany dotist

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @dotist
  • 🇩🇪Germany marcus_johansson

    The CSRF token must stay for security reasons, this sounds like a caching issue or that a session perhaps needs to start. We have it working for anonymous users on other websites.

    Could you answer if you have bigpipe installed and what caching/cdn modules you might have installed, so we can try to replicate this.

  • 🇩🇪Germany dotist

    Thanks for your quick response! Indeed, after removing the CSRF token, loading the bot and then re-adding the token, the bot still works. So it's something to do with caching or timing.

    The problem is in a local DDEV container using:
    * Internal Dynamic Page Cache
    * Internal Page Cache

  • 🇮🇳India anjaliprasannan

    @dotist @marcus_johansson We have the chatbot working for anonymous user. I tried without the patch and its working for both authorized and anonymous user.

  • 🇩🇪Germany a.dmitriiev

    As an idea, maybe CSRF token should be passed by the client in a header instead? At the moment the cache max age is set to 0 only because of this token in the url, right? Or is there any other reason to have the block itself non-cacheable?

    The client (JS part) can obtain the token by visiting the url session/token and then use it in X-CSRF-Token. This way there will be no need to url to have the token as query parameter.

    Maybe I am wrong, of course.

  • 🇩🇪Germany dotist

    turns out that my problem was actually the Cookie/Shield in the Brave browser... Maybe there could be a notification to the user when something like this is detected?

  • Merge request !496Resolve #3504510 "Deepchat bot doesnt" → (Merged) created by marcus_johansson
  • 🇩🇪Germany marcus_johansson

    So there was a general known issue with Drupal core, that if no sessions is started the csrf token simply does not work, see 🐛 CSRF check always fails for users without a session Needs work .

    I have added so when the chatbot is created, it will generate a session if it doesn't exist, and then generate a new csrf token in the same call. This will then via js reset the connect parameter to use this.

    Performance wise this makes it possible to remove the complete none-cache of the block and set it per user instead, but this also means that a new session will be created for any anonymous user where the block is loaded.

    I did fix a minor bug issue here as well connected to loading styles, that got fixed here as well.

    Please test and review the code.

  • 🇬🇧United Kingdom andrewbelcher

    Looks good now, thanks Marcus!

  • 🇩🇪Germany marcus_johansson

    Thanks @andrewbelcher for review. Getting merged.

  • Automatically closed - issue fixed for 2 weeks with no activity.

  • 🇩🇪Germany dotist

    In our frontend we override deepchat-init.js because of custom UI needs. Because of such cases, it would be nice if the session js was separate from the UI js, so that when overriding, one don't have copy over the session logic as well. See patch.

Production build 0.71.5 2024