Coder Social home page Coder Social logo

mime's Introduction

MIME

Multipurpose Internet Mail Extensions (MIME) written in Swift language. This is one of the packages of Chaqmoq. Read the documentation for more info.

mime's People

Contributors

elyahk avatar sukhrobkhakimov avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

nurlight19

mime's Issues

Add guessing `heic` file mime type by data

Is your feature request related to a problem? Please describe.

  1. This repo doesn't guess HEIC file mime type with data. When I tried to guess HEIC file from data using MIME.guess(data: data), I got the result with video/mp4 mime type which is absolutely wrong.
  2. This repo doesn't guess CSV file mime type with data. When I tried to guess CSV file from data using MIME.guess(data: data), I got the result with application/octet-stream mime type which is absolutely wrong.

Describe the solution you'd like

  1. Possible solution is that on the guess(data: Data) method, need to add one if else case by checking bytesCount > 11 && (bytes[8...11] == [0x68, 0x65, 0x69, 0x63] || bytes[8...11] == [0x68, 0x65, 0x69, 0x78] and return .init("image/heic")

Whole code should look like that:

  } else if bytesCount > 11 && (bytes[8...11] == [0x68, 0x65, 0x69, 0x63] || bytes[8...11] == [0x68, 0x65, 0x69, 0x78]) {
            return .init("image/heic")
        }
  1. For the CSV file I couldn't find possible solution

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
I tried to PR but unfortunately, I couldn't push my changes because of credientals. So, I thought it is better to create issue on that case. Thanks for fixing this issue in advance

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.