Giter VIP home page Giter VIP logo

Comments (2)

mbeijen avatar mbeijen commented on June 26, 2024

In my opinion a third parameter to mimetype_isa would be a nice option.

Can you give a few examples of actual parameters and their result to this function?

We then could also use those for the documentation.

from file-mimeinfo.

doriantaylor avatar doriantaylor commented on June 26, 2024

The proposal is to change the behaviour of mimetype_isa to try harder to answer whether type A isa type B, so the third option would just be a flag to turn that on:

# recursion
mimetype_isa('application/xhtml+xml', 'text/plain'); # false
mimetype_isa('application/xhtml+xml', 'text/plain', 1); # true

# aliases
mimetype_isa('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/x-zip-compressed'); # false
mimetype_isa('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/x-zip-compressed', 1); # true

This is the default behaviour of the wrapper I wrote in Role::MimeInfo. I wrote that thing because I found myself writing the same routines over and over with File::MimeInfo to normalize content types (e.g. from the wild) and compare them recursively.

One use case in particular is testing a claimed MIME type (e.g. from a Content-Type header or derived from a file extension) against the contents of a file or HTTP upload to see if the claimed type is at least as specific as the detected one. I do this in my own work in a number of places.

It makes sense that this functionality be universal and not just in a Moo(se) role, but of course there are probably systems that depend on the current behaviour of mimetype_isa exactly as it is.

from file-mimeinfo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.