PHP errors when used on a route that returns 403

Created on 17 October 2024, 6 months ago

Problem/Motivation

When using this module with a rest export view or views data export route it produces some php errors if the route is authenticated and an anonymous user tries to access it.

Steps to reproduce

  1. Enable rest export with format xls or xlsx
  2. Add authentication
  3. Access route as anonymous user

As the authentication on the view fails an exception is thrown which is handled by the serialization module which then tries to serialize the error here - https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/seria...

As the encoded needs really needs an array of arrays it produces the error:

Exception: TypeError: array_keys(): Argument #1 ($array) must be of type array, string given
array_keys()() (Line: 327)

Proposed resolution

One option is to make the encoder a bit safer - currently encode converts data to an array, but really it needs to be an array of array. Either to happen at the top level or perhaps minor changes in setHeaders and setData, possible places.

Another option is to do what jsonapi in core does and have a custom exception handler - e.g like https://git.drupalcode.org/project/drupal/-/blame/11.x/core/modules/json... to do some handling of the exception message before it gets passed to the serializer.

Remaining tasks

- Decide on approach

User interface changes

n/a

API changes

n/a

Data model changes

n/a

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇳🇿New Zealand ericgsmith

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

Comments & Activities

Production build 0.71.5 2024