summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-08-15 20:33:28 +0000
committerTed Trask <ttrask01@yahoo.com>2008-08-15 20:33:28 +0000
commit4f7c42c67f5e22295d178b924861f150c35132c0 (patch)
treeaad8a6c8bf43390e697b4edff1c61470ad6c073b
downloadacf-tcpproxy-4f7c42c67f5e22295d178b924861f150c35132c0.tar.bz2
acf-tcpproxy-4f7c42c67f5e22295d178b924861f150c35132c0.tar.xz
New package for tcpproxy with status, startstop, and expert.
git-svn-id: svn://svn.alpinelinux.org/acf/tcpproxy/trunk@1381 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--Makefile44
-rw-r--r--README0
-rw-r--r--config.mk10
-rw-r--r--tcpproxy-controller.lua18
l---------tcpproxy-expert-html.lsp1
-rw-r--r--tcpproxy-model.lua32
l---------tcpproxy-startstop-html.lsp1
l---------tcpproxy-status-html.lsp1
-rw-r--r--tcpproxy.menu3
-rw-r--r--tcpproxy.roles2
10 files changed, 112 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b102ed6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,44 @@
+APP_NAME=tcpproxy
+PACKAGE=acf-$(APP_NAME)
+VERSION=0.0.1
+
+APP_DIST=\
+ tcpproxy* \
+
+
+EXTRA_DIST=README Makefile config.mk
+
+DISTFILES=$(APP_DIST) $(EXTRA_DIST)
+
+TAR=tar
+
+P=$(PACKAGE)-$(VERSION)
+tarball=$(P).tar.bz2
+install_dir=$(DESTDIR)/$(appdir)/$(APP_NAME)
+
+all:
+clean:
+ rm -rf $(tarball) $(P)
+
+dist: $(tarball)
+
+install:
+ mkdir -p "$(install_dir)"
+ cp -a $(APP_DIST) "$(install_dir)"
+
+$(tarball): $(DISTFILES)
+ rm -rf $(P)
+ mkdir -p $(P)
+ cp -a $(DISTFILES) $(P)
+ $(TAR) -jcf $@ $(P)
+ rm -rf $(P)
+
+# target that creates a tar package, unpacks is and install from package
+dist-install: $(tarball)
+ $(TAR) -jxf $(tarball)
+ $(MAKE) -C $(P) install DESTDIR=$(DESTDIR)
+ rm -rf $(P)
+
+include config.mk
+
+.PHONY: all clean dist install dist-install
diff --git a/README b/README
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/README
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..45f4d21
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,10 @@
+prefix=/usr
+datadir=${prefix}/share
+sysconfdir=${prefix}/etc
+localstatedir=${prefix}/var
+acfdir=${datadir}/acf
+wwwdir=${acfdir}/www
+cgibindir=${acfdir}/cgi-bin
+appdir=${acfdir}/app
+acflibdir=${acfdir}/lib
+sessionsdir=${localstatedir}/lib/acf/sessions
diff --git a/tcpproxy-controller.lua b/tcpproxy-controller.lua
new file mode 100644
index 0000000..45044e0
--- /dev/null
+++ b/tcpproxy-controller.lua
@@ -0,0 +1,18 @@
+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.model.getstatus, self.clientdata)
+end
+
+function expert(self)
+ return controllerfunctions.handle_form(self, self.model.getconfigfile, self.model.setconfigfile, self.clientdata, "Save", "Edit Config", "Configuration Saved")
+end
diff --git a/tcpproxy-expert-html.lsp b/tcpproxy-expert-html.lsp
new file mode 120000
index 0000000..207f324
--- /dev/null
+++ b/tcpproxy-expert-html.lsp
@@ -0,0 +1 @@
+../expert-html.lsp \ No newline at end of file
diff --git a/tcpproxy-model.lua b/tcpproxy-model.lua
new file mode 100644
index 0000000..57bb845
--- /dev/null
+++ b/tcpproxy-model.lua
@@ -0,0 +1,32 @@
+module(..., package.seeall)
+
+-- Load libraries
+require("modelfunctions")
+
+-- Set variables
+local configfile = "/etc/tcpproxy.conf"
+local processname = "tcpproxy"
+local packagename = "tcpproxy"
+
+-- ################################################################################
+-- LOCAL FUNCTIONS
+
+-- ################################################################################
+-- PUBLIC FUNCTIONS
+
+function startstop_service(action)
+ return modelfunctions.startstop_service(processname, action)
+end
+
+function getstatus()
+ return modelfunctions.getstatus(processname, packagename, "TCP Proxy Status")
+end
+
+function getconfigfile()
+ return modelfunctions.getfiledetails(configfile)
+end
+
+function setconfigfile(filedetails)
+ filedetails.value.filename.value = configfile
+ return modelfunctions.setfiledetails(filedetails)
+end
diff --git a/tcpproxy-startstop-html.lsp b/tcpproxy-startstop-html.lsp
new file mode 120000
index 0000000..0ea2627
--- /dev/null
+++ b/tcpproxy-startstop-html.lsp
@@ -0,0 +1 @@
+../startstop-html.lsp \ No newline at end of file
diff --git a/tcpproxy-status-html.lsp b/tcpproxy-status-html.lsp
new file mode 120000
index 0000000..b2f8480
--- /dev/null
+++ b/tcpproxy-status-html.lsp
@@ -0,0 +1 @@
+../status-html.lsp \ No newline at end of file
diff --git a/tcpproxy.menu b/tcpproxy.menu
new file mode 100644
index 0000000..0f68d61
--- /dev/null
+++ b/tcpproxy.menu
@@ -0,0 +1,3 @@
+#CAT GROUP/DESC TAB ACTION
+Networking 35TCP_Proxy Status status
+Networking 35TCP_Proxy Expert expert
diff --git a/tcpproxy.roles b/tcpproxy.roles
new file mode 100644
index 0000000..9b40383
--- /dev/null
+++ b/tcpproxy.roles
@@ -0,0 +1,2 @@
+READ=tcpproxy:status
+UPDATE=tcpproxy:startstop,tcpproxy:expert