From 0d53041fc67e13fc53cca0c993ec1a7a31a5a16e Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Sun, 15 Jan 2017 05:57:19 -0500 Subject: Reorganize examples/ directory --- examples/controller/auth.control.php | 67 +++++++++++++ examples/controller/dashboard.control.php | 41 ++++++++ examples/controller/deauth.control.php | 40 ++++++++ examples/controller/deleteacct.control.php | 58 ++++++++++++ examples/controller/except.control.php | 41 ++++++++ examples/controller/obj.control.php | 49 ++++++++++ examples/controller/root.control.php | 145 +++++++++++++++++++++++++++++ examples/controller/sysconf.control.php | 57 ++++++++++++ 8 files changed, 498 insertions(+) create mode 100644 examples/controller/auth.control.php create mode 100644 examples/controller/dashboard.control.php create mode 100644 examples/controller/deauth.control.php create mode 100644 examples/controller/deleteacct.control.php create mode 100644 examples/controller/except.control.php create mode 100644 examples/controller/obj.control.php create mode 100644 examples/controller/root.control.php create mode 100644 examples/controller/sysconf.control.php (limited to 'examples/controller') diff --git a/examples/controller/auth.control.php b/examples/controller/auth.control.php new file mode 100644 index 0000000..5be1e4b --- /dev/null +++ b/examples/controller/auth.control.php @@ -0,0 +1,67 @@ +action_signup($mod); + break; + + case "login": + $this->action_login($mod); + break; + + default: + $this->action_default($mod); + break; + } + } + + function action_default($mod) + { + $mod->deflt(); + include "view/auth/default.view.php"; + } + + function action_signup($mod) + { + $mod->signup($_REQUEST['input']); + $this->action_default($mod); + } + + function action_login($mod) + { + $mod->login($_REQUEST['input']); + $this->action_default($mod); + } +} + +?> diff --git a/examples/controller/dashboard.control.php b/examples/controller/dashboard.control.php new file mode 100644 index 0000000..40d3678 --- /dev/null +++ b/examples/controller/dashboard.control.php @@ -0,0 +1,41 @@ +action_default($mod); + } + + function action_default($mod) + { + $mod->deflt(); + include "view/dashboard/default.view.php"; + } +} + +?> diff --git a/examples/controller/deauth.control.php b/examples/controller/deauth.control.php new file mode 100644 index 0000000..5867168 --- /dev/null +++ b/examples/controller/deauth.control.php @@ -0,0 +1,40 @@ +action_default($mod); + } + + function action_default($mod) + { + $mod->deflt(); + } +} + +?> diff --git a/examples/controller/deleteacct.control.php b/examples/controller/deleteacct.control.php new file mode 100644 index 0000000..5dc91b5 --- /dev/null +++ b/examples/controller/deleteacct.control.php @@ -0,0 +1,58 @@ +action_delete($mod); + break; + + default: + $this->action_default($mod); + break; + } + } + + function action_default($mod) + { + $mod->deflt(); + include "view/deleteacct/default.view.php"; + } + + function action_delete($mod) + { + $mod->del($_REQUEST['input']); + $this->action_default($mod); + } +} + +?> diff --git a/examples/controller/except.control.php b/examples/controller/except.control.php new file mode 100644 index 0000000..8b5e1b5 --- /dev/null +++ b/examples/controller/except.control.php @@ -0,0 +1,41 @@ +action_default($mod, $message); + } + + function action_default($mod, $message) + { + $mod->deflt($message); + include "view/except/default.view.php"; + } +} + +?> diff --git a/examples/controller/obj.control.php b/examples/controller/obj.control.php new file mode 100644 index 0000000..2154d16 --- /dev/null +++ b/examples/controller/obj.control.php @@ -0,0 +1,49 @@ +obj->canAccess($this->getCurrentUser())) + throw new Exception("You do not have permission to access this object"); + + switch ($mod->obj->type) + { + case "group": + $this->action_group($mod); + break; + } + } + + function action_group($mod) + { + include "view/obj/group.view.php"; + } +} + +?> diff --git a/examples/controller/root.control.php b/examples/controller/root.control.php new file mode 100644 index 0000000..7e4d1ab --- /dev/null +++ b/examples/controller/root.control.php @@ -0,0 +1,145 @@ +normalizeArgv($argv); + + try + { + /* Assert that the system config file exists and has been included */ + if (!$this->scrottConfExists()) + { + $ctrl = new Sysconf(); + $ctrl->handle($argv); + return; + } + + /* Assert we are running over HTTP(S), whichever is desired */ + switch ($_SCROTT['settSSL']) + { + case "force": $this->sec_require_https(); break; + case "forbid": $this->sec_forbid_https(); break; + default: + switch (Setting::settSSL()) + { + case "force": $this->sec_require_https(); break; + case "forbid": $this->sec_forbid_https(); break; + } + } + + /* Assert session IP */ + $this->sec_verify_ip(); + + /* Assert that a user is logged in */ + if (!$this->getCurrentUser()) + { + $ctrl = new Auth(); + $ctrl->handle($argv); + return; + } + + /* Handle page request */ + if (count($argv) == 0) + $ctrl = new Dashboard(); + + else + { + switch ($argv[0]) + { + case "logout": $ctrl = new Deauth(); break; + case "deleteaccount": $ctrl = new Deleteacct(); break; + default: + /* Check if arg is an object guid */ + $obj = new DBObject(); + + if ($obj->isGUID($argv[0])) + { + $ctrl = new Obj(); + break; + } + + /* No page to show for requested path */ + throw new Exception("The requested path is not valid."); + break; + } + } + + $ctrl->handle($argv); + } + + catch (Exception $e) + { + $ctrl = new Except(); + $ctrl->handle($e->getMessage()); + } + } + + /* + * Get a useful path string by normalizeing the $argv array received from the main function. + * This will remove directory names that appear in the $this->ar() string and the initial + * and trailing (if present) empty strings + */ + function normalizeArgv($argv) + { + $argv = array_values(array_filter($argv)); + $ar = array_values(array_filter(explode("/", $this->ar()))); + $i = 0; + $trunc = true; + + if (count($ar) == 0) + return $argv; + + foreach ($ar as $elem) + { + if ($elem != $argv[$i]) + { + $trunc = false; + break; + } + + $i++; + } + + if (!$trunc) + return $argv; + + return array_values(array_slice($argv, count($ar))); + } +} + +?> diff --git a/examples/controller/sysconf.control.php b/examples/controller/sysconf.control.php new file mode 100644 index 0000000..6379d42 --- /dev/null +++ b/examples/controller/sysconf.control.php @@ -0,0 +1,57 @@ +action_save($mod); + break; + + default: + $this->action_default($mod); + break; + } + } + + function action_default($mod) + { + $mod->deflt(); + include "view/sysconf/default.view.php"; + } + + function action_save($mod) + { + $mod->save($_REQUEST['input']); + $this->action_default($mod); + } +} + +?> -- cgit v1.2.3