|
1 | 1 | # PHP Mime Detector
|
2 | 2 |
|
3 |
| -Detecting the real type of (binary) files doesn't have to be hard. Checking a file's extension is not reliable and can cause serious security issues. |
| 3 | +Detecting the real type of (binary) files doesn't have to be difficult. Checking a file's extension is not reliable and can lead to serious security issues. |
4 | 4 |
|
5 |
| -This package helps you to determine the correct type of files, by reading it byte for byte (up to 4096) and check for [magic numbers](http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files). |
| 5 | +This package helps you determine the correct type of files by reading them byte by byte (up to 4096 bytes) and checking for [magic numbers](http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files). |
6 | 6 |
|
7 |
| -However, this package isn't a replacement for any security software. It just aims to produce less false positives, than a simple extension check would produce. |
| 7 | +However, this package isn't a replacement for any security software. It simply aims to produce fewer false positives than a simple extension check would. |
8 | 8 |
|
9 | 9 | A list of supported file types can be found on [this Wiki page](https://github.com/SoftCreatR/php-mime-detector/wiki/Supported-file-types).
|
10 | 10 |
|
11 |
| -__Why a separate class?__ |
| 11 | +## Why a Separate Class? |
12 | 12 |
|
13 |
| -You may wonder why we don't just rely on extensions like [Fileinfo](https://secure.php.net/manual/en/book.fileinfo.php)? First off all, a short background story: |
| 13 | +You may wonder why we don't just rely on extensions like [Fileinfo](https://www.php.net/manual/en/book.fileinfo.php). Here's a brief background: |
14 | 14 |
|
15 |
| -We are building extensions and applications for an Open Source PHP Framework, thus we are creating web software for the masses. Many of our customers and/or users of our free products are on shared hosting without any possibility to install or manage installed PHP extensions. So our goal is to develop solutions with as few dependencies as necessary, but with as much functionality as possible. |
| 15 | +We develop extensions and applications for an Open Source PHP Framework, creating web software for the masses. Many of our customers and users of our free products are on shared hosting without any ability to install or manage PHP extensions. Therefore, our goal is to develop solutions with minimal dependencies while providing as much functionality as possible. |
16 | 16 |
|
17 |
| -While developing a solution, that allows people to convert HEIF/HEIC files to a more "standardized" format (using our own, external API), we had troubles detecting these files, because especially this format isn't known by most Webservers, yet. While checking the file extension isn't reliable, we had to find a reusable solution that works for most of our clients. So we started to build a magic number based check for these files. That was the birth of our Mime Detector. |
18 |
| - |
19 |
| -__Why are the unit tests so poorly written?__ |
20 |
| - |
21 |
| -Short answer: I have just little experience in unit testing. This project was a good training and even if the unit tests could be better: I am proud of my progress :) |
22 |
| - |
23 |
| -## Demo |
24 |
| - |
25 |
| -A demo (based on [dev-master](https://github.com/SoftCreatR/php-mime-detector/archive/master.zip)) can be found at [WhatTheFile.info](https://www.whatthefile.info). |
| 17 | +When developing a solution that allows people to convert HEIF/HEIC files to a more "standardized" format (using our own external API), we had trouble detecting these files because this format isn't widely recognized by most web servers. Since checking the file extension isn't reliable, we needed to find a reusable solution that works for most of our clients. This led to the creation of our Mime Detector, based on magic number checks. |
26 | 18 |
|
27 | 19 | ## Requirements
|
28 | 20 |
|
29 |
| -- PHP 7.1 or newer |
30 |
| -- [Composer](https://getcomposer.org) |
31 |
| - |
32 |
| -If you are looking for a solution that works on older PHP versions (5.3.2+), head over to the [oldphp](https://github.com/SoftCreatR/php-mime-detector/tree/oldphp) branch. |
| 21 | +- PHP 8.1 or newer |
| 22 | +- [Composer](https://getcomposer.org) |
33 | 23 |
|
34 | 24 | ## Installation
|
35 | 25 |
|
36 |
| -Require this package using [Composer](https://getcomposer.org/), in the root directory of your project: |
| 26 | +Install this package using [Composer](https://getcomposer.org/) in the root directory of your project: |
37 | 27 |
|
38 |
| -``` bash |
39 |
| -$ composer require softcreatr/php-mime-detector |
| 28 | +```bash |
| 29 | +composer require softcreatr/php-mime-detector |
40 | 30 | ```
|
41 | 31 |
|
42 | 32 | ## Usage
|
43 | 33 |
|
44 |
| -Here is an example on how this package makes it very easy to determine the mime type (and it's corresponding file extension) of a given file: |
| 34 | +Here is an example of how this package makes it easy to determine the MIME type and corresponding file extension of a given file: |
45 | 35 |
|
46 | 36 | ```php
|
47 |
| -use SoftCreatR\MimeDetector\MimeDetector; |
48 |
| -use SoftCreatR\MimeDetector\MimeDetectorException; |
49 |
| - |
50 |
| -// create an instance of the MimeDetector |
51 |
| -$mimeDetector = new MimeDetector(); |
52 |
| - |
53 |
| -// set our file to read |
54 |
| -try { |
55 |
| - $mimeDetector->setFile('foo.bar'); |
56 |
| -} catch (MimeDetectorException $e) { |
57 |
| - die('An error occurred while trying to load the given file.'); |
58 |
| -} |
| 37 | +<?php |
59 | 38 |
|
60 |
| -// try to determine it's mime type and the correct file extension |
61 |
| -$fileData = $mimeDetector->getFileType(); |
62 |
| - |
63 |
| -// print the result |
64 |
| -echo '<pre>' . print_r($fileData, true) . '</pre>'; |
65 |
| -``` |
66 |
| - |
67 |
| -Or short: |
68 |
| - |
69 |
| -```php |
70 | 39 | use SoftCreatR\MimeDetector\MimeDetector;
|
71 | 40 | use SoftCreatR\MimeDetector\MimeDetectorException;
|
72 | 41 |
|
| 42 | +require 'vendor/autoload.php'; |
| 43 | + |
73 | 44 | try {
|
74 |
| - echo '<pre>' . print_r((new MimeDetector())->setFile('foo.bar')->getFileType(), true) . '</pre>'; |
| 45 | + // Create an instance of MimeDetector with the file path |
| 46 | + $mimeDetector = new MimeDetector('foo.bar'); |
| 47 | + |
| 48 | + // Get the MIME type and file extension |
| 49 | + $fileData = [ |
| 50 | + 'mime_type' => $mimeDetector->getMimeType(), |
| 51 | + 'file_extension' => $mimeDetector->getFileExtension(), |
| 52 | + 'file_hash' => $mimeDetector->getFileHash(), |
| 53 | + ]; |
| 54 | + |
| 55 | + // Print the result |
| 56 | + echo '<pre>' . print_r($fileData, true) . '</pre>'; |
75 | 57 | } catch (MimeDetectorException $e) {
|
76 |
| - die('An error occurred while trying to load the given file.'); |
| 58 | + die('An error occurred while trying to load the given file: ' . $e->getMessage()); |
77 | 59 | }
|
78 | 60 | ```
|
79 | 61 |
|
80 | 62 | ## Testing
|
81 | 63 |
|
82 |
| -Testing utilizes PHPUnit (what else?) by running this command: |
| 64 | +This project uses PHPUnit for testing. To run tests, use the following command: |
83 | 65 |
|
84 |
| -``` bash |
85 |
| -$ composer test |
| 66 | +```bash |
| 67 | +composer test |
86 | 68 | ```
|
87 | 69 |
|
88 |
| -However, you may check out a bunch of test files for a full test. Test files are no longer included in the composer package nor the Git repository itself, so you have to perform a checkout of this repository and install it's submodules: |
| 70 | +To run a full test suite, you can use a set of provided test files. These files are not included in the Composer package or Git repository, so you must clone this repository and initialize its submodules: |
89 | 71 |
|
90 |
| -``` bash |
91 |
| -$ git clone https://github.com/SoftCreatR/php-mime-detector |
92 |
| -$ cd php-mime-detector |
93 |
| -$ git submodule update --init --recursive |
| 72 | +```bash |
| 73 | +git clone https://github.com/SoftCreatR/php-mime-detector |
| 74 | +cd php-mime-detector |
| 75 | +git submodule update --init --recursive |
94 | 76 | ```
|
95 | 77 |
|
96 |
| -When done, perform a `composer install` and run PHPUnit as described above. |
| 78 | +After that, install the necessary dependencies with `composer install`, and run PHPUnit as described above. |
97 | 79 |
|
98 | 80 | ## ToDo
|
99 | 81 |
|
100 |
| -- Reduce method sizes, when possible |
101 |
| -- Add a method, that accepts a mime type and returns the corresponding file extension |
102 |
| -- Add a method, that accepts a file extension and returns a list of corresponding mime types |
103 |
| -- Add a method, that returns a list of all detectable mime types and their corresponding file extensions |
| 82 | +- Reduce method sizes where possible. |
| 83 | +- Add a method that accepts a MIME type and returns the corresponding file extension. |
| 84 | +- Add a method that accepts a file extension and returns a list of corresponding MIME types. |
| 85 | +- Add a method that returns a list of all detectable MIME types and their corresponding file extensions. |
104 | 86 |
|
105 | 87 | ## Contributing
|
106 | 88 |
|
107 | 89 | Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
|
108 | 90 |
|
109 |
| -When adding new detections, please make sure to provide at least one sample file. |
| 91 | +When adding new detections, please provide at least one sample file to ensure the detection works as expected. |
110 | 92 |
|
111 | 93 | ## License
|
112 | 94 |
|
113 |
| -[ISC](LICENSE.md) |
| 95 | +[ISC License](LICENSE.md) |
114 | 96 |
|
115 | 97 | Free Software, Hell Yeah!
|
0 commit comments