2021-02-15 21:29:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Mime lookup
|
|
|
|
*
|
2023-07-07 22:33:10 +02:00
|
|
|
* @private
|
2021-02-15 21:29:38 +01:00
|
|
|
*/
|
|
|
|
class Less_Mime {
|
|
|
|
|
|
|
|
// this map is intentionally incomplete
|
|
|
|
// if you want more, install 'mime' dep
|
2023-07-07 22:33:10 +02:00
|
|
|
private static $types = [
|
|
|
|
'.htm' => 'text/html',
|
|
|
|
'.html' => 'text/html',
|
|
|
|
'.gif' => 'image/gif',
|
|
|
|
'.jpg' => 'image/jpeg',
|
|
|
|
'.jpeg' => 'image/jpeg',
|
|
|
|
'.png' => 'image/png',
|
|
|
|
'.ttf' => 'application/x-font-ttf',
|
|
|
|
'.otf' => 'application/x-font-otf',
|
|
|
|
'.eot' => 'application/vnd.ms-fontobject',
|
|
|
|
'.woff' => 'application/x-font-woff',
|
|
|
|
'.svg' => 'image/svg+xml',
|
|
|
|
];
|
2021-02-15 21:29:38 +01:00
|
|
|
|
|
|
|
public static function lookup( $filepath ) {
|
|
|
|
$parts = explode( '.', $filepath );
|
2023-07-07 22:33:10 +02:00
|
|
|
$ext = '.' . strtolower( array_pop( $parts ) );
|
2021-02-15 21:29:38 +01:00
|
|
|
|
2023-07-07 22:33:10 +02:00
|
|
|
return self::$types[$ext] ?? null;
|
2021-02-15 21:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function charsets_lookup( $type = null ) {
|
|
|
|
// assumes all text types are UTF-8
|
|
|
|
return $type && preg_match( '/^text\//', $type ) ? 'UTF-8' : '';
|
|
|
|
}
|
|
|
|
}
|