summaryrefslogtreecommitdiffstats
path: root/interfaces-controller.lua
blob: d2866db819fc09973c82b713bb86f1091a2589e5 (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
-- the interfaces  controller

module (..., package.seeall)

default_action = "read"

read = function (self )
	local iface = self.model.get_all_interfaces()
	local status = self.model.get_status()
	-- these actions are available for each interface
	-- **FIXME** This is technically wrong.  The controller should pass
	-- the "script" "prefix" "controller" "action" as separate fields,
	-- since the view could be a cli, not a web interface.  the VIEW
	-- should make a uri from these these elements.
	local actions = { link = self.conf.script .. self.conf.prefix ..
				self.conf.controller .. "/",
			  action = { "create", "read", "update", "delete" } }
	return ( { actions = actions, iface = iface, status=status } )
end

config = function (self )
	local config = read(self)
	for k,v in pairs(config.iface) do
		v['edit']=cfe(
			{name="edit",
			label="Edit this record",
			value="Edit",
			type="link",
			})
	end
	return ( config )
end

-- Accepts form info
-- Returns a cfe object (the form)
update = function(self)
	local iface = self.clientdata.iface or ""
	local result
	local data

	-- If interface is not found, return to list
	result, data = self.model.get_iface_by_name ( iface )
	if result == false then
		redirect(self)
	end

	-- If the "cmd" button was used, then attempt to do the update
	if self.clientdata.cmd then
		-- update the iface info the form gave us
		for k,v in pairs (data) do
			if self.clientdata[k] then 
				data[k].value = self.clientdata[k]
			end
		end
		
		result, data = self.model.update_iface_by_name ( data, data.name.value )
	
		-- If validation worked then return to list
		if result == true then
			redirect(self)
		end
	end

	-- If the "cmddelete" button was used, then attempt to delete the interface
	if self.clientdata.cmddelete then
		self.conf.action = "delete?iface=" .. tostring(self.clientdata.name)
		self.conf.type = "redir"
		error (self.conf)
	end

	-- Hide the 'name' field
	data.name.type="hidden"

	-- If we reach this point in the function, then we are providing a form
	-- for the user to edit (either first time in, or validation failed)

	-- Add a command button 
	data.cmd = cfe({type="action", value="Save", name="cmd", label="Save/Apply above settings"}) 

	-- Add a delete button 
	data.cmddelete = cfe({type="action", value="Delete", name="cmddelete", label="Delete this record"}) 

	return ( cfe ({type="form", 
			option={ script=self.conf.script,
				 prefix=self.conf.prefix,
				 controller = self.conf.controller,
				 action = "update",
				 extra = "?iface=" .. data.name.value },
			value = data,
			clientdata=clientdata,
			} ) )
end



delete = function(self)
	local iface = self.clientdata.iface or ""
	local result
	local data 

	-- If the interface doesn't exist, return to the list now
	result, data = self.model.get_iface_by_name ( iface )
	if result == false  then
		redirect(self)
	end
	

	-- If the cmd button was pressed, then commit the change
	if self.clientdata.cmd then
		if self.clientdata.cmd == "delete" then
			self.model.delete_iface_by_name (iface)
		end
		redirect(self)
	end

	-- Otherwise, return a form
	local me = {}
	me.iface = cfe({name="iface", type="hidden", value = (self.clientdata.iface or "") })
	me.action1 = cfe({name="cmd", type="action", value="delete", label="action"}) 
	me.action2 = cfe({name="cmd", type="action", value="cancel", label="action"}) 

	return ( cfe ({type="form", 
			option={ script=self.conf.script,
				 prefix=self.conf.prefix,
				 controller = self.conf.controller,
				 action = "delete",
				 extra = "?iface=" .. (self.clientdata.iface or "") },
			value = me,
			clientdata=clientdata,
			iface=iface,
			} ) )
end



create = function(self)
	local iface = self.clientdata.iface or ""
	local index = 0
	local result, data = self.model.get_iface_by_name ()

	-- If the "cmd" button was used, then attempt to do the insert
	if self.clientdata.cmd then
		for k,v in pairs (data) do
			if self.clientdata[k] then 
				data[k].value = self.clientdata[k]
			end
		end
		
		result, data = self.model.create_iface_by_name ( iface, data )
		if result then
			redirect(self)
		end
	end

	-- If we reach this point in the function, we are providing a form

	-- Add a command button
	data.cmd = cfe({type="action", value="save", label="action"}) 

	return ( cfe ({type="form", 
			option={ script=self.conf.script,
				 prefix=self.conf.prefix,
				 controller = self.conf.controller,
				 action = "create",
				 extra = "?iface=" .. iface or "" },
			value = data} ) )
end