-- the squid controller module (..., package.seeall) -- Cause an http redirect to our "read" action -- We use the self.conf table because it already has prefix,controller,etc -- The redir code is defined in the application error handler (acf-controller) local list_redir = function (self) self.conf.action = "basic" self.conf.type = "redir" error (self.conf) end local pvt = {} mvc= {} mvc.on_load = function( self, parent ) -- If they try to run a bogus action, send them to read if ( rawget(self.worker, self.conf.action) == nil ) then list_redir(self) end pvt.parent_on_exec = parent.worker.mvc.post_exec end mvc.pre_exec = function( self ) -- pvt.parent_on_exec () end mvc.post_exec = function( self ) return pvt.parent_on_exec() end dep = function( self ) if self.model.dependancy_ok() then self.conf.type = "redir" self.conf.action = "basic" error(self.conf) end if self.clientdata.cmd then if self.clientdata.cmd == "create file" then self.model.create_cfg_from_template() self.conf.type = "redir" self.conf.action = "basic" error(self.conf) end end return end basic = function( self ) local info = { status = { value = "stopped" }, version = { value = self.model.get_squid_version() }, srvctrl = { value = srvctrl} }; local option = { script = ENV["SCRIPT_NAME"], prefix = self.conf.prefix, controller = self.conf.controller, action = self.conf.action, extra = "" } if not self.model.dependancy_ok() then self.conf.type = "redir" self.conf.action = "dep" error(self.conf) end local service = { message="", status="", error="" } if self.clientdata.srvcmd then local srvcmd = self.clientdata.srvcmd if srvcmd == "start" or srvcmd == "stop" or srvcmd == "restart" then service.message = self.model.service_control( srvcmd ) end end if self.clientdata.cmd then local cmd = self.clientdata.cmd if cmd == "save" then local newconfig = { proxyip = { value=self.clientdata.proxyip, type="text", label="" }, proxyport = { value=self.clientdata.proxyport, type="text", label="" }, filterip = { value=self.clientdata.filterip, type="text", label="" }, filterport = { value=self.clientdata.filterport, type="text", label="" }, filterregex = { value=self.clientdata.filterregex, type="text", label="" }, safeports = { value=self.clientdata.safeports, type="text", label="" }, sslports = { value=self.clientdata.sslports, type="text", label="" }, accesslog = { value=self.clientdata.accesslog, type="select", label="", option={ "yes", "no" } }, diskcache = { value=self.clientdata.diskcache, type="select", label="", option={ "yes", "no" } }, authmethod = { value=self.clientdata.authmethod, type="text", label="" } } self.model.update_basic_config( newconfig ) end end service.status = self.model.get_status() info.status.value = service.status; service.config, service.error = self.model.get_basic_config() return ( cfe ({ option = option, service = service, info = info }) ) end authentication = function( self ) local info = { status = { value = "stopped" }, version = { value = self.model.get_squid_version() }, srvctrl = { value = srvctrl} }; local option = { script = ENV["SCRIPT_NAME"], prefix = self.conf.prefix, controller = self.conf.controller, action = self.conf.action, extra = "" } local service = { message="", status="", error="" } if self.clientdata.srvcmd then local srvcmd = self.clientdata.srvcmd if srvcmd == "start" or srvcmd == "stop" or srvcmd == "restart" then service.message = self.model.service_control( srvcmd ) end end if self.clientdata.inout then local newauth = "" if self.clientdata.inout == " << " then if self.clientdata.tmpempty then newauth = self.clientdata.authmethod .. self.clientdata.tmpempty else newauth = self.clientdata.authmethod end elseif self.clientdata.inout == " >> " then local tmpauth = self.clientdata.authmethod local lap = 1 while lap <= #tmpauth do if string.sub( tmpauth, lap, lap ) ~= self.clientdata.tmpauth then newauth = newauth .. string.sub( tmpauth, lap, lap ) end lap = lap + 1 end end self.model.upd_authmethod(newauth) end service.status = self.model.get_status() info.status.value = service.status service.config, service.error = self.model.get_basic_config() return ( cfe ({ option = option, service = service, info = info }) ) end advanced = function( self ) local option = { script = ENV["SCRIPT_NAME"], prefix = self.conf.prefix, controller = self.conf.controller, action = self.conf.action, extra = "" } local service = { message="", status="", config="" } if self.clientdata.srvcmd then local srvcmd = self.clientdata.srvcmd if srvcmd == "start" or srvcmd == "stop" or srvcmd == "restart" then service.message = self.model.service_control( srvcmd ) end end if self.clientdata.cmd then if self.clientdata.cmd == "save" then service.message = self.model.update_adv_config( self.clientdata.config ) end end service.status = self.model.get_status() service.config = self.model.get_adv_config() return ( cfe ({ option = option, service = service }) ) end digest = function( self ) local option = { script = ENV["SCRIPT_NAME"], prefix = self.conf.prefix, controller = self.conf.controller, action = self.conf.action, extra = "" } local service = { message="", status="", config="" } if self.clientdata.cmd then if self.clientdata.cmd == "save" then service.message = self.model.update_digest_userlist( self.clientdata.userlist ) end end service.config = self.model.get_digest_userlist() return ( cfe ({ option = option, service = service }) ) end ntlm = function( self ) local info = { status = { value = "stopped" }, version = { value = self.model.get_winbind_version() }, srvctrl = { value = srvctrl} }; local option = { script = ENV["SCRIPT_NAME"], prefix = self.conf.prefix, controller = self.conf.controller, action = self.conf.action, extra = "" } local service = { message="", status="", config="" } if self.clientdata.srvcmd then local srvcmd = self.clientdata.srvcmd if srvcmd == "start" or srvcmd == "stop" or srvcmd == "restart" then service.message = self.model.service_control_winbindd( srvcmd ) end end if self.clientdata.cmd then if self.clientdata.cmd == "save" then service.message = self.model.update_winbindd_config( self.clientdata.config ) end end service.status = self.model.get_status_winbindd() info.status.value = service.status service.config = self.model.get_winbindd_config() return ( cfe ({ option = option, service = service, info = info }) ) end saccess = function( self ) local option = { script = ENV["SCRIPT_NAME"], prefix = self.conf.prefix, controller = self.conf.controller, action = self.conf.action, extra = "" } local service = { message="", status="", config="" } if self.clientdata.cmd then if self.clientdata.cmd == "save" then local config = {} config.s_ip = self.clientdata.s_ip config.s_browser = self.clientdata.s_browser config.s_domain = self.clientdata.s_domain service.message = self.model.update_saccess( config ) end end service.config = self.model.get_saccess() return ( cfe ({ option = option, service = service }) ) end