xref: /webtrees/app/Mime.php (revision e7f16b4369a9ba8666852184c6b908e3b2a5f760)
1*e7f16b43SGreg Roach<?php
2*e7f16b43SGreg Roach
3*e7f16b43SGreg Roach/**
4*e7f16b43SGreg Roach * webtrees: online genealogy
5*e7f16b43SGreg Roach * Copyright (C) 2020 webtrees development team
6*e7f16b43SGreg Roach * This program is free software: you can redistribute it and/or modify
7*e7f16b43SGreg Roach * it under the terms of the GNU General Public License as published by
8*e7f16b43SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9*e7f16b43SGreg Roach * (at your option) any later version.
10*e7f16b43SGreg Roach * This program is distributed in the hope that it will be useful,
11*e7f16b43SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12*e7f16b43SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13*e7f16b43SGreg Roach * GNU General Public License for more details.
14*e7f16b43SGreg Roach * You should have received a copy of the GNU General Public License
15*e7f16b43SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16*e7f16b43SGreg Roach */
17*e7f16b43SGreg Roach
18*e7f16b43SGreg Roachdeclare(strict_types=1);
19*e7f16b43SGreg Roach
20*e7f16b43SGreg Roachnamespace Fisharebest\Webtrees;
21*e7f16b43SGreg Roach
22*e7f16b43SGreg Roach/**
23*e7f16b43SGreg Roach * A list of known or supported mime types
24*e7f16b43SGreg Roach */
25*e7f16b43SGreg Roachclass Mime
26*e7f16b43SGreg Roach{
27*e7f16b43SGreg Roach    public const DEFAULT_TYPE = 'application/octet-stream';
28*e7f16b43SGreg Roach
29*e7f16b43SGreg Roach    // Convert extension to mime-type
30*e7f16b43SGreg Roach    public const TYPES = [
31*e7f16b43SGreg Roach        'bmp'  => 'image/bmp',
32*e7f16b43SGreg Roach        'css'  => 'text/css',
33*e7f16b43SGreg Roach        'doc'  => 'application/msword',
34*e7f16b43SGreg Roach        'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
35*e7f16b43SGreg Roach        'ged'  => 'text/x-gedcom',
36*e7f16b43SGreg Roach        'gif'  => 'image/gif',
37*e7f16b43SGreg Roach        'htm'  => 'text/html',
38*e7f16b43SGreg Roach        'html' => 'text/html',
39*e7f16b43SGreg Roach        'ico'  => 'image/x-icon',
40*e7f16b43SGreg Roach        'jpe'  => 'image/jpeg',
41*e7f16b43SGreg Roach        'jpeg' => 'image/jpeg',
42*e7f16b43SGreg Roach        'jpg'  => 'image/jpeg',
43*e7f16b43SGreg Roach        'js'   => 'application/javascript',
44*e7f16b43SGreg Roach        'json' => 'application/json',
45*e7f16b43SGreg Roach        'mov'  => 'video/quicktime',
46*e7f16b43SGreg Roach        'mp3'  => 'audio/mpeg',
47*e7f16b43SGreg Roach        'mp4'  => 'video/mp4',
48*e7f16b43SGreg Roach        'ogv'  => 'video/ogg',
49*e7f16b43SGreg Roach        'pdf'  => 'application/pdf',
50*e7f16b43SGreg Roach        'png'  => 'image/png',
51*e7f16b43SGreg Roach        'rar'  => 'application/x-rar-compressed',
52*e7f16b43SGreg Roach        'svg'  => 'image/svg',
53*e7f16b43SGreg Roach        'swf'  => 'application/x-shockwave-flash',
54*e7f16b43SGreg Roach        'tif'  => 'image/tiff',
55*e7f16b43SGreg Roach        'tiff' => 'image/tiff',
56*e7f16b43SGreg Roach        'txt'  => 'text/plain',
57*e7f16b43SGreg Roach        'wmv'  => 'video/x-ms-wmv',
58*e7f16b43SGreg Roach        'xls'  => 'application/vnd-ms-excel',
59*e7f16b43SGreg Roach        'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
60*e7f16b43SGreg Roach        'xml'  => 'application/xml',
61*e7f16b43SGreg Roach        'zip'  => 'application/zip',
62*e7f16b43SGreg Roach    ];
63*e7f16b43SGreg Roach}
64