75fffa55379f141395c28df0b150f5a54dad01f6
[project/luci.git] / core / src / ffluci / sgi / webuci.lua
1 --[[
2 FFLuCI - SGI-Module for Haserl
3
4 Description:
5 Server Gateway Interface for Haserl
6
7 FileId:
8 $Id$
9
10 License:
11 Copyright 2008 Steven Barth <steven@midlink.org>
12
13 Licensed under the Apache License, Version 2.0 (the "License");
14 you may not use this file except in compliance with the License.
15 You may obtain a copy of the License at 
16
17         http://www.apache.org/licenses/LICENSE-2.0 
18
19 Unless required by applicable law or agreed to in writing, software
20 distributed under the License is distributed on an "AS IS" BASIS,
21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 See the License for the specific language governing permissions and
23 limitations under the License.
24
25 ]]--
26 module("ffluci.sgi.webuci", package.seeall)
27
28 -- Environment Table
29 ffluci.http.env = webuci.env
30
31
32 local status_set = false
33
34 -- Returns a table of all COOKIE, GET and POST Parameters
35 function ffluci.http.formvalues()
36         return webuci.vars
37 end
38
39 -- Gets form value from key
40 function ffluci.http.formvalue(key, default)
41         return ffluci.http.formvalues()[key] or default
42 end
43
44 -- Gets a table of values with a certain prefix
45 function ffluci.http.formvaluetable(prefix)
46         local vals = {}
47         prefix = prefix and prefix .. "." or "."
48         
49         for k, v in pairs(ffluci.http.formvalues()) do
50                 if k:find(prefix, 1, true) == 1 then
51                         vals[k:sub(#prefix + 1)] = v
52                 end
53         end
54         
55         return vals
56 end
57
58
59 -- Set Content-Type
60 function ffluci.http.prepare_content(type)
61         if not status_set then
62                 ffluci.http.status(200, "OK")
63         end
64         
65         print("Content-Type: "..type.."\n")
66 end
67
68 -- Sets HTTP-Status-Header
69 function ffluci.http.status(code, message)
70         print(webuci.env.SERVER_PROTOCOL .. " " .. tostring(code) .. " " .. message)
71         status_set = true
72 end