aboutsummaryrefslogtreecommitdiff
path: root/app/class/controllerhome.php
blob: 6932dfba49be65a786a562f6d9b2d9daaad0b0ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php

class Controllerhome extends Controllerart
{
    /** @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('artread/', ['art' => 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::arttable()];

            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('artread/', ['art' => $_POST['id']]);
                        break;

                    case 'edit':
                        $this->routedirect('artedit', ['art' => $_POST['id']]);
                        break;
                }
            }
        } else {
            $this->routedirect('home');
        }
    }

    public function renderall()
    {
        if ($this->user->iseditor()) {
            $pagelist = $this->modelhome->getlister();
            foreach ($pagelist as $page) {
                $this->renderart($page);
                $this->artmanager->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');
    }
}

?>