1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* Copyright (C) 2012-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include <map>
#include <string>
class CURL;
class CFileItem;
class CMime
{
public:
static std::string GetMimeType(const std::string &extension);
static std::string GetMimeType(const CFileItem &item);
static std::string GetMimeType(const CURL &url, bool lookup = true);
enum EFileType
{
FileTypeUnknown = 0,
FileTypeHtml,
FileTypeXml,
FileTypePlainText,
FileTypeZip,
FileTypeGZip,
FileTypeRar,
FileTypeBmp,
FileTypeGif,
FileTypePng,
FileTypeJpeg,
};
static EFileType GetFileTypeFromMime(const std::string& mimeType);
static EFileType GetFileTypeFromContent(const std::string& fileContent);
private:
static bool parseMimeType(const std::string& mimeType, std::string& type, std::string& subtype);
static const std::map<std::string, std::string> m_mimetypes;
};
|