FileGetMimeType() - doesn't throw an error when the file does not exist or is empty

Description

Using FileGetMimeType, if run the below code it returns mime-type of file. Although that file does not exist on the path

https://docs.lucee.org/reference/functions/filegetmimetype.html

https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-e-g/filegetmimetype.html

Solution

Strict is by default true

For Lucee 6.0,

  • when strict is false, this existing behaviour will be supported.

  • when strict is true, an empty or non existent file will now throw an error

Previously, strict was ignored in Lucee, as Lucee only bundles Tika core, not the full suite of tika-parsers due to it’s size and all the dependencies

(maybe we add a tika extension with the whole gang of parsers and libs?)

Environment

None

Activity

Show:

Pothys - MitrahSoft 5 December 2022 at 11:20
Edited

I've checked this issue against the fixed version 6.0.0.303 & confirmed that, issue has been resolved.

Zac Spitzer 2 December 2022 at 15:22

Zac Spitzer 18 November 2022 at 16:50
Edited

With this PR, when strict is true (default), if the file doesn’t exist or is empty, fileGetMimeType() will now throw an error ( a minor breaking change for the better )

I also added to the description of strict, information that we use apache tika, without the parsers and this new behaviour

plus I added the aliases to match the argument names for ACF

Zac Spitzer 28 April 2022 at 02:06

Let’s break this for 6.0, for most files a 0 byte is invalid, every file function throws a not found

most good code is always going to be doing a fileExist() or directoryList() result before calling this function

Michael Offner 20 December 2019 at 18:24

i agree on the role the argument “strict“ plays in this, atm it is ignored.

Fixed

Details

Assignee

Reporter

Priority

Fix versions

New Issue warning screen

Before you create a new Issue, please post to the mailing list first https://dev.lucee.org

Once the issue has been verified, one of the Lucee team will ask you to file an issue

Sprint

Affects versions

Created 31 July 2019 at 07:38
Updated 8 June 2023 at 08:49
Resolved 5 December 2022 at 11:20