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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
* Copyright (C) 2014 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: Arto Jalkanen <ajalkane@gmail.com>
*/
.import Ubuntu.Content 1.3 as CH
/**
* For now a simple static mapping of file extensions to ContentHub types.
* This is enough for RTM, but in the future a better strategy would be
* for asking for the MIME-type of the file and mapping that to the
* ContentType
*/
var __mapping = {
'png': CH.ContentType.Pictures,
'jpg': CH.ContentType.Pictures,
'jpeg': CH.ContentType.Pictures,
'bmp': CH.ContentType.Pictures,
'gif': CH.ContentType.Pictures,
'mp3': CH.ContentType.Music,
'ogg': CH.ContentType.Music,
'wav': CH.ContentType.Music,
'm4a': CH.ContentType.Music,
'opus': CH.ContentType.Music,
'flac': CH.ContentType.Music,
'avi': CH.ContentType.Videos,
'mpeg': CH.ContentType.Videos,
'mp4': CH.ContentType.Videos,
'mkv': CH.ContentType.Videos,
'mov': CH.ContentType.Videos,
'wmv': CH.ContentType.Videos,
'txt': CH.ContentType.Documents,
'odt': CH.ContentType.Documents,
'doc': CH.ContentType.Documents,
'docx': CH.ContentType.Documents,
'ods': CH.ContentType.Documents,
'xls': CH.ContentType.Documents,
'xlsx': CH.ContentType.Documents,
'odp': CH.ContentType.Documents,
'ppt': CH.ContentType.Documents,
'pptx': CH.ContentType.Documents,
'pdf': CH.ContentType.Documents,
'vcf': CH.ContentType.Contacts,
'vcard': CH.ContentType.Contacts,
}
function resolveContentType(fileUrl) {
console.log("resolveContentType for file", fileUrl)
var extension = __fileExtension(fileUrl)
extension = extension.toLowerCase()
console.log("file extension:", extension)
var contentType = __mapping[extension]
if (contentType === null) {
console.log("Unrecognized extension", extension)
contentType = CH.ContentType.Unknown
}
console.log("returning contentType:", contentType)
return contentType
}
function __fileExtension(fileUrl) {
var lastDotIndex = fileUrl.lastIndexOf('.')
return lastDotIndex > -1 ? fileUrl.substring(lastDotIndex + 1) : ''
}
|