summaryrefslogtreecommitdiff
path: root/lupin.lua
blob: 851830ba416e9a5e513dc8d4711dd26581282de0 (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
posix = require 'posix'
json = require 'json'
http = require 'lcurl'

require 'tokyocabinet'
require 'corz'

CACHE = "/home/bie/tmp.db"

cache = tokyocabinet.bdbnew()

function oembed(endpoint, id)
  cache:open(CACHE, cache.OWRITER + cache.OREADER)
  local url = endpoint .. id
  local cached = cache:get(id)
  if cached then
    local data = json.decode(cached)
    cache:close()
    return data.html
  end

  local body = ""
  local result = http.easy{url=url, writefunction=function(s)
    body = body .. s
  end}:perform()
  if result:getinfo(http.INFO_RESPONSE_CODE) == 200 then
    cache:put(id, body)
    cache:close()
    local data = json.decode(body)
    return data.html
  else
    return ("<b>Klarte ikke embedde %s :(</b>"):format(url)
  end
end

function twitter(id)
  return oembed("https://publish.twitter.com/oembed?url=", id)
end

function youtube(id)
  return oembed("http://www.youtube.com/oembed?url=", id)
end

function soundcloud(id)
  return oembed("https://soundcloud.com/oembed?format=json&url=", id)
end

function vimeo(id)
  return oembed("https://developer.vimeo.com/apis/oembed.json?url=", id)
end

function twitch(id)
  return oembed("https://api.twitch.tv/v4/oembed?url=", id)
end

function instagram(id)
  return oembed("https://api.instagram.com/oembed?url=", id)
end

function flickr(id)
  return oembed("https://www.flickr.com/services/oembed?url=", id)
end

function facebook(id)
  return oembed("https://www.facebook.com/plugins/video/oembed.json?url=", id)
end


local function printf(...) io.write(string.format(...)) end

local function setfenv(fn, env)
  local i = 1
  while true do
    local name = debug.getupvalue(fn, i)
    if name == "_ENV" then
      debug.upvaluejoin(fn, i, (function()
        return env
      end), 1)
      break
    elseif not name then
      break
    end
    i = i + 1
  end
  return fn
end


local html = {}
function html.print(...)
  printf(...)
end
function html.tag(tag, options)
  options = options or {}
  local text = options.text; options.text = nil
  printf("<%s", tag)
  for k, v in pairs(options) do
    if v and v ~= "" then
      printf(" %s='%s'", k, v)
    else
      printf(" %s", k)
    end
  end
  printf(">")
  if text then
    printf(text or "")
    printf("</%s>", tag)
  end
  printf("\n")
end
function html.label(options)
  options.text = options.text or error("no text")
  html.tag("label", options)
end
function html.orz(options)
  if options.inline then
    html.tag("a", { class = 'orz', text = 'orz'})
    return
  end
  local n = options.name or "orz"
  local v = options.value or "//:0"
  local uri = options.uri or "/orz/"
  html.tag('img', { class='orz', ['data-name']=n, src=v, ['data-uri']=uri})
  html.tag('input', { name=n, value=v, type='hidden'})
  html.tag('a', { class='orz', ['data-name']=n, ['data-uri']=uri, text='orz'})
end
function html.infobox(options)
  html.print("<ul class=infobox>")
  options.terms = options.terms or {}
  options.terms[''] = ""
  -- table.insert(options.terms, "")
  local n = options.name or "info[]"
  for k, v in ipairs(options.values) do
    html.print("<li>")
    local term, fact = v:match("^(.-)%s*:%s*(.-)$")
    html.select(n, options.terms, term)
    html.tag('input', { name=n, value=fact})
  end
  html.print("<li class=last>")
  html.select(n, options.terms, "")
  html.tag('input', { name=n })
  html.print("</ul>")
end
function html.date(options)
  local n = options.name or "date"
  local s = options.size or 10
  local v = options.value or ""
  html.tag('input', { type='date', name=n, size=s, value=v})
end
function html.text(options)
  local n = options.name or "text"
  local s = options.size or 18
  local v = options.value or ""
  html.tag("input", { type='text', name=n, size=s, value=v})
end
function html.hidden(options)
  local n = options.name or "hidden"
  local v = options.value or ""
  html.tag('input', { type='hidden', name=n, value=v})
end
function html.textarea(options)
  local n = options.name or "textarea"
  local v = (options.value or ""):gsub("[\n]$", "")
  local cols = options.cols or 72
  local rows = options.rows or 12
  html.tag('textarea', { name=n, cols=cols, rows=rows, text=v})
end
function html.select(k, options, selected)
  local p = ""
  printf("<select name='%s'>", k)
  for k,v in pairs(options) do
    if selected and selected == tostring(k) then
      p = "selected "
    end
    printf("<option %svalue='%s'>%s</option>", p, k, v)
    p = ""
  end
  printf("</select>")
end
function html.submit(value)
  printf("<input type=submit value='%s'>", value)
end
function html.img(options)
  html.tag('img', { src=options.src, alt=options.alt})
end
function html.p(options)
  html.tag("p", options)
end
function html.h1(...)
  printf("<h1>%s</h1>", ... or '')
end
function html.h2(...)
  printf("<h2>%s</h2>", ... or '')
end
function html.h3(...)
  printf("<h3>%s</h3>", ... or '')
end
function html.marxup(raw)
  corz.marxup(raw, io.output())
end

help = { html = html, os = os, posix = posix, pairs = pairs, ipairs = ipairs }

lupin = {}
lupin.blueprints = {}
lupin.blueprints.default = {
  pure = function(body, data)
    print(data.title)
    if data.type ~= "default" then
      printf("# type: %s\n", data.type)
    end
    data.title = nil
    data.type = nil
    print(body)
    for key, value in pairs(data) do
      if key == "info" then
        local term
        for i,v in ipairs(data.info) do
          if i % 2 == 1 then
            term = v
          else
            if #data.info >= i then print(("# info: %s: %s"):format(term, v)) end
          end
        end
      else
        print(("# %s: %s"):format(key, value))
      end
    end
  end,
  form = function(body, data)
    help.form.text('overskrift', data.title)
  end,
  html = function(body, data)
    if data.mode == "title" then
      printf("<h2>%s</h2>", data.title)
      return
    elseif data.mode == "full" then
      printf("<h1>%s</h1>", data.title)
    end
    corz.marxup(body, io.output())
    if not next(data) then return end
    print("<dl>")
    for key, value in pairs(data) do
      printf("<dt>%s</dt><dd>%s</dd>", key, value)
    end
    print("</dl>")
  end
}
function help.blueprint(id)
  return setmetatable({ id = id }, { __index = lupin.blueprints.default })
end

function lupin.loadblueprints(path)
  local blueprints = posix.glob(path .. "/*.lua")
  if blueprints then
    for i, file in pairs(blueprints) do
      local chunk = loadfile(file)
      setfenv(chunk, help)
      local blueprint = chunk()
      lupin.blueprints[blueprint.id] = blueprint
    end
  end
end

function lupin.transform(path, format, env, mode)
  if path ~= "-" then
    io.input(path)
  end

  local raw, data = "", {}

  data.info = {}
  if env then
    data.type = os.getenv("POST_type") or "default"
    data.title = os.getenv("POST_title") or "default"
    raw = os.getenv("POST_text") or ""
    raw = raw:gsub("\r\n", "\n")
    raw = raw:gsub("[\n]+$", "")
    raw = raw:match("(.-)%s*$")
    if lupin.blueprints[data.type] and lupin.blueprints[data.type].env then
      lupin.blueprints[data.type].env(data)
    end
    if os.getenv("POST_info") then
      for line in os.getenv("POST_info"):gmatch("[^\r\n]+") do
        table.insert(data.info, line)
      end
    end
  else
    for line in io.lines() do
      if line:match("^#") then
        local key, value = line:match("^#%s*(.-):%s*(.+)")
        if key and value and key == "info" then table.insert(data.info, value)
        elseif key and value then data[key] = value end
      else
        if not data.title then
          data.title = line
        else
          line = line:gsub("[\r\n]*", "")
          raw = raw .. line .. "\n"
        end
      end
    end
    data.type = data.type or "default"
  end
  data.mode = mode
  if data.mode == "short" then
    raw = data.lead or raw:match("[^\r\n]+")
  end
  if path ~= "-" then
    local stat = posix.stat(path)
    local pwd = posix.getpasswd(stat.uid)
    data.author = pwd.name
    data.group = posix.getgroup(stat.gid).name

    if posix.stat(pwd.dir .. "/portrait.jpg") then
      data.portrait = ("/users/%s.jpg"):format(data.author)
    end

    if posix.stat(pwd.dir .. "/.name") then
      data.author = io.open(pwd.dir .. "/.name"):read("*l")
    end
  end

  if format == "later" then
    data.raw = raw
    data.text = function()
      local f = io.tmpfile()
      corz.marxup(data.raw, f)
      f:seek("set")
      local result = f:read("*a")
      result = result:gsub("$%s*twitter:%s*(.-)\n", twitter)
      result = result:gsub("$%s*youtube:%s*(.-)\n", youtube)
      result = result:gsub("$%s*soundcloud:%s*(.-)\n", soundcloud)
      result = result:gsub("$%s*twitch:%s*(.-)\n", twitch)
      result = result:gsub("$%s*vimeo:%s*(.-)\n", vimeo)
      result = result:gsub("$%s*instagram:%s*(.-)\n", instagram)
      result = result:gsub("$%s*flickr:%s*(.-)\n", flickr)
      result = result:gsub("$%s*facebook:%s*(.-)\n", facebook)
      return result
    end
    return data
  end

  lupin.blueprints[data.type][format](raw, data)
end