about summary refs log tree commit diff stats
path: root/adapter/protocol/data.nim
blob: 7b02297672e114c18424c35fe5a5bbb37417c77d (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
import std/envvars
import std/base64
import std/strutils

import utils/twtstr

proc main() =
  let str = getEnv("MAPPED_URI_PATH")
  const si = "data:".len # start index
  var ct = str.until(',', si)
  for c in ct:
    if c notin AsciiAlphaNumeric and c != '/':
      stdout.write("Cha-Control: ConnectionError -7 invalid data URL")
      return
  let sd = si + ct.len + 1 # data start
  let body = percentDecode(str, sd)
  if ct.endsWith(";base64"):
    try:
      let d = base64.decode(body) # decode from ct end + 1
      ct.setLen(ct.len - ";base64".len) # remove base64 indicator
      stdout.write("Content-Type: " & ct & "\n\n")
      stdout.write(d)
    except ValueError:
      stdout.write("Cha-Control: ConnectionError -7 invalid data URL")
  else:
    stdout.write("Content-Type: " & ct & "\n\n")
    stdout.write(body)

main()