aboutsummaryrefslogtreecommitdiffstats
path: root/config/countryblock/countryblock.inc
diff options
context:
space:
mode:
Diffstat (limited to 'config/countryblock/countryblock.inc')
-rw-r--r--config/countryblock/countryblock.inc102
1 files changed, 102 insertions, 0 deletions
diff --git a/config/countryblock/countryblock.inc b/config/countryblock/countryblock.inc
new file mode 100644
index 00000000..39a22243
--- /dev/null
+++ b/config/countryblock/countryblock.inc
@@ -0,0 +1,102 @@
+<?php
+/* $Id$ */
+/*
+/* ========================================================================== */
+/*
+ countryblock.inc
+ Copyright (C) 2010 Tom Schaefer
+ All rights reserved.
+ */
+/* ========================================================================== */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+
+
+function php_sync_package()
+{
+ global $config;
+}
+
+
+function php_install_command()
+{
+
+ global $config;
+ conf_mount_rw();
+ config_lock();
+
+ if (!is_dir('/usr/local/www/packages/')) {
+ exec("mkdir /usr/local/www/packages/");
+ }
+
+ if (!is_dir('/usr/local/www/packages/countryblock/')) {
+ exec("mkdir /usr/local/www/packages/countryblock/");
+ }
+
+
+
+ //rename PHP files from .tmp to .php
+ exec("cp /tmp/countryblock.tmp /usr/local/www/packages/countryblock/countryblock.php");
+ unlink_if_exists("/tmp/countryblock.tmp");
+ exec("cp /tmp/index.tmp /usr/local/www/packages/countryblock/index.php");
+ unlink_if_exists("/tmp/index.tmp");
+ //Get scripts
+ exec("cp /tmp/countryblock.sh /usr/local/etc/rc.d/countryblock.sh");
+ unlink_if_exists("/tmp/countryblock.sh");
+ exec("cp /tmp/execute.sh /usr/local/www/packages/countryblock/execute.sh");
+ unlink_if_exists("/tmp/execute.sh");
+ exec("cp /tmp/jquery.min.js /usr/local/www/packages/countryblock/jquery.min.js");
+ unlink_if_exists("/tmp/jquery.min.js");
+ exec("cp /tmp/ddaccordion.js /usr/local/www/packages/countryblock/ddaccordion.js");
+ unlink_if_exists("/tmp/ddaccordion.js");
+ exec("cp /tmp/public_smo_scripts.js /usr/local/www/packages/countryblock/public_smo_scripts.js");
+ unlink_if_exists("/tmp/public_smo_scripts.js");
+ exec("cp /tmp/titlebar.png /usr/local/www/packages/countryblock/titlebar.pngs");
+ unlink_if_exists("/tmp/titlebar.png");
+ exec("cp /tmp/titlebar-active.png /usr/local/www/packages/countryblock/titlebar-active.png");
+ unlink_if_exists("/tmp/titlebar-active.png");
+
+
+
+ conf_mount_ro();
+ config_unlock();
+}
+
+
+function deinstall_command()
+{
+ conf_mount_rw();
+ $handle = popen("/usr/local/etc/rc.d/countryblock.sh stop", "r");
+ unlink_if_exists("/usr/local/pkg/countryblock.xml");
+ unlink_if_exists("/usr/local/pkg/countryblock.inc");
+ exec("rm -R /usr/local/www/packages/countryblock/countryblocks");
+ exec("rm -R /usr/local/www/packages/countryblock");
+ exec("rm /usr/local/etc/rc.d/countryblock.sh");
+ exec("pfctl -t countryblock -T kill");
+ exec("sed -i -e '/countryblock/d' /tmp/rules.debug");
+ exec("pfctl -o basic -f /tmp/rules.debug");
+ conf_mount_ro();
+}
+
+?> \ No newline at end of file