about summary refs log tree commit diff stats
path: root/src/utils/mimeguess.nim
blob: 5bbabcc13eb8381c7fbeedba0d8fdf7b88a18441 (plain) (blame)
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
import std/algorithm
import std/streams

import config/mimetypes

const DefaultGuess* = block:
  let ss = newStringStream(staticRead"res/mime.types")
  parseMimeTypes(ss)

func guessContentType*(mimeTypes: MimeTypes; path: string;
    fallback = "application/octet-stream"): string =
  var n = 0
  for i in countdown(path.high, 0):
    if path[i] == '/':
      break
    if path[i] == '.':
      n = i
      break
  if n > 0:
    let ext = path.substr(n + 1)
    if ext in mimeTypes:
      return mimeTypes[ext]
  return fallback

const JavaScriptTypes = [
  "application/ecmascript",
  "application/javascript",
  "application/x-ecmascript",
  "application/x-javascript",
  "text/ecmascript",
  "text/javascript",
  "text/javascript1.0",
  "text/javascript1.1",
  "text/javascript1.2",
  "text/javascript1.3",
  "text/javascript1.4",
  "text/javascript1.5",
  "text/jscript",
  "text/livescript",
  "text/x-ecmascript",
  "text/x-javascript"
]

func isJavaScriptType*(s: string): bool =
  return JavaScriptTypes.binarySearch(s) != -1