Хранилища Subversion ant

Редакция

Редакция 514 | Редакция 516 | К новейшей редакции | Только различия | Не учитывать пробелы | Содержимое файла | Авторство | Последнее изменение | Открыть журнал | RSS

Редакция 514 Редакция 515
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 *  
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for Debian and
5
 *  Codename: ant-ng - generator of sources.list for Debian and
6
 *  distributives, based on Debian
6
 *  distributives, based on Debian
7
 *  http://alex-w.org.ru/p/antng/
7
 *  http://alex-w.org.ru/p/antng/
8
 *
8
 *
9
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Copyright (c) 2009 Alexander Wolf
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
11
 *  http://alex-w.org.ru/p/antng/license
11
 *  http://alex-w.org.ru/p/antng/license
12
 *
12
 *
13
 */
13
 */
14
14
15
class Core {
15
class Core {
16
    protected $db       = NULL;
16
    protected $db       = NULL;
17
    protected $prefix   = NULL;
17
    protected $prefix   = NULL;
18
    protected $secure   = NULL;    
18
    protected $secure   = NULL;    
19
    protected $cookie   = NULL;
19
    protected $cookie   = NULL;
20
20
21
    /**
21
    /**
22
     * Конструктор класса Core - ядро генератора
22
     * Конструктор класса Core - ядро генератора
23
     *
23
     *
24
     * @author Alexander Wolf
24
     * @author Alexander Wolf
25
     * @category Core
25
     * @category Core
26
     *
26
     *
27
     * @param string $database
27
     * @param string $database
28
     * @param string $prefix
28
     * @param string $prefix
29
     * @param object $secure
29
     * @param object $secure
30
     * @param string $cookie
30
     * @param string $cookie
31
     */
31
     */
32
    public function __construct($database, $prefix, $secure, $cookie) {
32
    public function __construct($database, $prefix, $secure, $cookie) {
33
        $this->db       = $database;
33
        $this->db       = $database;
34
        $this->prefix   = $prefix;
34
        $this->prefix   = $prefix;
35
        $this->secure   = $secure;
35
        $this->secure   = $secure;
36
        $this->cookie   = $cookie;
36
        $this->cookie   = $cookie;
37
    }
37
    }
38
38
39
    /**
39
    /**
40
     * Получение данных о настройке
40
     * Получение данных о настройке
41
     *
41
     *
42
     * @author Alexander Wolf
42
     * @author Alexander Wolf
43
     * @category Core
43
     * @category Core
44
     *
44
     *
45
     * @param string $attr
45
     * @param string $attr
46
     * @return array
46
     * @return array
47
     */
47
     */
48
    public function getOption($attr) {
48
    public function getOption($attr) {
49
        $result = array();
49
        $result = array();
50
        $query = "SELECT optvalue FROM ".$this->prefix."settings WHERE opt='".$this->secure->checkStr($attr)."'";
50
        $query = "SELECT optvalue FROM ".$this->prefix."settings WHERE opt='".$this->secure->checkStr($attr)."'";
51
        $rq =& $this->db->query($query);
51
        $rq =& $this->db->query($query);
52
        if ($rq->numRows()!=0) {
52
        if ($rq->numRows()!=0) {
53
            $rq->fetchInto($element);
53
            $rq->fetchInto($element);
54
            $result["ERR"] = 0;
54
            $result["ERR"] = 0;
55
            $result["OptValue"] = $element["optvalue"];
55
            $result["OptValue"] = $element["optvalue"];
56
        } else {
56
        } else {
57
            $result["ERR"] = 1;
57
            $result["ERR"] = 1;
58
            $result["ERRINFO"] = "Empty result";
58
            $result["ERRINFO"] = "Empty result";
59
        }
59
        }
60
        return $result;
60
        return $result;
61
    }
61
    }
62
62
63
    /**
63
    /**
64
     * Установка данных о настройке
64
     * Установка данных о настройке
65
     *
65
     *
66
     * @author Alexander Wolf
66
     * @author Alexander Wolf
67
     * @category Core
67
     * @category Core
68
     *
68
     *
69
     * @param string $attr
69
     * @param string $attr
70
     * @param string $value
70
     * @param string $value
71
     * @return array
71
     * @return array
72
     */
72
     */
73
    public function setOption($attr, $value) {
73
    public function setOption($attr, $value) {
74
        $result = array();
74
        $result = array();
75
75
76
        if ($attr != "passwd") {
76
        if ($attr != "passwd") {
77
            $sValue = $this->secure->checkStr($value);
77
            $sValue = $this->secure->checkStr($value);
78
        } else {
78
        } else {
79
            $sValue = $value;
79
            $sValue = $value;
80
        }
80
        }
81
81
82
        $query = "UPDATE ".$this->prefix."settings SET optvalue='".$sValue."' WHERE opt='".$attr."'";
82
        $query = "UPDATE ".$this->prefix."settings SET optvalue='".$sValue."' WHERE opt='".$attr."'";
83
        $rq =& $this->db->query($query);
83
        $rq =& $this->db->query($query);
84
        if (PEAR::isError($this->db)) {
84
        if (PEAR::isError($this->db)) {
85
            $result["ERR"] = 1;
85
            $result["ERR"] = 1;
86
            $result["ERRINFO"] = $this->db->getMessage();
86
            $result["ERRINFO"] = $this->db->getMessage();
87
        } else {
87
        } else {
88
            $result["ERR"] = 0;
88
            $result["ERR"] = 0;
89
        }
89
        }
90
90
91
        return $result;
91
        return $result;
92
    }
92
    }
93
93
94
    /**
94
    /**
95
     * Создание настройки
95
     * Создание настройки
96
     *
96
     *
97
     * @author Alexander Wolf
97
     * @author Alexander Wolf
98
     * @category Core
98
     * @category Core
99
     *
99
     *
100
     * @param string $attr
100
     * @param string $attr
101
     * @param string $value
101
     * @param string $value
102
     * @return array
102
     * @return array
103
     */
103
     */
104
    public function addOption($attr, $value) {
104
    public function addOption($attr, $value) {
105
        $result = array();
105
        $result = array();
106
        $sValue = $this->secure->checkStr($value);
106
        $sValue = $this->secure->checkStr($value);
107
107
108
        $query = "INSERT INTO ".$this->prefix."settings SET opt='".$attr."', optvalue='".$sValue."'";
108
        $query = "INSERT INTO ".$this->prefix."settings SET opt='".$attr."', optvalue='".$sValue."'";
109
        $rq =& $this->db->query($query);
109
        $rq =& $this->db->query($query);
110
        if (PEAR::isError($this->db)) {
110
        if (PEAR::isError($this->db)) {
111
            $result["ERR"] = 1;
111
            $result["ERR"] = 1;
112
            $result["ERRINFO"] = $this->db->getMessage();
112
            $result["ERRINFO"] = $this->db->getMessage();
113
        } else {
113
        } else {
114
            $result["ERR"] = 0;
114
            $result["ERR"] = 0;
115
        }
115
        }
116
116
117
        return $result;
117
        return $result;
118
    }
118
    }
119
       
119
       
120
    /**
120
    /**
121
     * Получение и отображение списка дистрибутвов
121
     * Получение и отображение списка дистрибутвов
122
     *
122
     *
123
     * @author Alexander Wolf
123
     * @author Alexander Wolf
124
     * @category Core
124
     * @category Core
125
     * @deprecated may be deprecated XXX
125
     * @deprecated may be deprecated XXX
126
     *
126
     *
127
     * @param string $name
127
     * @param string $name
128
     * @param string $heads
128
     * @param string $heads
129
     * @param string $info
129
     * @param string $info
130
     * @param string $format
130
     * @param string $format
131
     * @return string
131
     * @return string
132
     */
132
     */
133
    public function showDistributionList($name, $heads = "", $info = "", $format = 'html') {
133
    public function showDistributionList($name, $heads = "", $info = "", $format = 'html') {
134
        $query = "SELECT * FROM ".$this->prefix."distribution ORDER BY dist_id ASC";
134
        $query = "SELECT * FROM ".$this->prefix."distribution ORDER BY dist_id ASC";
135
        $rq =& $this->db->query($query);
135
        $rq =& $this->db->query($query);
136
        switch ($format) {
136
        switch ($format) {
137
            case 'html':
137
            case 'html':
138
                $show  = "<fieldset><legend>".$heads."</legend>\n<select id='".$name."' name='".$name."'>\n";
138
                $show  = "<fieldset><legend>".$heads."</legend>\n<select id='".$name."' name='".$name."'>\n";
139
                $show .= "<option value=''>".$info."</option>\n";
139
                $show .= "<option value=''>".$info."</option>\n";
140
                while ($rq->fetchInto($element)) {
140
                while ($rq->fetchInto($element)) {
141
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
141
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
142
                }
142
                }
143
                $show .= "</select></fieldset>";
143
                $show .= "</select></fieldset>";
144
                break;
144
                break;
145
            case 'json':
145
            case 'json':
146
                $show = '[{value:"",text:"'.$info.'"}';                
146
                $show = '[{value:"",text:"'.$info.'"}';                
147
                while ($rq->fetchInto($element)) {
147
                while ($rq->fetchInto($element)) {
148
                    $show .= ',{value:"'.$this->secure->checkInt($element["dist_id"]).'",text:"'.$this->secure->checkStr($element["distname"],1).'"}';
148
                    $show .= ',{value:"'.$this->secure->checkInt($element["dist_id"]).'",text:"'.$this->secure->checkStr($element["distname"],1).'"}';
149
                }
149
                }
150
                $show .= ']';
150
                $show .= ']';
151
                break;
151
                break;
152
            case 'innerhtml':
152
            case 'innerhtml':
153
                $show = "<select id='".$name."' name='".$name."'>\n";
153
                $show = "<select id='".$name."' name='".$name."'>\n";
154
                while ($rq->fetchInto($element)) {
154
                while ($rq->fetchInto($element)) {
155
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
155
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
156
                }
156
                }
157
                $show .= "</select>";
157
                $show .= "</select>";
158
                break;
158
                break;
159
            case 'list':
159
            case 'list':
160
                $show = "<ul>";
160
                $show = "<ul>";
161
                while ($rq->fetchInto($element)) {
161
                while ($rq->fetchInto($element)) {
162
                    $show .= "<li>[<a href='".$heads."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["dist_id"])."'>править</a>][<a href='".$heads."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["dist_id"])."'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)."</li>\n";
162
                    $show .= "<li>[<a href='".$heads."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["dist_id"])."'>править</a>][<a href='".$heads."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["dist_id"])."'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)."</li>\n";
163
                }
163
                }
164
                $show .= "</ul>";
164
                $show .= "</ul>";
165
                break;
165
                break;
166
        }
166
        }
167
        return $show;
167
        return $show;
168
    }
168
    }
169
169
170
    /**
170
    /**
171
     * Получение названия дистрибутива
171
     * Получение названия дистрибутива
172
     *
172
     *
173
     * @author Alexander Wolf
173
     * @author Alexander Wolf
174
     * @category Core
174
     * @category Core
175
     *
175
     *
176
     * @param integer $distID
176
     * @param integer $distID
177
     * @return array
177
     * @return array
178
     */
178
     */
179
    public function getDistName($distID) {
179
    public function getDistName($distID) {
180
        $result = array();
180
        $result = array();
181
        $query = "SELECT distname FROM ".$this->prefix."distribution WHERE dist_id='".$this->secure->checkInt($distID)."'";
181
        $query = "SELECT distname FROM ".$this->prefix."distribution WHERE dist_id='".$this->secure->checkInt($distID)."'";
182
        $rq =& $this->db->query($query);
182
        $rq =& $this->db->query($query);
183
        if (PEAR::isError($this->db)) {
183
        if (PEAR::isError($this->db)) {
184
            $result["ERR"] = 1;
184
            $result["ERR"] = 1;
185
            $result["ERRINFO"] = $this->db->getMessage();
185
            $result["ERRINFO"] = $this->db->getMessage();
186
        } else {
186
        } else {
187
            $rq->fetchInto($element);
187
            $rq->fetchInto($element);
188
            $result["ERR"] = 0;
188
            $result["ERR"] = 0;
189
            $result["DistName"] = $this->secure->checkStr($element["distname"],1);
189
            $result["DistName"] = $this->secure->checkStr($element["distname"],1);
190
        }
190
        }
191
191
192
        return $result;
192
        return $result;
193
    }
193
    }
194
194
195
    /**
195
    /**
196
     * Получение названия программы, ее версии и описания
196
     * Получение названия программы, ее версии и описания
197
     *
197
     *
198
     * @author Alexander Wolf
198
     * @author Alexander Wolf
199
     * @category Core
199
     * @category Core
200
     *
200
     *
201
     * @param string $attr
201
     * @param string $attr
202
     * @return string
202
     * @return string
203
     */
203
     */
204
    public function getEngineAttr($attr = 'codename') {
204
    public function getEngineAttr($attr = 'codename') {
205
        $cname = $this->getOption($attr);
205
        $cname = $this->getOption($attr);
206
        return $this->secure->checkStr($cname["OptValue"],1);
206
        return $this->secure->checkStr($cname["OptValue"],1);
207
    }
207
    }
208
208
209
    /**
209
    /**
210
     * Получение и отображение списка версий дистрибутива
210
     * Получение и отображение списка версий дистрибутива
211
     *
211
     *
212
     * @author Alexander Wolf
212
     * @author Alexander Wolf
213
     * @category Core
213
     * @category Core
214
     *
214
     *
215
     * @param string $name
215
     * @param string $name
216
     * @param integer $distID
216
     * @param integer $distID
217
     * @param string $format
217
     * @param string $format
218
     * @return string
218
     * @return string
219
     */
219
     */
220
    public function showDistVersionsList($name, $distID, $format = 'html', $actor = '') {
220
    public function showDistVersionsList($name, $distID, $format = 'html', $actor = '') {
221
        $distname = $this->getDistName($distID);
221
        $distname = $this->getDistName($distID);
222
        if ($distID == 0) {
222
        if ($distID == 0) {
223
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id ORDER BY d.dist_id,v.version ASC";
223
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id ORDER BY d.dist_id,v.version ASC";
224
        } else {
224
        } else {
225
            $query = "SELECT * FROM ".$this->prefix."version WHERE dist_id='".$this->secure->checkInt($distID)."' ORDER BY version ASC";
225
            $query = "SELECT * FROM ".$this->prefix."version WHERE dist_id='".$this->secure->checkInt($distID)."' ORDER BY version ASC";
226
        }
226
        }
227
        $rq =& $this->db->query($query);
227
        $rq =& $this->db->query($query);
228
        switch ($format) {
228
        switch ($format) {
229
            case 'html':
229
            case 'html':
230
                $show  = "<fieldset><legend>Версии ".$distname["DistName"]."</legend>\n<select id='".$name."' name='".$name."'>\n";
230
                $show  = "<fieldset><legend>Версии ".$distname["DistName"]."</legend>\n<select id='".$name."' name='".$name."'>\n";
231
                $show .= "<option value=''>Выбери версию ".$distname["DistName"]."</option>\n";
231
                $show .= "<option value=''>Выбери версию ".$distname["DistName"]."</option>\n";
232
                while ($rq->fetchInto($element)) {
232
                while ($rq->fetchInto($element)) {
233
                    $show .= "<option value='".$this->secure->checkInt($element["version_id"])."'>".$this->secure->checkStr($element["version"],1)." ".$this->secure->checkStr($element["vname"],1)."</option>\n";
233
                    $show .= "<option value='".$this->secure->checkInt($element["version_id"])."'>".$this->secure->checkStr($element["version"],1)." ".$this->secure->checkStr($element["vname"],1)."</option>\n";
234
                }
234
                }
235
                $show .= "</select></fieldset>";
235
                $show .= "</select></fieldset>";
236
                break;
236
                break;
237
            case 'json':
237
            case 'json':
238
                $show = '[{value:"",text:"Выбери версию '.$distname["DistName"].'"}';                
238
                $show = '[{value:"",text:"Выбери версию '.$distname["DistName"].'"}';                
239
                while ($rq->fetchInto($element)) {
239
                while ($rq->fetchInto($element)) {
240
                    $show .= ',{value:"'.$this->secure->checkInt($element["version_id"]).'",text:"'.$this->secure->checkStr($element["version"],1).' '.$this->secure->checkStr($element["vname"],1).'"}';
240
                    $show .= ',{value:"'.$this->secure->checkInt($element["version_id"]).'",text:"'.$this->secure->checkStr($element["version"],1).' '.$this->secure->checkStr($element["vname"],1).'"}';
241
                }
241
                }
242
                $show .= ']';
242
                $show .= ']';
243
                break;
243
                break;
244
            case 'list':
244
            case 'list':
245
                $show = "<ul>\n";
245
                $show = "<ul>\n";
246
                while ($rq->fetchInto($element)) {
246
                while ($rq->fetchInto($element)) {
247
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["version_id"])."'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["version_id"])."'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)." ".$this->secure->checkStr($element["version"],1)." &#8220;<em>".$this->secure->checkStr($element["vname"],1)."</em>&#8221;</li>\n";
247
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["version_id"])."'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["version_id"])."'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)." ".$this->secure->checkStr($element["version"],1)." &#8220;<em>".$this->secure->checkStr($element["vname"],1)."</em>&#8221;</li>\n";
248
                }
248
                }
249
                $show .= "</ul>";
249
                $show .= "</ul>";
250
                break;
250
                break;
251
        }
251
        }
252
        return $show;
252
        return $show;
253
    }
253
    }
254
254
255
    /**
255
    /**
256
     * Получение и отображение списка секций основного (официального) репозитория
256
     * Получение и отображение списка секций основного (официального) репозитория
257
     *
257
     *
258
     * @author Alexander Wolf
258
     * @author Alexander Wolf
259
     * @category Core
259
     * @category Core
260
     *
260
     *
261
     * @param integer $version
261
     * @param integer $version
262
     * @param string $format
262
     * @param string $format
263
     * @return string
263
     * @return string
264
     */
264
     */
265
    public function showBranchesList($version, $format = 'html') {
265
    public function showBranchesList($version, $format = 'html') {
266
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='1'";
266
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='1'";
267
        $rq =& $this->db->query($query);
267
        $rq =& $this->db->query($query);
268
        $rq->fetchInto($types);
268
        $rq->fetchInto($types);
269
        $query  = "SELECT s.*,t.rtype FROM ".$this->prefix."section s ";
269
        $query  = "SELECT s.*,t.rtype FROM ".$this->prefix."section s ";
270
        $query .= "JOIN ".$this->prefix."sect2rep l ON s.sect_id=l.sect_id ";
270
        $query .= "JOIN ".$this->prefix."sect2rep l ON s.sect_id=l.sect_id ";
271
        $query .= "JOIN ".$this->prefix."repository r ON r.rep_id=l.rep_id ";
271
        $query .= "JOIN ".$this->prefix."repository r ON r.rep_id=l.rep_id ";
272
        $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
272
        $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
273
        $query .= "WHERE t.rtype_id='1' AND r.version='".$this->secure->checkInt($version)."'";
273
        $query .= "WHERE t.rtype_id='1' AND r.version='".$this->secure->checkInt($version)."'";
274
        $rq =& $this->db->query($query);
274
        $rq =& $this->db->query($query);
275
        switch ($format) {
275
        switch ($format) {
276
            case 'html':
276
            case 'html':
277
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
277
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
278
                while ($rq->fetchInto($element)) {
278
                while ($rq->fetchInto($element)) {
279
                    $show .= "<div class='sections'><input type='checkbox' name='section[]' value='".$element["sect_id"]."'> ".$this->secure->checkStr($element["secname"],1)." &mdash; ".$this->secure->checkStr($element["sectinfo"],1)."</div>\n";
279
                    $show .= "<div class='sections'><input type='checkbox' name='section[]' value='".$element["sect_id"]."'> ".$this->secure->checkStr($element["secname"],1)." &mdash; ".$this->secure->checkStr($element["sectinfo"],1)."</div>\n";
280
                }
280
                }
281
                $show .= "</fieldset>\n";
281
                $show .= "</fieldset>\n";
282
                break;
282
                break;
283
            case 'json':
283
            case 'json':
284
                //TODO Доделать JSON-вывод списка секций основного репозитория
284
                //TODO Доделать JSON-вывод списка секций основного репозитория
285
                break;
285
                break;
286
        }
286
        }
287
287
288
        return $show;
288
        return $show;
289
    }
289
    }
290
290
291
    /**
291
    /**
292
     * Получение и отображение списка репозиториев
292
     * Получение и отображение списка репозиториев
293
     *
293
     *
294
     * @author Alexander Wolf
294
     * @author Alexander Wolf
295
     * @category Core
295
     * @category Core
296
     *
296
     *
297
     * @param integer $version
297
     * @param integer $version
298
     * @param integer $reptype
298
     * @param integer $reptype
299
     * @param string $format
299
     * @param string $format
300
     * @return string
300
     * @return string
301
     */
301
     */
302
    public function showRepList($version, $reptype, $format = 'html') {
302
    public function showRepList($version, $reptype, $format = 'html') {
303
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='".$this->secure->checkInt($reptype)."'";
303
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='".$this->secure->checkInt($reptype)."'";
304
        $rq =& $this->db->query($query);
304
        $rq =& $this->db->query($query);
305
        $rq->fetchInto($types);
305
        $rq->fetchInto($types);
306
        $query = "SELECT * FROM ".$this->prefix."repository WHERE version='".$this->secure->checkInt($version)."' AND rtype_id='".$this->secure->checkInt($reptype)."'";
306
        $query = "SELECT * FROM ".$this->prefix."repository WHERE version='".$this->secure->checkInt($version)."' AND rtype_id='".$this->secure->checkInt($reptype)."'";
307
        $rq =& $this->db->query($query);
307
        $rq =& $this->db->query($query);
308
        switch ($format) {
308
        switch ($format) {
309
            case 'html':
309
            case 'html':
310
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
310
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
311
                while ($rq->fetchInto($types)) {
311
                while ($rq->fetchInto($types)) {
312
                    $show .= "<div class='repository'><input type='checkbox' name='repository[]' value='".$element["rep_id"]."'> ".$this->secure->checkStr($element["repname"],1)." &mdash; ".$this->secure->checkStr($element["repinfo"],1)."</div>\n";
312
                    $show .= "<div class='repository'><input type='checkbox' name='repository[]' value='".$element["rep_id"]."'> ".$this->secure->checkStr($element["repname"],1)." &mdash; ".$this->secure->checkStr($element["repinfo"],1)."</div>\n";
313
                }
313
                }
314
                $show .= "</fieldset>\n";
314
                $show .= "</fieldset>\n";
315
                break;
315
                break;
316
            case 'json':
316
            case 'json':
317
                //TODO Доделать JSON-вывод списка репозиториев
317
                //TODO Доделать JSON-вывод списка репозиториев
318
                break;
318
                break;
319
        }
319
        }
320
320
321
        return $show;
321
        return $show;
322
    }
322
    }
323
323
324
    /**
324
    /**
325
     * Добавление поддержки нового apt-дистрибутива
325
     * Добавление поддержки нового apt-дистрибутива
326
     *
326
     *
327
     * @author Alexander Wolf
327
     * @author Alexander Wolf
328
     * @category Core
328
     * @category Core
329
     *
329
     *
330
     * @param string $distname
330
     * @param string $distname
331
     * @param integer $disttype
331
     * @param integer $disttype
332
     * @param string $distua
332
     * @param string $distua
333
     * @param byte $distlogo
333
     * @param byte $distlogo
334
     * @return array
334
     * @return array
335
     */
335
     */
336
    public function addDistribution($distname, $disttype, $distua = '', $distlogo = 0) {
336
    public function addDistribution($distname, $disttype, $distua = '', $distlogo = 0) {
337
        $result = array();
337
        $result = array();
338
        $sDName = $this->secure->checkStr($distname);
338
        $sDName = $this->secure->checkStr($distname);
339
        $sDType = $this->secure->checkInt($disttype);
339
        $sDType = $this->secure->checkInt($disttype);
340
        $sDUAgt = $this->secure->checkStr($distua);
340
        $sDUAgt = $this->secure->checkStr($distua);
341
        $sDLogo = $this->secure->checkInt($distlogo);
341
        $sDLogo = $this->secure->checkInt($distlogo);
342
342
343
        $query = "INSERT INTO ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."'";
343
        $query = "INSERT INTO ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."'";
344
        $rq =& $this->db->query($query);
344
        $rq =& $this->db->query($query);
345
        if (PEAR::isError($this->db)) {
345
        if (PEAR::isError($this->db)) {
346
            $result["ERR"] = 1;
346
            $result["ERR"] = 1;
347
            $result["ERRINFO"] = $this->db->getMessage();
347
            $result["ERRINFO"] = $this->db->getMessage();
348
        } else {
348
        } else {            
349
            $rq->fetchInto($element);
-
 
350
            $result["ERR"] = 0;
349
            $result["ERR"] = 0;
351
        }
350
        }
352
351
353
        return $result;
352
        return $result;
354
    }
353
    }
355
354
356
    /**
355
    /**
357
     * Обновление информации о дистрибутиве
356
     * Обновление информации о дистрибутиве
358
     *
357
     *
359
     * @author Alexander Wolf
358
     * @author Alexander Wolf
360
     * @category Core
359
     * @category Core
361
     *
360
     *
362
     * @param integer $distID
361
     * @param integer $distID
363
     * @param string $distname
362
     * @param string $distname
364
     * @param integer $disttype
363
     * @param integer $disttype
365
     * @param string $distua
364
     * @param string $distua
366
     * @param integer $distlogo
365
     * @param integer $distlogo
367
     * @return array
366
     * @return array
368
     */
367
     */
369
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo) {
368
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo) {
370
        $result = array();
369
        $result = array();
371
        $sDID   = $this->secure->checkInt($distID);
370
        $sDID   = $this->secure->checkInt($distID);
372
        $sDName = $this->secure->checkStr($distname);
371
        $sDName = $this->secure->checkStr($distname);
373
        $sDType = $this->secure->checkInt($disttype);
372
        $sDType = $this->secure->checkInt($disttype);
374
        $sDUAgt = $this->secure->checkStr($distua);
373
        $sDUAgt = $this->secure->checkStr($distua);
375
        $sDLogo = $this->secure->checkInt($distlogo);
374
        $sDLogo = $this->secure->checkInt($distlogo);
376
375
377
        $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."' WHERE dist_id='".$sDID."'";
376
        $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."' WHERE dist_id='".$sDID."'";
378
        $rq =& $this->db->query($query);
377
        $rq =& $this->db->query($query);
379
        if (PEAR::isError($this->db)) {
378
        if (PEAR::isError($this->db)) {
380
            $result["ERR"] = 1;
379
            $result["ERR"] = 1;
381
            $result["ERRINFO"] = $this->db->getMessage();
380
            $result["ERRINFO"] = $this->db->getMessage();
382
        } else {
381
        } else {            
383
            $rq->fetchInto($element);
-
 
384
            $result["ERR"] = 0;
382
            $result["ERR"] = 0;
385
        }
383
        }
386
384
387
        return $result;
385
        return $result;
388
    }
386
    }
389
387
390
    /**
388
    /**
391
     * Удаление информации о дистрибутиве
389
     * Удаление информации о дистрибутиве
392
     *
390
     *
393
     * @author Alexander Wolf
391
     * @author Alexander Wolf
394
     * @category Core
392
     * @category Core
395
     *
393
     *
396
     * @param integer $distID
394
     * @param integer $distID
397
     * @return array
395
     * @return array
398
     */
396
     */
399
    public function dropDistribution($distID) {
397
    public function dropDistribution($distID) {
400
        $result = array();
398
        $result = array();
401
        $sDID   = $this->secure->checkInt($distID);
399
        $sDID   = $this->secure->checkInt($distID);
402
400
403
        // Удаление дистрибутива
401
        // Удаление дистрибутива
404
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
402
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
405
        $rq =& $this->db->query($query);
403
        $rq =& $this->db->query($query);
406
        if (PEAR::isError($this->db)) {
404
        if (PEAR::isError($this->db)) {
407
            $result["ERR"] = 1;
405
            $result["ERR"] = 1;
408
            $result["ERRINFO"] = $this->db->getMessage();
406
            $result["ERRINFO"] = $this->db->getMessage();
409
        } else {
407
        } else {
410
            $rq->fetchInto($element);
408
            $rq->fetchInto($element);
411
            $result["ERR"] = 0;
409
            $result["ERR"] = 0;
412
        }
410
        }
413
411
414
        // Удаление версий дистрибутива
412
        // Удаление версий дистрибутива
415
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
413
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
416
        $rq =& $this->db->query($query);
414
        $rq =& $this->db->query($query);
417
        if (PEAR::isError($this->db)) {
415
        if (PEAR::isError($this->db)) {
418
            $result["ERR"] = 1;
416
            $result["ERR"] = 1;
419
            $result["ERRINFO"] = $this->db->getMessage();
417
            $result["ERRINFO"] = $this->db->getMessage();
420
        } else {
418
        } else {
421
            $rq->fetchInto($element);
419
            $rq->fetchInto($element);
422
            $result["ERR"] = 0;
420
            $result["ERR"] = 0;
423
        }
421
        }
424
422
425
        return $result;
423
        return $result;
426
    }
424
    }
427
425
428
    /**
426
    /**
429
     * Добавление поддержки новой версии apt-дистрибутива
427
     * Добавление поддержки новой версии apt-дистрибутива
430
     *
428
     *
431
     * @author Alexander Wolf
429
     * @author Alexander Wolf
432
     * @category Core
430
     * @category Core
433
     *
431
     *
434
     * @param integer $distID
432
     * @param integer $distID
435
     * @param integer $version
433
     * @param integer $version
436
     * @param string $vname
434
     * @param string $vname
437
     * @param integer $vcodename
435
     * @param integer $vcodename
438
     * @return array
436
     * @return array
439
     */
437
     */
440
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
438
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
441
        $result = array();
439
        $result = array();
442
        $sDistID    = $this->secure->checkInt($distID);
440
        $sDistID    = $this->secure->checkInt($distID);
443
        $sDVersion  = $this->secure->checkStr($version);
441
        $sDVersion  = $this->secure->checkStr($version);
444
        $sDVName    = $this->secure->checkStr($vname);
442
        $sDVName    = $this->secure->checkStr($vname);
445
        $sDVCName   = $this->secure->checkInt($vcodename);
443
        $sDVCName   = $this->secure->checkInt($vcodename);
446
444
447
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
445
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
448
        $rq =& $this->db->query($query);
446
        $rq =& $this->db->query($query);
449
        if (PEAR::isError($this->db)) {
447
        if (PEAR::isError($this->db)) {
450
            $result["ERR"] = 1;
448
            $result["ERR"] = 1;
451
            $result["ERRINFO"] = $this->db->getMessage();
449
            $result["ERRINFO"] = $this->db->getMessage();
452
        } else {
450
        } else {            
453
            $rq->fetchInto($element);
-
 
454
            $result["ERR"] = 0;
451
            $result["ERR"] = 0;
455
        }
452
        }
456
453
457
        return $result;
454
        return $result;
458
    }
455
    }
459
456
460
    /**
457
    /**
461
     * Редактирование информации о версии дистрибутива
458
     * Редактирование информации о версии дистрибутива
462
     *
459
     *
463
     * @author Alexander Wolf
460
     * @author Alexander Wolf
464
     * @category Core
461
     * @category Core
465
     *
462
     *
466
     * @param integer $versionID
463
     * @param integer $versionID
467
     * @param string $version
464
     * @param string $version
468
     * @param string $vname
465
     * @param string $vname
469
     * @param string $vcodename
466
     * @param string $vcodename
470
     * @return array
467
     * @return array
471
     */
468
     */
472
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
469
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
473
        $result = array();
470
        $result = array();
474
        $sVersID    = $this->secure->checkInt($versionID);
471
        $sVersID    = $this->secure->checkInt($versionID);
475
        $sDVersion  = $this->secure->checkStr($version);
472
        $sDVersion  = $this->secure->checkStr($version);
476
        $sDVName    = $this->secure->checkStr($vname);
473
        $sDVName    = $this->secure->checkStr($vname);
477
        $sDVCName   = $this->secure->checkInt($vcodename);
474
        $sDVCName   = $this->secure->checkInt($vcodename);
478
475
479
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
476
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
480
        $rq =& $this->db->query($query);
477
        $rq =& $this->db->query($query);
481
        if (PEAR::isError($this->db)) {
478
        if (PEAR::isError($this->db)) {
482
            $result["ERR"] = 1;
479
            $result["ERR"] = 1;
483
            $result["ERRINFO"] = $this->db->getMessage();
480
            $result["ERRINFO"] = $this->db->getMessage();
484
        } else {
481
        } else {            
485
            $rq->fetchInto($element);
-
 
486
            $result["ERR"] = 0;
482
            $result["ERR"] = 0;
487
        }
483
        }
488
484
489
        return $result;
485
        return $result;
490
    }
486
    }
491
487
492
    /**
488
    /**
493
     * Удаление информации о версии дистрибутива
489
     * Удаление информации о версии дистрибутива
494
     *
490
     *
495
     * @author Alexander Wolf
491
     * @author Alexander Wolf
496
     * @category Core
492
     * @category Core
497
     *
493
     *
498
     * @param integer $versionID
494
     * @param integer $versionID
499
     * @return array
495
     * @return array
500
     */
496
     */
501
    public function dropDistVersion($versionID) {
497
    public function dropDistVersion($versionID) {
502
        $result = array();
498
        $result = array();
503
        $sVersID    = $this->secure->checkInt($versionID);
499
        $sVersID    = $this->secure->checkInt($versionID);
504
500
505
        // Удаление версии дистрибутива
501
        // Удаление версии дистрибутива
506
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
502
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
507
        $rq =& $this->db->query($query);
503
        $rq =& $this->db->query($query);
508
        if (PEAR::isError($this->db)) {
504
        if (PEAR::isError($this->db)) {
509
            $result["ERR"] = 1;
505
            $result["ERR"] = 1;
510
            $result["ERRINFO"] = $this->db->getMessage();
506
            $result["ERRINFO"] = $this->db->getMessage();
511
        } else {
507
        } else {            
512
            $rq->fetchInto($element);
-
 
513
            $result["ERR"] = 0;
508
            $result["ERR"] = 0;
514
        }
509
        }
515
510
516
        // Удаление репозиториев этой версии дистрибутива
511
        // Удаление репозиториев этой версии дистрибутива
517
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
512
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
518
        $rq =& $this->db->query($query);
513
        $rq =& $this->db->query($query);
519
        if (PEAR::isError($this->db)) {
514
        if (PEAR::isError($this->db)) {
520
            $result["ERR"] = 1;
515
            $result["ERR"] = 1;
521
            $result["ERRINFO"] = $this->db->getMessage();
516
            $result["ERRINFO"] = $this->db->getMessage();
522
        } else {
517
        } else {
523
            $rq->fetchInto($element);
518
            $rq->fetchInto($element);
524
            $result["ERR"] = 0;
519
            $result["ERR"] = 0;
525
        }
520
        }
526
521
527
        return $result;
522
        return $result;
528
    }
523
    }
529
524
530
    /**
525
    /**
531
     * Отображение типа дистрибутива
526
     * Отображение типа дистрибутива
532
     *
527
     *
533
     * @author Alexander Wolf
528
     * @author Alexander Wolf
534
     * @category Core
529
     * @category Core
535
     *
530
     *
536
     * @param string $name
531
     * @param string $name
537
     * @param byte $type
532
     * @param byte $type
538
     * @return string
533
     * @return string
539
     */
534
     */
540
    public function showDistTypeForm($name = "dtype",$type = 0) {
535
    public function showDistTypeForm($name = "dtype",$type = 0) {
541
        $query = "SELECT * FROM ".$this->prefix."dtype";
536
        $query = "SELECT * FROM ".$this->prefix."dtype";
542
        $rq =& $this->db->query($query);
537
        $rq =& $this->db->query($query);
543
        $show = "<select name='".$name."' id='".$name."'>\n";
538
        $show = "<select name='".$name."' id='".$name."'>\n";
544
        while ($rq->fetchInto($element)) {
539
        while ($rq->fetchInto($element)) {
545
            if ($element["type_id"] == $type) {
540
            if ($element["type_id"] == $type) {
546
                $show .= "<option value='".$element["type_id"]."' selected>".$this->secure->checkStr($element["type"],1)."</option>\n";
541
                $show .= "<option value='".$element["type_id"]."' selected>".$this->secure->checkStr($element["type"],1)."</option>\n";
547
            } else {
542
            } else {
548
                $show .= "<option value='".$element["type_id"]."'>".$this->secure->checkStr($element["type"],1)."</option>\n";
543
                $show .= "<option value='".$element["type_id"]."'>".$this->secure->checkStr($element["type"],1)."</option>\n";
549
            }
544
            }
550
        }
545
        }
551
        $show .= "</select>";
546
        $show .= "</select>";
552
547
553
        return $show;
548
        return $show;
554
    }
549
    }
555
550
556
    /**
551
    /**
557
     * Отображение формы создания и редактирования apt-дистрибутива
552
     * Отображение формы создания и редактирования apt-дистрибутива
558
     *
553
     *
559
     * @author Alexander Wolf
554
     * @author Alexander Wolf
560
     * @category Core
555
     * @category Core
561
     *
556
     *
562
     * @param integer $distID
557
     * @param integer $distID
563
     * @return string
558
     * @return string
564
     */
559
     */
565
    public function showDistributionForm($distID = 0, $info = '') {
560
    public function showDistributionForm($distID = 0, $info = '') {
566
        $sDistID = $this->secure->checkInt($distID);
561
        $sDistID = $this->secure->checkInt($distID);
567
        $sInfo = $this->secure->checkStr($info, 1);
562
        $sInfo = $this->secure->checkStr($info, 1);
568
        if ($sInfo == "") {
563
        if ($sInfo == "") {
569
            $sInfo = "Дистрибутив";
564
            $sInfo = "Дистрибутив";
570
        }
565
        }
571
        if ($sDistID != 0) {
566
        if ($sDistID != 0) {
572
            // Режим редактирования
567
            // Режим редактирования
573
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
568
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
574
            $rq =& $this->db->query($query);
569
            $rq =& $this->db->query($query);
575
            $rq->fetchInto($element);
570
            $rq->fetchInto($element);
576
        }
571
        }
577
572
578
        if ($element["distlogo"] == 1) {
573
        if ($element["distlogo"] == 1) {
579
            $image = "<img src='./img/d/".$this->secure->checkStr($element["distua"],1).".png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива ".$this->secure->checkStr($element["distname"],1)."' title='Логотип дистрибутива ".$this->secure->checkStr($element["distname"],1)."'>";
574
            $image = "<img src='./img/d/".$this->secure->checkStr($element["distua"],1).".png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива ".$this->secure->checkStr($element["distname"],1)."' title='Логотип дистрибутива ".$this->secure->checkStr($element["distname"],1)."'>";
580
        } else {
575
        } else {
581
            $image = "<img src='./img/d/empty-logo.png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива' title='Логотип дистрибутива не загружен'>";
576
            $image = "<img src='./img/d/empty-logo.png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива' title='Логотип дистрибутива не загружен'>";
582
        }
577
        }
583
578
584
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
579
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
585
        $show .= "<div class='inputbox'><label for='dname'>Название дистрибутива:</label> <input type='text' name='dname' id='dname' value='".$this->secure->checkStr($element["distname"],1)."'></div>\n";
580
        $show .= "<div class='inputbox'><label for='dname'>Название дистрибутива:</label> <input type='text' name='dname' id='dname' value='".$this->secure->checkStr($element["distname"],1)."'></div>\n";
586
        $show .= "<div class='inputbox'><label for='dua'>UA дистрибутива:</label> <input type='text' name='dua' id='dua' value='".$this->secure->checkStr($element["distua"],1)."'></div>\n";
581
        $show .= "<div class='inputbox'><label for='dua'>UA дистрибутива:</label> <input type='text' name='dua' id='dua' value='".$this->secure->checkStr($element["distua"],1)."'></div>\n";
587
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["dtype_id"])."</div>\n";
582
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["dtype_id"])."</div>\n";
588
        $show .= "<div class='inputbox'><table><tr><td class='td-name'>Логотип дистрибутива:</td>\n";
583
        $show .= "<div class='inputbox'><table><tr><td class='td-name'>Логотип дистрибутива:</td>\n";
589
        $show .= "<td>".$image."</td>\n<td><input type='file' name='distlogo'></td>\n</tr></table>\n</div>\n";
584
        $show .= "<td>".$image."</td>\n<td><input type='file' name='distlogo'></td>\n</tr></table>\n</div>\n";
590
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
585
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
591
586
592
        return $show;
587
        return $show;
593
    }
588
    }
594
589
595
    // sourses.list
590
    // sourses.list
596
    public function showSourcesList($distID,$versID,$sectIDs,$repIDs) {
591
    public function showSourcesList($distID,$versID,$sectIDs,$repIDs) {
597
       //TODO Написать генератор sources.list       
592
       //TODO Написать генератор sources.list       
598
    }
593
    }
599
   
594
   
600
    /**
595
    /**
601
     * Проверка пароля (из формы авторизации)
596
     * Проверка пароля (из формы авторизации)
602
     *
597
     *
603
     * @author Alexander Wolf
598
     * @author Alexander Wolf
604
     * @category Core
599
     * @category Core
605
     *
600
     *
606
     * @param string $word
601
     * @param string $word
607
     * @return array
602
     * @return array
608
     */
603
     */
609
    public function checkSign($word) {
604
    public function checkSign($word) {
610
        $result = array();
605
        $result = array();
611
606
612
        $sHash = $this->secure->encryptStr($word);
607
        $sHash = $this->secure->encryptStr($word);
613
        $pwd   = $this->getOption("passwd");
608
        $pwd   = $this->getOption("passwd");
614
        if ($sHash == $pwd["OptValue"]) {
609
        if ($sHash == $pwd["OptValue"]) {
615
            $result["ERR"] = 0;
610
            $result["ERR"] = 0;
616
            $result["Location"] = "manager.php";
611
            $result["Location"] = "manager.php";
617
            setcookie($this->cookie, $sHash);
612
            setcookie($this->cookie, $sHash);
618
        } else {
613
        } else {
619
            $result["ERR"] = 1;
614
            $result["ERR"] = 1;
620
            $result["ERRINFO"] = "Password not valid";
615
            $result["ERRINFO"] = "Password not valid";
621
            $result["Location"] = "manager.php?error=1";
616
            $result["Location"] = "manager.php?error=1";
622
        }
617
        }
623
618
624
        return $result;
619
        return $result;
625
    }
620
    }
626
621
627
    /**
622
    /**
628
     * Проверка пароля (из cookies)
623
     * Проверка пароля (из cookies)
629
     *
624
     *
630
     * @author Alexander Wolf
625
     * @author Alexander Wolf
631
     * @category Core
626
     * @category Core
632
     *
627
     *
633
     * @param string $hash
628
     * @param string $hash
634
     * @return array
629
     * @return array
635
     */
630
     */
636
    public function checkCookieSign($hash) {
631
    public function checkCookieSign($hash) {
637
        $result = array();
632
        $result = array();
638
633
639
        $pwd = $this->getOption("passwd");
634
        $pwd = $this->getOption("passwd");
640
        if ($hash == $pwd["OptValue"]) {
635
        if ($hash == $pwd["OptValue"]) {
641
            $result["ERR"] = 0;
636
            $result["ERR"] = 0;
642
        } else {
637
        } else {
643
            $result["ERR"] = 1;
638
            $result["ERR"] = 1;
644
            $result["ERRINFO"] = "Hash not valid";
639
            $result["ERRINFO"] = "Hash not valid";
645
            $result["Location"] = "manager.php";
640
            $result["Location"] = "manager.php";
646
        }
641
        }
647
642
648
        return $result;
643
        return $result;
649
    }
644
    }
650
645
651
    /**
646
    /**
652
     * Форма ввода пароля
647
     * Форма ввода пароля
653
     *
648
     *
654
     * @author Alexander Wolf
649
     * @author Alexander Wolf
655
     * @category Core
650
     * @category Core
656
     *
651
     *
657
     * @return string
652
     * @return string
658
     */
653
     */
659
    public function showSigninForm() {
654
    public function showSigninForm() {
660
        $show  = "<div id='regform'>";
655
        $show  = "<div id='regform'>";
661
        $show .= "<form action='process.php' method='post'>\n";
656
        $show .= "<form action='process.php' method='post'>\n";
662
        $show .= "<fieldset><legend>Пароль</legend>\n";
657
        $show .= "<fieldset><legend>Пароль</legend>\n";
663
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
658
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
664
        $show .= "<input type='password' name='word' value=''>\n";
659
        $show .= "<input type='password' name='word' value=''>\n";
665
        $show .= "<input type='submit' value=' Войти '>\n";
660
        $show .= "<input type='submit' value=' Войти '>\n";
666
        $show .= "</fieldset>\n</form></div>\n";
661
        $show .= "</fieldset>\n</form></div>\n";
667
662
668
        return $show;
663
        return $show;
669
    }
664
    }
670
665
671
    /**
666
    /**
672
     * Обновление пароля
667
     * Обновление пароля
673
     *
668
     *
674
     * @author Alexander Wolf
669
     * @author Alexander Wolf
675
     * @category Core
670
     * @category Core
676
     *
671
     *
677
     * @param string $word1
672
     * @param string $word1
678
     * @param string $word2
673
     * @param string $word2
679
     * @return array
674
     * @return array
680
     */
675
     */
681
    public function updatePassword($word1, $word2) {
676
    public function updatePassword($word1, $word2) {
682
        $result = array();
677
        $result = array();
683
678
684
        if ($word1 == $word2) {
679
        if ($word1 == $word2) {
685
            $sWord = $this->secure->encryptStr($word1);
680
            $sWord = $this->secure->encryptStr($word1);
686
            $r = $this->setOption("passwd", $sWord);
681
            $r = $this->setOption("passwd", $sWord);
687
            $result = $r;
682
            $result = $r;
688
        } else {
683
        } else {
689
            $result["ERR"] = 1;
684
            $result["ERR"] = 1;
690
            $result["ERRINFO"] = "Passwords is mismatch";
685
            $result["ERRINFO"] = "Passwords is mismatch";
691
        }
686
        }
692
687
693
        return $result;
688
        return $result;
694
    }
689
    }
695
690
696
    /**
691
    /**
697
     * Отображение формы создания и редактирования версии apt-дистрибутива
692
     * Отображение формы создания и редактирования версии apt-дистрибутива
698
     *
693
     *
699
     * @author Alexander Wolf
694
     * @author Alexander Wolf
700
     * @category Core
695
     * @category Core
701
     *
696
     *
702
     * @param string $name
697
     * @param string $name
703
     * @param string $actor
698
     * @param string $actor
704
     * @param integer $versionID
699
     * @param integer $versionID
705
     * @return string
700
     * @return string
706
     */
701
     */
707
    public function showDistVersionsForm($versionID = 0, $info = '') {
702
    public function showDistVersionsForm($versionID = 0, $info = '') {
708
        $sVersionID = $this->secure->checkInt($versionID);
703
        $sVersionID = $this->secure->checkInt($versionID);
709
        $sInfo = $this->secure->checkStr($info, 1);
704
        $sInfo = $this->secure->checkStr($info, 1);
710
        if ($sInfo == "") {
705
        if ($sInfo == "") {
711
            $sInfo = "Версия дистрибутива";
706
            $sInfo = "Версия дистрибутива";
712
        }
707
        }
713
        if ($sVersionID != 0) {
708
        if ($sVersionID != 0) {
714
            // Режим редактирования
709
            // Режим редактирования
715
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$versionID."'";
710
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$versionID."'";
716
            $rq =& $this->db->query($query);
711
            $rq =& $this->db->query($query);
717
            $rq->fetchInto($element);
712
            $rq->fetchInto($element);
718
        }
713
        }
719
 
714
 
720
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
715
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
721
        if ($sVersionID != 0) {
716
        if ($sVersionID != 0) {
722
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
717
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
723
        } else {
718
        } else {
724
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
719
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
725
        }
720
        }
726
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
721
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
727
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
722
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
728
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
723
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
729
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
724
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
730
725
731
        return $show;
726
        return $show;
732
    }    
727
    }    
733
728
734
}
729
}
735
730
736
?>
731
?>