From 5261ae2fa86ae090a2923b502646aa03c6a275a9 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 5 Nov 2009 15:27:43 +0000 Subject: First cut at kamailio ACF. Just status, listfiles, edit, startstop. --- kamailio-controller.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 kamailio-controller.lua (limited to 'kamailio-controller.lua') diff --git a/kamailio-controller.lua b/kamailio-controller.lua new file mode 100644 index 0000000..45a8fd7 --- /dev/null +++ b/kamailio-controller.lua @@ -0,0 +1,22 @@ +module(..., package.seeall) + +-- Load libraries +require("controllerfunctions") + +default_action = "status" + +function status(self) + return self.model.getstatus() +end + +function startstop(self) + return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata) +end + +function listfiles(self) + return self.model.list_files() +end + +function edit(self) + return controllerfunctions.handle_form(self, function() return self.model.get_filedetails(self.clientdata.filename) end, self.model.update_filedetails, self.clientdata, "Save", "Edit File", "File Saved") +end -- cgit v1.2.3