File: selection.inc.php

package info (click to toggle)
zoph 1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,632 kB
  • sloc: php: 28,044; javascript: 10,435; sql: 527; sh: 153; makefile: 4
file content (159 lines) | stat: -rw-r--r-- 5,036 bytes parent folder | download
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
/**
 * Selection class
 * A photo can be "selected" to be used in another part of Zoph,
 * for example to be set as a coverphoto or to define related photos
 *
 * This file is part of Zoph.
 *
 * Zoph is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Zoph is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with Zoph; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * @author Jeroen Roos
 * @package Zoph
 */

use template\actionlink;
use template\block;
use web\session;

/**
 * Selection class
 * A photo can be "selected" to be used in another part of Zoph,
 * for example to be set as a coverphoto or to define related photos
 *
 * @author Jeroen Roos
 * @package Zoph
 */
class selection {
    /** @var array Photos in the selection  */
    private $photos=array();

    /**
     * Create a new selection object
     * @param array The links that need to be displayed with each photo
     * @param string return link
     * @param photo|Organiser the currently displayed object
     * @param string field to assign photo id to
     */
    public function __construct(
        private array       $links,
        private string      $return,
        private ?zophTable  $obj = null,
        private string|array|null     $field = "photo_id",
        private ?array       $session = null,
    ) {
        if (!isset($session)) {
            $session = session::getCurrent();
        }

        if (!isset($session["selected_photo"]) || sizeof($session["selected_photo"])===0) {
            throw new photoNoSelectionException("No photos selected");
        }

        foreach ($session["selected_photo"] as $photo_id) {
            $photo=new photo($photo_id);
            $photo->lookup();
            $this->photos[]=$photo;
        }
        if (sizeof($this->photos) === 0) {
            throw new photoNoSelectionException("No photos selected");
        }

    }

    /**
     * Display the selection div
     */
    public function __toString() {
        $photos=array();

        foreach ($this->photos as $photo) {
            $actionlinks=array();

            if (!($this->obj instanceof photo && ($this->obj->getId() == $photo->getId()))) {
                foreach ($this->links as $actionlink) {
                    if (is_array($this->field)) {
                        $field = array_shift($this->field);
                    } else {
                        $field = $this->field;
                    }

                    $actionlink->addParams(array(
                        $field    => $photo->getId(),
                        "_return" => $this->return
                    ));
                    $actionlinks[]=$actionlink;
                }
            }
            $actionlinks[] = new actionlink("x", "photo/deselect", array(
                "photo_id" => (int) $photo->getId(),
                "_return"  => $this->return
            ));

            $tplActionlinks=new block("actionlinks", array(
                "actionlinks"   => $actionlinks
            ));

            $photos[]=array(
                "actionlinks"   => $tplActionlinks,
                "photo"         => $photo
            );

        }

        $tpl=new block("selection", array(
            "count"     => count($this->photos),
            "photos"    => $photos
        ));
        return (string) $tpl;
    }

    public static function select(photo $photo) : void {
        $session = session::getCurrent();
        $selectKey=false;

        if (isset($session["selected_photo"])) {
            if (!is_array($session["selected_photo"])) {
                $session["selected_photo"] = array();
            }
            $selectKey=array_search($photo->getId(), $session["selected_photo"]);
        }
        if ($selectKey === false) {
            $selection = $session["selected_photo"];
            $selection[]=$photo->getId();
            $session["selected_photo"] = $selection;
        }

    }

    public static function deselect(photo $photo) : void {
        $session = session::getCurrent();
        $selectKey=false;

        if (isset($session["selected_photo"])) {
            if (!is_array($session["selected_photo"])) {
                $session["selected_photo"] = array();
            }
            $selectKey=array_search($photo->getId(), $session["selected_photo"]);
        }
        if ($selectKey !== false) {
            $selection = $session["selected_photo"];
            unset($selection[$selectKey]);
            $session["selected_photo"] = $selection;
        }

    }


}