summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-27 01:43:30 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-27 01:43:30 +0000
commit148d568b3db38ada9cf0c5085d2c71584d588598 (patch)
tree681681965b7089d49121356a367f39f01c661f05 /config
parent24e737f23a7ef3a5f5871d75a23470d6ee27462e (diff)
downloadacf-provisioning-148d568b3db38ada9cf0c5085d2c71584d588598.tar.bz2
acf-provisioning-148d568b3db38ada9cf0c5085d2c71584d588598.tar.xz
Revert "Change function prototypes to pass self and use self.model instead of functions table"
This reverts commit fb00ff8f05dae3c110beceb929ea036e4cd14ae1. Conflicts: provisioning-model.lua Conflict was resolved by removing "mymodule." from function calls that are once again made local
Diffstat (limited to 'config')
-rw-r--r--config/delete_device.lua10
-rw-r--r--config/determine_class.lua6
-rw-r--r--config/process_put.lua10
-rw-r--r--config/update_device.lua6
-rw-r--r--config/update_device_params.lua18
5 files changed, 25 insertions, 25 deletions
diff --git a/config/delete_device.lua b/config/delete_device.lua
index 3b04894..e009e74 100644
--- a/config/delete_device.lua
+++ b/config/delete_device.lua
@@ -1,20 +1,20 @@
-- This is the script run after deleting a device (and all of its params)
-local self, olddevice, oldparams = ...
+local functions, olddevice, oldparams = ...
posix = require("posix")
local root = "/var/www/provisioning/htdocs/"
---self.logevent("got to delete_device script")
+--APP.logevent("got to delete_device script")
-- First, we delete the associated config files for Polycom with valid MAC (not blank or all 0's)
if oldparams.value.device and string.match(oldparams.value.device.label, "Polycom") and oldparams.value.device.value.mac and string.match(oldparams.value.device.value.mac.value, "[1-9A-F]") then
- --self.logevent("Deleting files for "..oldparams.value.device.value.mac.value)
+ --APP.logevent("Deleting files for "..oldparams.value.device.value.mac.value)
local path = root.."Polycom/"
if posix.stat(path, "type") == "directory" then
for d in posix.files(path) do
if string.match(d, string.lower(oldparams.value.device.value.mac.value)) and posix.stat(path..d, "type") == "regular" then
- --self.logevent("deleting "..path..d)
+ --APP.logevent("deleting "..path..d)
os.remove(path..d)
end
end
@@ -56,5 +56,5 @@ setmetatable (env, {__index = _G})
-- so we set env 0, not env 1
setfenv (0, env)
local f = loadfile("/etc/provisioning/update_device_params.lua")
-if (f) then f(self, params, oldparams) end
+if (f) then f(functions, params, oldparams) end
setfenv (0, _G)
diff --git a/config/determine_class.lua b/config/determine_class.lua
index 53a1884..675e6e8 100644
--- a/config/determine_class.lua
+++ b/config/determine_class.lua
@@ -1,7 +1,7 @@
-- This is the script run to determine the device class from the HTTP user agent
-local self, agent, classes = ...
+local functions, agent, classes = ...
---self.logevent("got to determine_class script")
+--APP.logevent("got to determine_class script")
local manufacture, model
@@ -16,7 +16,7 @@ elseif string.match(agent, "snom") then
model = string.match(agent, "snom(%d+)")
end
---self.logevent("Found "..(manufacture or "").." model "..(model or ""))
+--APP.logevent("Found "..(manufacture or "").." model "..(model or ""))
if manufacture and model then
for i,c in ipairs(classes.value) do
diff --git a/config/process_put.lua b/config/process_put.lua
index 1a34042..4eabb1a 100644
--- a/config/process_put.lua
+++ b/config/process_put.lua
@@ -1,10 +1,10 @@
-- This is the script run to process uploaded config files
-local self, mac, data, device_id = ...
+local functions, mac, data, device_id = ...
---self.logevent("got to process_put script")
+--APP.logevent("got to process_put script")
-- Get the params
-local params = self.get_device_params(self, device_id)
+local params = functions.get_device_params(device_id)
function process_polycom()
local before, xml, after = string.match(data, "(.*<OVERRIDES)([^/]*)(/>.*)")
@@ -18,7 +18,7 @@ function process_polycom()
end
-- for n,v in pairs(attrs) do
--- self.logevent("name "..n.." val "..(v or ""))
+-- APP.logevent("name "..n.." val "..(v or ""))
-- end
-- Read attributes from attrs and generate paramaters for ACF
@@ -57,7 +57,7 @@ if string.match(params.value.device.label, "Polycom") then
end
-- Update the params
-local params = self.set_device_params(self, params)
+local params = functions.set_device_params(params)
-- Return the updated data
return data
diff --git a/config/update_device.lua b/config/update_device.lua
index 9823e95..7295062 100644
--- a/config/update_device.lua
+++ b/config/update_device.lua
@@ -1,7 +1,7 @@
-- This is the script run after editing a device - the label, classes
-local self, device, olddevice, params, oldparams = ...
+local functions, device, olddevice, params, oldparams = ...
---self.logevent("got to update_device script")
+--APP.logevent("got to update_device script")
-- We'll handle the changing of the device by handling the resulting changing of the params
local env = {}
@@ -10,5 +10,5 @@ setmetatable (env, {__index = _G})
-- so we set env 0, not env 1
setfenv (0, env)
local f = loadfile("/etc/provisioning/update_device_params.lua")
-if (f) then f(self, params, oldparams) end
+if (f) then f(functions, params, oldparams) end
setfenv (0, _G)
diff --git a/config/update_device_params.lua b/config/update_device_params.lua
index 775385c..c5ec144 100644
--- a/config/update_device_params.lua
+++ b/config/update_device_params.lua
@@ -1,17 +1,17 @@
-- This is the script run after editing device params
-local self, params, oldparams = ...
+local functions, params, oldparams = ...
posix = require("posix")
local root = "/var/www/provisioning/htdocs/"
---self.logevent("got to update_device_params script")
+--APP.logevent("got to update_device_params script")
local function findip(mac)
if not mac or mac == "" then
return nil
end
- local ipaddr = self.getselectresponse("SELECT ip FROM provisioning_requests WHERE mac~*'"..mac.."'")
+ local ipaddr = functions.getselectresponse("SELECT ip FROM provisioning_requests WHERE mac~*'"..mac.."'")
if ipaddr and ipaddr[1] then
return ipaddr[1].ip
end
@@ -20,10 +20,10 @@ end
local notify_device = function(mac, extension)
local ipaddr = findip(mac)
if ipaddr then
- --self.logevent("Notifying "..ipaddr.." to update for "..(mac or ""))
+ --APP.logevent("Notifying "..ipaddr.." to update for "..(mac or ""))
os.execute("/etc/provisioning/notify_device "..ipaddr.." "..extension)
else
- --self.logevent("Warning - could not find IP address for "..(mac or ""))
+ --APP.logevent("Warning - could not find IP address for "..(mac or ""))
end
end
@@ -34,10 +34,10 @@ if oldparams.value.device and oldparams.value.device.value.mac and oldparams.val
if string.match(oldparams.value.device.label, "Polycom") and string.match(oldparams.value.device.value.mac.value, "[1-9A-F]") then
local deletefiles = true
if string.match(params.value.device.value.mac.value, "[1-9A-F]") then
- --self.logevent("Moving files for "..oldparams.value.device.value.mac.value)
+ --APP.logevent("Moving files for "..oldparams.value.device.value.mac.value)
deletefiles = false
else
- --self.logevent("Deleting files for "..oldparams.value.device.value.mac.value)
+ --APP.logevent("Deleting files for "..oldparams.value.device.value.mac.value)
end
local path = root.."Polycom/"
if posix.stat(path, "type") == "directory" then
@@ -45,10 +45,10 @@ if oldparams.value.device and oldparams.value.device.value.mac and oldparams.val
if string.match(d, string.lower(oldparams.value.device.value.mac.value)) and posix.stat(path..d, "type") == "regular" then
local newfile = string.gsub(d, string.lower(oldparams.value.device.value.mac.value), string.lower(params.value.device.value.mac.value))
if deletefiles then
- --self.logevent("deleting "..path..d)
+ --APP.logevent("deleting "..path..d)
os.remove(path..d)
else
- --self.logevent("moving "..path..d.." to "..path..newfile)
+ --APP.logevent("moving "..path..d.." to "..path..newfile)
os.rename(path..d, path..newfile)
end
end