build: split into luci and luci-addons packages
[project/luci.git] / libs / lucid-http / luasrc / lucid / http.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2009 Steven Barth <steven@midlink.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14
15 local require, ipairs, pcall = require, ipairs, pcall
16 local srv = require "luci.lucid.http.server"
17
18 module "luci.lucid.http"
19
20 --- Prepare the HTTP-daemon and its associated publishers.
21 -- @param publisher Table of publishers
22 -- @return factory callback or nil, error message
23 function factory(publisher)
24         local server = srv.Server()
25         for _, r in ipairs(publisher) do
26                 local t = r[".type"]
27                 local s, mod = pcall(require, "luci.lucid.http." .. (r[".type"] or ""))
28                 if s and mod then
29                         mod.factory(server, r)
30                 else
31                         return nil, mod
32                 end
33         end
34
35         return function(...) return server:process(...) end
36 end