aboutsummaryrefslogtreecommitdiff
path: root/app/class/Controllerhome.php
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2019-11-04 23:31:31 +0100
committern-peugnet <n.peugnet@free.fr>2019-11-05 19:06:40 +0100
commite802d5204b96d645ec3d40b81b4a8bdc6e0ee675 (patch)
tree8e6db5e36ad8f247b442583e1e9e5da2934f4b52 /app/class/Controllerhome.php
parentf1f63f556c41c99d45cd610186b0982383eff375 (diff)
downloadwcms-e802d5204b96d645ec3d40b81b4a8bdc6e0ee675.tar.gz
wcms-e802d5204b96d645ec3d40b81b4a8bdc6e0ee675.zip
refactor: switch to psr-4 autoloading
Diffstat (limited to 'app/class/Controllerhome.php')
-rw-r--r--app/class/Controllerhome.php130
1 files changed, 130 insertions, 0 deletions
diff --git a/app/class/Controllerhome.php b/app/class/Controllerhome.php
new file mode 100644
index 0000000..003a325
--- /dev/null
+++ b/app/class/Controllerhome.php
@@ -0,0 +1,130 @@
+<?php
+
+namespace Wcms;
+
+class Controllerhome extends Controllerpage
+{
+ /** @var Modelhome */
+ protected $modelhome;
+ protected $opt;
+ /** @var Optlist */
+ protected $optlist;
+
+ public function __construct($render)
+ {
+ parent::__construct($render);
+ $this->modelhome = new Modelhome;
+ }
+
+
+
+
+ public function desktop()
+ {
+ if ($this->user->isvisitor() && Config::homepage() === 'redirect' && Config::homeredirect() !== null) {
+ $this->routedirect('pageread/', ['page' => Config::homeredirect()]);
+ } else {
+
+
+
+
+ $table = $this->modelhome->getlister();
+ $this->opt = $this->modelhome->optinit($table);
+
+ $table2 = $this->modelhome->table2($table, $this->opt);
+
+ $columns = $this->modelhome->setcolumns($this->user->columns());
+
+ $vars = ['user' => $this->user, 'table2' => $table2, 'opt' => $this->opt, 'columns' => $columns];
+ $vars['footer'] = ['version' => getversion(), 'total' => count($table), 'database' => Config::pagetable()];
+
+ if (isset($_POST['query']) && $this->user->iseditor()) {
+ $datas = array_merge($_POST, $_SESSION['opt']);
+ $this->optlist = $this->modelhome->Optlistinit($table);
+ $this->optlist->hydrate($datas);
+ $vars['optlist'] = $this->optlist;
+ }
+
+ $this->showtemplate('home', $vars);
+ }
+ }
+
+ public function columns()
+ {
+ if (isset($_POST['columns']) && $this->user->iseditor()) {
+ $user = $this->usermanager->get($this->user->id());
+ $user->hydrate($_POST);
+ $this->usermanager->add($user);
+ $this->usermanager->writesession($user);
+ }
+ $this->routedirect('home');
+ }
+
+ public function search()
+ {
+ if (isset($_POST['id']) && !empty($_POST['id'])) {
+ if (isset($_POST['action'])) {
+ switch ($_POST['action']) {
+ case 'read':
+ $this->routedirect('pageread/', ['page' => $_POST['id']]);
+ break;
+
+ case 'edit':
+ $this->routedirect('pageedit', ['page' => $_POST['id']]);
+ break;
+ }
+ }
+ } else {
+ $this->routedirect('home');
+ }
+ }
+
+ /**
+ * Render every pages in the database
+ */
+ public function renderall()
+ {
+ if ($this->user->iseditor()) {
+ $pagelist = $this->modelhome->getlister();
+ foreach ($pagelist as $page) {
+ $this->renderpage($page);
+ $this->pagemanager->update($page);
+ }
+ }
+ $this->routedirect('home');
+ }
+
+ public function bookmark()
+ {
+ if ($this->user->iseditor() && isset($_POST['action']) && isset($_POST['id']) && !empty($_POST['id'])) {
+ if ($_POST['action'] == 'add' && isset($_POST['query'])) {
+ if (isset($_POST['user']) && $_POST['user'] == $this->user->id()) {
+ $usermanager = new Modeluser();
+ $user = $usermanager->get($_POST['user']);
+ $user->addbookmark($_POST['id'], $_POST['query']);
+ $usermanager->add($user);
+ } else {
+ Config::addbookmark($_POST['id'], $_POST['query']);
+ Config::savejson();
+ }
+ } elseif ($_POST['action'] == 'del') {
+ if(isset($_POST['user']) && $_POST['user'] == $this->user->id()) {
+ $usermanager = new Modeluser();
+ $user = $usermanager->get($_POST['user']);
+ foreach ($_POST['id'] as $id) {
+ $user->deletebookmark($id);
+ }
+ $usermanager->add($user);
+ } else {
+ foreach ($_POST['id'] as $id) {
+ Config::deletebookmark($id);
+ }
+ Config::savejson();
+ }
+ }
+ }
+ $this->routedirect('home');
+ }
+}
+
+?>