2004-05-28 08:16:43 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- MIME support for the Lua language.
|
|
|
|
-- Author: Diego Nehab
|
|
|
|
-- Conforming to RFCs 2045-2049
|
|
|
|
-- RCS ID: $Id$
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Load MIME from dynamic library
|
|
|
|
-- Comment these lines if you are loading static
|
|
|
|
-----------------------------------------------------------------------------
|
2004-06-04 17:15:45 +02:00
|
|
|
local open = assert(loadlib("mime", "luaopen_mime"))
|
|
|
|
local mime = assert(open())
|
2004-05-28 08:16:43 +02:00
|
|
|
|
|
|
|
-----------------------------------------------------------------------------
|
2004-06-04 17:15:45 +02:00
|
|
|
-- Load other required modules
|
2004-05-28 08:16:43 +02:00
|
|
|
-----------------------------------------------------------------------------
|
2004-06-04 17:15:45 +02:00
|
|
|
local ltn12 = require("ltn12")
|
2004-05-28 08:16:43 +02:00
|
|
|
|
2004-06-04 17:15:45 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- Setup namespace
|
|
|
|
-----------------------------------------------------------------------------
|
2004-01-19 06:41:30 +01:00
|
|
|
-- make all module globals fall into mime namespace
|
|
|
|
setmetatable(mime, { __index = _G })
|
|
|
|
setfenv(1, mime)
|
|
|
|
|
2004-01-21 02:09:50 +01:00
|
|
|
-- encode, decode and wrap algorithm tables
|
2004-03-19 06:04:03 +01:00
|
|
|
encodet = {}
|
|
|
|
decodet = {}
|
|
|
|
wrapt = {}
|
2004-01-19 06:41:30 +01:00
|
|
|
|
2004-02-11 04:31:53 +01:00
|
|
|
-- creates a function that chooses a filter by name from a given table
|
2004-05-19 09:07:11 +02:00
|
|
|
local function choose(table)
|
2004-03-26 07:05:20 +01:00
|
|
|
return function(name, opt1, opt2)
|
|
|
|
if type(name) ~= "string" then
|
|
|
|
name, opt1, opt2 = "default", name, opt1
|
|
|
|
end
|
2004-02-11 04:31:53 +01:00
|
|
|
local f = table[name or "nil"]
|
2004-03-26 07:05:20 +01:00
|
|
|
if not f then error("unknown key (" .. tostring(name) .. ")", 3)
|
|
|
|
else return f(opt1, opt2) end
|
2004-01-19 06:41:30 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-02-04 15:29:11 +01:00
|
|
|
-- define the encoding filters
|
2004-03-19 06:04:03 +01:00
|
|
|
encodet['base64'] = function()
|
2004-02-11 04:31:53 +01:00
|
|
|
return ltn12.filter.cycle(b64, "")
|
2004-01-19 06:41:30 +01:00
|
|
|
end
|
|
|
|
|
2004-03-19 06:04:03 +01:00
|
|
|
encodet['quoted-printable'] = function(mode)
|
2004-02-11 04:31:53 +01:00
|
|
|
return ltn12.filter.cycle(qp, "",
|
|
|
|
(mode == "binary") and "=0D=0A" or "\13\10")
|
2004-01-21 02:09:50 +01:00
|
|
|
end
|
|
|
|
|
2004-02-04 15:29:11 +01:00
|
|
|
-- define the decoding filters
|
2004-03-19 06:04:03 +01:00
|
|
|
decodet['base64'] = function()
|
2004-02-11 04:31:53 +01:00
|
|
|
return ltn12.filter.cycle(unb64, "")
|
2004-01-19 06:41:30 +01:00
|
|
|
end
|
|
|
|
|
2004-03-19 06:04:03 +01:00
|
|
|
decodet['quoted-printable'] = function()
|
2004-02-11 04:31:53 +01:00
|
|
|
return ltn12.filter.cycle(unqp, "")
|
2004-01-21 02:09:50 +01:00
|
|
|
end
|
|
|
|
|
2004-02-04 15:29:11 +01:00
|
|
|
-- define the line-wrap filters
|
2004-03-19 06:04:03 +01:00
|
|
|
wrapt['text'] = function(length)
|
2004-01-19 06:41:30 +01:00
|
|
|
length = length or 76
|
2004-02-11 04:31:53 +01:00
|
|
|
return ltn12.filter.cycle(wrp, length, length)
|
2004-01-19 06:41:30 +01:00
|
|
|
end
|
2004-03-19 06:04:03 +01:00
|
|
|
wrapt['base64'] = wrapt['text']
|
2004-03-26 07:05:20 +01:00
|
|
|
wrapt['default'] = wrapt['text']
|
2004-01-19 06:41:30 +01:00
|
|
|
|
2004-03-19 06:04:03 +01:00
|
|
|
wrapt['quoted-printable'] = function()
|
2004-02-11 04:31:53 +01:00
|
|
|
return ltn12.filter.cycle(qpwrp, 76, 76)
|
2004-02-04 15:29:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-- function that choose the encoding, decoding or wrap algorithm
|
2004-03-19 06:04:03 +01:00
|
|
|
encode = choose(encodet)
|
|
|
|
decode = choose(decodet)
|
2004-03-26 07:05:20 +01:00
|
|
|
wrap = choose(wrapt)
|
2004-01-19 06:41:30 +01:00
|
|
|
|
2004-02-11 04:31:53 +01:00
|
|
|
-- define the end-of-line normalization filter
|
|
|
|
function normalize(marker)
|
|
|
|
return ltn12.filter.cycle(eol, 0, marker)
|
2004-01-19 06:41:30 +01:00
|
|
|
end
|
|
|
|
|
2004-02-04 15:29:11 +01:00
|
|
|
return mime
|