Хранилища Subversion ant

Редакция

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

Редакция 554 Редакция 556
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 *  
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for apt-distributives
5
 *  Codename: ant-ng - generator of sources.list for apt-distributives
6
 *  http://alex-w.org.ru/p/antng/
6
 *  http://alex-w.org.ru/p/antng/
7
 *
7
 *
8
 *  Copyright (c) 2009 Alexander Wolf
8
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  http://alex-w.org.ru/p/antng/license
10
 *  http://alex-w.org.ru/p/antng/license
11
 *
11
 *
12
 */
12
 */
13
13
14
class Core {
14
class Core {
15
    protected $db       = NULL;
15
    protected $db       = NULL;
16
    protected $prefix   = NULL;
16
    protected $prefix   = NULL;
17
    protected $secure   = NULL;    
17
    protected $secure   = NULL;    
18
    protected $cookie   = NULL;
18
    protected $cookie   = NULL;
19
19
20
    /**
20
    /**
21
     * Конструктор класса Core - ядро генератора
21
     * Конструктор класса Core - ядро генератора
22
     *
22
     *
23
     * @author Alexander Wolf
23
     * @author Alexander Wolf
24
     * @category Core
24
     * @category Core
25
     *
25
     *
26
     * @param string $database
26
     * @param string $database
27
     * @param string $prefix
27
     * @param string $prefix
28
     * @param object $secure
28
     * @param object $secure
29
     * @param string $cookie
29
     * @param string $cookie
30
     */
30
     */
31
    public function __construct($database, $prefix, $secure, $cookie) {
31
    public function __construct($database, $prefix, $secure, $cookie) {
32
        $this->db       = $database;
32
        $this->db       = $database;
33
        $this->prefix   = $prefix;
33
        $this->prefix   = $prefix;
34
        $this->secure   = $secure;
34
        $this->secure   = $secure;
35
        $this->cookie   = $cookie;
35
        $this->cookie   = $cookie;
36
    }
36
    }
37
37
38
    /**
38
    /**
39
     * Получение данных о настройке
39
     * Получение данных о настройке
40
     *
40
     *
41
     * @author Alexander Wolf
41
     * @author Alexander Wolf
42
     * @category Core
42
     * @category Core
43
     *
43
     *
44
     * @param string $attr
44
     * @param string $attr
45
     * @return array
45
     * @return array
46
     */
46
     */
47
    public function getOption($attr) {
47
    public function getOption($attr) {
48
        $result = array();
48
        $result = array();
49
        $query = "SELECT optvalue FROM ".$this->prefix."settings WHERE opt='".$this->secure->checkStr($attr)."'";
49
        $query = "SELECT optvalue FROM ".$this->prefix."settings WHERE opt='".$this->secure->checkStr($attr)."'";
50
        $rq =& $this->db->query($query);
50
        $rq =& $this->db->query($query);
51
        if ($rq->numRows()!=0) {
51
        if ($rq->numRows()!=0) {
52
            $rq->fetchInto($element);
52
            $rq->fetchInto($element);
53
            $result["ERR"] = 0;
53
            $result["ERR"] = 0;
54
            $result["OptValue"] = $element["optvalue"];
54
            $result["OptValue"] = $element["optvalue"];
55
        } else {
55
        } else {
56
            $result["ERR"] = 1;
56
            $result["ERR"] = 1;
57
            $result["ERRINFO"] = "Empty result";
57
            $result["ERRINFO"] = "Empty result";
58
        }
58
        }
59
        return $result;
59
        return $result;
60
    }
60
    }
61
61
62
    /**
62
    /**
63
     * Установка данных о настройке
63
     * Установка данных о настройке
64
     *
64
     *
65
     * @author Alexander Wolf
65
     * @author Alexander Wolf
66
     * @category Core
66
     * @category Core
67
     *
67
     *
68
     * @param string $attr
68
     * @param string $attr
69
     * @param string $value
69
     * @param string $value
70
     * @return array
70
     * @return array
71
     */
71
     */
72
    public function setOption($attr, $value) {
72
    public function setOption($attr, $value) {
73
        $result = array();
73
        $result = array();
74
74
75
        if ($attr != "passwd") {
75
        if ($attr != "passwd") {
76
            $sValue = $this->secure->checkStr($value);
76
            $sValue = $this->secure->checkStr($value);
77
        } else {
77
        } else {
78
            $sValue = $value;
78
            $sValue = $value;
79
        }
79
        }
80
80
81
        $query = "UPDATE ".$this->prefix."settings SET optvalue='".$sValue."' WHERE opt='".$attr."'";
81
        $query = "UPDATE ".$this->prefix."settings SET optvalue='".$sValue."' WHERE opt='".$attr."'";
82
        $rq =& $this->db->query($query);
82
        $rq =& $this->db->query($query);
83
        if (PEAR::isError($this->db)) {
83
        if (PEAR::isError($this->db)) {
84
            $result["ERR"] = 1;
84
            $result["ERR"] = 1;
85
            $result["ERRINFO"] = $this->db->getMessage();
85
            $result["ERRINFO"] = $this->db->getMessage();
86
        } else {
86
        } else {
87
            $result["ERR"] = 0;
87
            $result["ERR"] = 0;
88
        }
88
        }
89
89
90
        return $result;
90
        return $result;
91
    }
91
    }
92
92
93
    /**
93
    /**
94
     * Создание настройки
94
     * Создание настройки
95
     *
95
     *
96
     * @author Alexander Wolf
96
     * @author Alexander Wolf
97
     * @category Core
97
     * @category Core
98
     *
98
     *
99
     * @param string $attr
99
     * @param string $attr
100
     * @param string $value
100
     * @param string $value
101
     * @return array
101
     * @return array
102
     */
102
     */
103
    public function addOption($attr, $value) {
103
    public function addOption($attr, $value) {
104
        $result = array();
104
        $result = array();
105
        $sValue = $this->secure->checkStr($value);
105
        $sValue = $this->secure->checkStr($value);
106
106
107
        $query = "INSERT INTO ".$this->prefix."settings SET opt='".$attr."', optvalue='".$sValue."'";
107
        $query = "INSERT INTO ".$this->prefix."settings SET opt='".$attr."', optvalue='".$sValue."'";
108
        $rq =& $this->db->query($query);
108
        $rq =& $this->db->query($query);
109
        if (PEAR::isError($this->db)) {
109
        if (PEAR::isError($this->db)) {
110
            $result["ERR"] = 1;
110
            $result["ERR"] = 1;
111
            $result["ERRINFO"] = $this->db->getMessage();
111
            $result["ERRINFO"] = $this->db->getMessage();
112
        } else {
112
        } else {
113
            $result["ERR"] = 0;
113
            $result["ERR"] = 0;
114
        }
114
        }
115
115
116
        return $result;
116
        return $result;
117
    }
117
    }
118
       
118
       
119
    /**
119
    /**
120
     * Получение и отображение списка дистрибутвов
120
     * Получение и отображение списка дистрибутвов
121
     *
121
     *
122
     * @author Alexander Wolf
122
     * @author Alexander Wolf
123
     * @category Core
123
     * @category Core
124
     * @deprecated may be deprecated XXX
124
     * @deprecated may be deprecated XXX
125
     *
125
     *
126
     * @param string $name
126
     * @param string $name
127
     * @param string $heads
127
     * @param string $heads
128
     * @param string $info
128
     * @param string $info
129
     * @param string $format
129
     * @param string $format
130
     * @return string
130
     * @return string
131
     */
131
     */
132
    public function showDistributionList($name, $heads = "", $info = "", $format = 'html') {
132
    public function showDistributionList($name, $heads = "", $info = "", $format = 'html') {
133
        $query = "SELECT * FROM ".$this->prefix."distribution ORDER BY dist_id ASC";
133
        $query = "SELECT * FROM ".$this->prefix."distribution ORDER BY dist_id ASC";
134
        $rq =& $this->db->query($query);
134
        $rq =& $this->db->query($query);
135
        switch ($format) {
135
        switch ($format) {
136
            case 'html':
136
            case 'html':
137
                $show  = "<fieldset><legend>".$heads."</legend>\n<select id='".$name."' name='".$name."'>\n";
137
                $show  = "<fieldset><legend>".$heads."</legend>\n<select id='".$name."' name='".$name."'>\n";
138
                $show .= "<option value=''>".$info."</option>\n";
138
                $show .= "<option value=''>".$info."</option>\n";
139
                while ($rq->fetchInto($element)) {
139
                while ($rq->fetchInto($element)) {
140
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
140
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
141
                }
141
                }
142
                $show .= "</select></fieldset>";
142
                $show .= "</select></fieldset>";
143
                break;
143
                break;
144
            case 'json':
144
            case 'json':
145
                $show = '[{value:"",text:"'.$info.'"}';                
145
                $show = '[{value:"",text:"'.$info.'"}';                
146
                while ($rq->fetchInto($element)) {
146
                while ($rq->fetchInto($element)) {
147
                    $show .= ',{value:"'.$this->secure->checkInt($element["dist_id"]).'",text:"'.$this->secure->checkStr($element["distname"],1).'"}';
147
                    $show .= ',{value:"'.$this->secure->checkInt($element["dist_id"]).'",text:"'.$this->secure->checkStr($element["distname"],1).'"}';
148
                }
148
                }
149
                $show .= ']';
149
                $show .= ']';
150
                break;
150
                break;
151
            case 'innerhtml':
151
            case 'innerhtml':
152
                $show = "<select id='".$name."' name='".$name."'>\n";
152
                $show = "<select id='".$name."' name='".$name."'>\n";
153
                while ($rq->fetchInto($element)) {
153
                while ($rq->fetchInto($element)) {
154
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
154
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
155
                }
155
                }
156
                $show .= "</select>";
156
                $show .= "</select>";
157
                break;
157
                break;
158
            case 'list':
158
            case 'list':
159
                $show = "<ul>";
159
                $show = "<ul>";
160
                while ($rq->fetchInto($element)) {
160
                while ($rq->fetchInto($element)) {
161
                    $show .= "<li>[<a href='".$heads."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["dist_id"])."' class='edit'>править</a>][<a href='".$heads."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["dist_id"])."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)."</li>\n";
161
                    $show .= "<li>[<a href='".$heads."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["dist_id"])."' class='edit'>править</a>][<a href='".$heads."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["dist_id"])."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)."</li>\n";
162
                }
162
                }
163
                $show .= "</ul>";
163
                $show .= "</ul>";
164
                break;
164
                break;
165
        }
165
        }
166
        return $show;
166
        return $show;
167
    }
167
    }
168
168
169
    /**
169
    /**
170
     * Получение названия дистрибутива
170
     * Получение названия дистрибутива
171
     *
171
     *
172
     * @author Alexander Wolf
172
     * @author Alexander Wolf
173
     * @category Core
173
     * @category Core
174
     *
174
     *
175
     * @param integer $distID
175
     * @param integer $distID
176
     * @return array
176
     * @return array
177
     */
177
     */
178
    public function getDistName($distID) {
178
    public function getDistName($distID) {
179
        $result = array();
179
        $result = array();
180
        $query = "SELECT distname FROM ".$this->prefix."distribution WHERE dist_id='".$this->secure->checkInt($distID)."'";
180
        $query = "SELECT distname FROM ".$this->prefix."distribution WHERE dist_id='".$this->secure->checkInt($distID)."'";
181
        $rq =& $this->db->query($query);
181
        $rq =& $this->db->query($query);
182
        if (PEAR::isError($this->db)) {
182
        if (PEAR::isError($this->db)) {
183
            $result["ERR"] = 1;
183
            $result["ERR"] = 1;
184
            $result["ERRINFO"] = $this->db->getMessage();
184
            $result["ERRINFO"] = $this->db->getMessage();
185
        } else {
185
        } else {
186
            $rq->fetchInto($element);
186
            $rq->fetchInto($element);
187
            $result["ERR"] = 0;
187
            $result["ERR"] = 0;
188
            $result["DistName"] = $this->secure->checkStr($element["distname"],1);
188
            $result["DistName"] = $this->secure->checkStr($element["distname"],1);
189
        }
189
        }
190
190
191
        return $result;
191
        return $result;
192
    }
192
    }
193
193
194
    /**
194
    /**
195
     * Получение названия программы, ее версии и описания
195
     * Получение названия программы, ее версии и описания
196
     *
196
     *
197
     * @author Alexander Wolf
197
     * @author Alexander Wolf
198
     * @category Core
198
     * @category Core
199
     *
199
     *
200
     * @param string $attr
200
     * @param string $attr
201
     * @return string
201
     * @return string
202
     */
202
     */
203
    public function getEngineAttr($attr = 'codename') {
203
    public function getEngineAttr($attr = 'codename') {
204
        $cname = $this->getOption($attr);
204
        $cname = $this->getOption($attr);
205
        return $this->secure->checkStr($cname["OptValue"],1);
205
        return $this->secure->checkStr($cname["OptValue"],1);
206
    }
206
    }
207
207
208
    /**
208
    /**
209
     * Получение и отображение списка версий дистрибутива
209
     * Получение и отображение списка версий дистрибутива
210
     *
210
     *
211
     * @author Alexander Wolf
211
     * @author Alexander Wolf
212
     * @category Core
212
     * @category Core
213
     *
213
     *
214
     * @param string $name
214
     * @param string $name
215
     * @param integer $distID
215
     * @param integer $distID
216
     * @param string $format
216
     * @param string $format
217
     * @return string
217
     * @return string
218
     */
218
     */
219
    public function showDistVersionsList($name, $distID, $format = 'html', $actor = '') {
219
    public function showDistVersionsList($name, $distID, $format = 'html', $actor = '') {
220
        $distname = $this->getDistName($distID);
220
        $distname = $this->getDistName($distID);
221
        if ($distID == 0) {
221
        if ($distID == 0) {
222
            $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";
222
            $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
        } else {
223
        } else {
224
            $query = "SELECT * FROM ".$this->prefix."version WHERE dist_id='".$this->secure->checkInt($distID)."' ORDER BY version ASC";
224
            $query = "SELECT * FROM ".$this->prefix."version WHERE dist_id='".$this->secure->checkInt($distID)."' ORDER BY version ASC";
225
        }
225
        }
226
        $rq =& $this->db->query($query);
226
        $rq =& $this->db->query($query);
227
        switch ($format) {
227
        switch ($format) {
228
            case 'html':
228
            case 'html':
229
                $show  = "<fieldset><legend>Версии ".$distname["DistName"]."</legend>\n<select id='".$name."' name='".$name."'>\n";
229
                $show  = "<fieldset><legend>Версии ".$distname["DistName"]."</legend>\n<select id='".$name."' name='".$name."'>\n";
230
                $show .= "<option value=''>Выбери версию ".$distname["DistName"]."</option>\n";
230
                $show .= "<option value=''>Выбери версию ".$distname["DistName"]."</option>\n";
231
                while ($rq->fetchInto($element)) {
231
                while ($rq->fetchInto($element)) {
232
                    $show .= "<option value='".$this->secure->checkInt($element["version_id"])."'>".$this->secure->checkStr($element["version"],1)." ".$this->secure->checkStr($element["vname"],1)."</option>\n";
232
                    $show .= "<option value='".$this->secure->checkInt($element["version_id"])."'>".$this->secure->checkStr($element["version"],1)." ".$this->secure->checkStr($element["vname"],1)."</option>\n";
233
                }
233
                }
234
                $show .= "</select></fieldset>";
234
                $show .= "</select></fieldset>";
235
                break;
235
                break;
236
            case 'json':
236
            case 'json':
237
                $show = '[{value:"",text:"Выбери версию '.$distname["DistName"].'"}';                
237
                $show = '[{value:"",text:"Выбери версию '.$distname["DistName"].'"}';                
238
                while ($rq->fetchInto($element)) {
238
                while ($rq->fetchInto($element)) {
239
                    $show .= ',{value:"'.$this->secure->checkInt($element["version_id"]).'",text:"'.$this->secure->checkStr($element["version"],1).' '.$this->secure->checkStr($element["vname"],1).'"}';
239
                    $show .= ',{value:"'.$this->secure->checkInt($element["version_id"]).'",text:"'.$this->secure->checkStr($element["version"],1).' '.$this->secure->checkStr($element["vname"],1).'"}';
240
                }
240
                }
241
                $show .= ']';
241
                $show .= ']';
242
                break;
242
                break;
243
            case 'list':
243
            case 'list':
244
                $show = "<ul>\n";
244
                $show = "<ul>\n";
245
                while ($rq->fetchInto($element)) {
245
                while ($rq->fetchInto($element)) {
246
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["version_id"])."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["version_id"])."' class='delete'>удалить</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";
246
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["version_id"])."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["version_id"])."' class='delete'>удалить</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
                }
247
                }
248
                $show .= "</ul>";
248
                $show .= "</ul>";
249
                break;
249
                break;
250
        }
250
        }
251
        return $show;
251
        return $show;
252
    }
252
    }
253
253
254
    /**
254
    /**
255
     * Получение и отображение списка секций основного (официального) репозитория
255
     * Получение и отображение списка секций основного (официального) репозитория
256
     *
256
     *
257
     * @author Alexander Wolf
257
     * @author Alexander Wolf
258
     * @category Core
258
     * @category Core
259
     *
259
     *
260
     * @param integer $version
260
     * @param integer $version
261
     * @param string $format
261
     * @param string $format
262
     * @return string
262
     * @return string
263
     */
263
     */
264
    public function showBranchesList($version, $format = 'html') {
264
    public function showBranchesList($version, $format = 'html') {
265
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='1'";
265
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='1'";
266
        $rq =& $this->db->query($query);
266
        $rq =& $this->db->query($query);
267
        $rq->fetchInto($types);
267
        $rq->fetchInto($types);
268
        $query  = "SELECT s.*,t.rtype FROM ".$this->prefix."section s ";
268
        $query  = "SELECT s.*,t.rtype FROM ".$this->prefix."section s ";
269
        $query .= "JOIN ".$this->prefix."sect2rep l ON s.sect_id=l.sect_id ";
269
        $query .= "JOIN ".$this->prefix."sect2rep l ON s.sect_id=l.sect_id ";
270
        $query .= "JOIN ".$this->prefix."repository r ON r.rep_id=l.rep_id ";
270
        $query .= "JOIN ".$this->prefix."repository r ON r.rep_id=l.rep_id ";
271
        $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
271
        $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
272
        $query .= "WHERE t.rtype_id='1' AND r.version='".$this->secure->checkInt($version)."'";
272
        $query .= "WHERE t.rtype_id='1' AND r.version='".$this->secure->checkInt($version)."'";
273
        $rq =& $this->db->query($query);
273
        $rq =& $this->db->query($query);
274
        switch ($format) {
274
        switch ($format) {
275
            case 'html':
275
            case 'html':
276
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
276
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
277
                while ($rq->fetchInto($element)) {
277
                while ($rq->fetchInto($element)) {
278
                    $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";
278
                    $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
                }
279
                }
280
                $show .= "</fieldset>\n";
280
                $show .= "</fieldset>\n";
281
                break;
281
                break;
282
            case 'json':
282
            case 'json':
283
                //TODO Доделать JSON-вывод списка секций основного репозитория
283
                //TODO Доделать JSON-вывод списка секций основного репозитория
284
                break;
284
                break;
285
        }
285
        }
286
286
287
        return $show;
287
        return $show;
288
    }
288
    }
289
289
290
    /**
290
    /**
291
     * Получение и отображение списка репозиториев
291
     * Получение и отображение списка репозиториев
292
     *
292
     *
293
     * @author Alexander Wolf
293
     * @author Alexander Wolf
294
     * @category Core
294
     * @category Core
295
     *
295
     *
296
     * @param integer $version
296
     * @param integer $version
297
     * @param integer $reptype
297
     * @param integer $reptype
298
     * @param string $format
298
     * @param string $format
299
     * @return string
299
     * @return string
300
     */
300
     */
301
    public function showRepList($version, $reptype, $format = 'html') {
301
    public function showRepList($version, $reptype, $format = 'html') {
302
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='".$this->secure->checkInt($reptype)."'";
302
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='".$this->secure->checkInt($reptype)."'";
303
        $rq =& $this->db->query($query);
303
        $rq =& $this->db->query($query);
304
        $rq->fetchInto($types);
304
        $rq->fetchInto($types);
305
        $query = "SELECT * FROM ".$this->prefix."repository WHERE version='".$this->secure->checkInt($version)."' AND rtype_id='".$this->secure->checkInt($reptype)."'";
305
        $query = "SELECT * FROM ".$this->prefix."repository WHERE version='".$this->secure->checkInt($version)."' AND rtype_id='".$this->secure->checkInt($reptype)."'";
306
        $rq =& $this->db->query($query);
306
        $rq =& $this->db->query($query);
307
        switch ($format) {
307
        switch ($format) {
308
            case 'html':
308
            case 'html':
309
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
309
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
310
                while ($rq->fetchInto($types)) {
310
                while ($rq->fetchInto($types)) {
311
                    $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";
311
                    $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
                }
312
                }
313
                $show .= "</fieldset>\n";
313
                $show .= "</fieldset>\n";
314
                break;
314
                break;
315
            case 'json':
315
            case 'json':
316
                //TODO Доделать JSON-вывод списка репозиториев
316
                //TODO Доделать JSON-вывод списка репозиториев
317
                break;
317
                break;
318
        }
318
        }
319
319
320
        return $show;
320
        return $show;
321
    }
321
    }
322
322
323
    /**
323
    /**
324
     * Добавление поддержки нового apt-дистрибутива
324
     * Добавление поддержки нового apt-дистрибутива
325
     *
325
     *
326
     * @author Alexander Wolf
326
     * @author Alexander Wolf
327
     * @category Core
327
     * @category Core
328
     *
328
     *
329
     * @param string $distname
329
     * @param string $distname
330
     * @param integer $disttype
330
     * @param integer $disttype
331
     * @param string $distua
331
     * @param string $distua
332
     * @param byte $distlogo
332
     * @param byte $distlogo
333
     * @return array
333
     * @return array
334
     */
334
     */
335
    public function addDistribution($distname, $disttype, $distua = '', $distlogo = 0) {
335
    public function addDistribution($distname, $disttype, $distua = '', $distlogo = 0) {
336
        $result = array();
336
        $result = array();
337
        $sDName = $this->secure->checkStr($distname,1);
337
        $sDName = $this->secure->checkStr($distname,1);
338
        $sDType = $this->secure->checkInt($disttype);
338
        $sDType = $this->secure->checkInt($disttype);
339
        $sDUAgt = $this->secure->checkStr($distua,1);
339
        $sDUAgt = $this->secure->checkStr($distua,1);
340
        $sDLogo = $this->secure->checkInt($distlogo);
340
        $sDLogo = $this->secure->checkInt($distlogo);
341
341
342
        $query = "INSERT INTO ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."'";
342
        $query = "INSERT INTO ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."'";
343
        $rq =& $this->db->query($query);
343
        $rq =& $this->db->query($query);
344
        if (PEAR::isError($this->db)) {
344
        if (PEAR::isError($this->db)) {
345
            $result["ERR"] = 1;
345
            $result["ERR"] = 1;
346
            $result["ERRINFO"] = $this->db->getMessage();
346
            $result["ERRINFO"] = $this->db->getMessage();
347
        } else {            
347
        } else {            
348
            $result["ERR"] = 0;
348
            $result["ERR"] = 0;
349
        }
349
        }
350
350
351
        return $result;
351
        return $result;
352
    }
352
    }
353
353
354
    /**
354
    /**
355
     * Обновление информации о дистрибутиве
355
     * Обновление информации о дистрибутиве
356
     *
356
     *
357
     * @author Alexander Wolf
357
     * @author Alexander Wolf
358
     * @category Core
358
     * @category Core
359
     *
359
     *
360
     * @param integer $distID
360
     * @param integer $distID
361
     * @param string $distname
361
     * @param string $distname
362
     * @param integer $disttype
362
     * @param integer $disttype
363
     * @param string $distua
363
     * @param string $distua
364
     * @param integer $distlogo
364
     * @param integer $distlogo
365
     * @return array
365
     * @return array
366
     */
366
     */
367
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo = 0) {
367
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo = 0) {
368
        $result = array();
368
        $result = array();
369
        $sDID   = $this->secure->checkInt($distID);
369
        $sDID   = $this->secure->checkInt($distID);
370
        $sDName = $this->secure->checkStr($distname,1);
370
        $sDName = $this->secure->checkStr($distname,1);
371
        $sDType = $this->secure->checkInt($disttype);
371
        $sDType = $this->secure->checkInt($disttype);
372
        $sDUAgt = $this->secure->checkStr($distua,1);
372
        $sDUAgt = $this->secure->checkStr($distua,1);
373
        $sDLogo = $this->secure->checkInt($distlogo);
373
        $sDLogo = $this->secure->checkInt($distlogo);
374
374
375
        if ($sDLogo!=0) {
375
        if ($sDLogo!=0) {
376
            $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."'";
377
        } else {
377
        } else {
378
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."' WHERE dist_id='".$sDID."'";
378
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."' WHERE dist_id='".$sDID."'";
379
        }
379
        }
380
        $rq =& $this->db->query($query);
380
        $rq =& $this->db->query($query);
381
        if (PEAR::isError($this->db)) {
381
        if (PEAR::isError($this->db)) {
382
            $result["ERR"] = 1;
382
            $result["ERR"] = 1;
383
            $result["ERRINFO"] = $this->db->getMessage();
383
            $result["ERRINFO"] = $this->db->getMessage();
384
        } else {            
384
        } else {            
385
            $result["ERR"] = 0;
385
            $result["ERR"] = 0;
386
        }
386
        }
387
387
388
        return $result;
388
        return $result;
389
    }
389
    }
390
390
391
    /**
391
    /**
392
     * Удаление информации о дистрибутиве
392
     * Удаление информации о дистрибутиве
393
     *
393
     *
394
     * @author Alexander Wolf
394
     * @author Alexander Wolf
395
     * @category Core
395
     * @category Core
396
     *
396
     *
397
     * @param integer $distID
397
     * @param integer $distID
398
     * @return array
398
     * @return array
399
     */
399
     */
400
    public function dropDistribution($distID) {
400
    public function dropDistribution($distID) {
401
        $result = array();
401
        $result = array();
402
        $sDID   = $this->secure->checkInt($distID);
402
        $sDID   = $this->secure->checkInt($distID);
403
403
404
        // Удаление дистрибутива
404
        // Удаление дистрибутива
405
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
405
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
406
        $rq =& $this->db->query($query);
406
        $rq =& $this->db->query($query);
407
        if (PEAR::isError($this->db)) {
407
        if (PEAR::isError($this->db)) {
408
            $result["ERR"] = 1;
408
            $result["ERR"] = 1;
409
            $result["ERRINFO"] = $this->db->getMessage();
409
            $result["ERRINFO"] = $this->db->getMessage();
410
        } else {            
410
        } else {            
411
            $result["ERR"] = 0;
411
            $result["ERR"] = 0;
412
        }
412
        }
413
413
414
        // Удаление версий дистрибутива
414
        // Удаление версий дистрибутива
415
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
415
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
416
        $rq =& $this->db->query($query);
416
        $rq =& $this->db->query($query);
417
        if (PEAR::isError($this->db)) {
417
        if (PEAR::isError($this->db)) {
418
            $result["ERR"] = 1;
418
            $result["ERR"] = 1;
419
            $result["ERRINFO"] = $this->db->getMessage();
419
            $result["ERRINFO"] = $this->db->getMessage();
420
        } else {            
420
        } else {            
421
            $result["ERR"] = 0;
421
            $result["ERR"] = 0;
422
        }
422
        }
423
423
424
        return $result;
424
        return $result;
425
    }
425
    }
426
426
427
    /**
427
    /**
428
     * Добавление поддержки новой версии apt-дистрибутива
428
     * Добавление поддержки новой версии apt-дистрибутива
429
     *
429
     *
430
     * @author Alexander Wolf
430
     * @author Alexander Wolf
431
     * @category Core
431
     * @category Core
432
     *
432
     *
433
     * @param integer $distID
433
     * @param integer $distID
434
     * @param integer $version
434
     * @param integer $version
435
     * @param string $vname
435
     * @param string $vname
436
     * @param integer $vcodename
436
     * @param integer $vcodename
437
     * @return array
437
     * @return array
438
     */
438
     */
439
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
439
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
440
        $result = array();
440
        $result = array();
441
        $sDistID    = $this->secure->checkInt($distID);
441
        $sDistID    = $this->secure->checkInt($distID);
442
        $sDVersion  = $this->secure->checkStr($version,1);
442
        $sDVersion  = $this->secure->checkStr($version,1);
443
        $sDVName    = $this->secure->checkStr($vname,1);
443
        $sDVName    = $this->secure->checkStr($vname,1);
444
        $sDVCName   = $this->secure->checkStr($vcodename,1);
444
        $sDVCName   = $this->secure->checkStr($vcodename,1);
445
445
446
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
446
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
447
        $rq =& $this->db->query($query);
447
        $rq =& $this->db->query($query);
448
        if (PEAR::isError($this->db)) {
448
        if (PEAR::isError($this->db)) {
449
            $result["ERR"] = 1;
449
            $result["ERR"] = 1;
450
            $result["ERRINFO"] = $this->db->getMessage();
450
            $result["ERRINFO"] = $this->db->getMessage();
451
        } else {            
451
        } else {            
452
            $result["ERR"] = 0;
452
            $result["ERR"] = 0;
453
        }
453
        }
454
454
455
        return $result;
455
        return $result;
456
    }
456
    }
457
457
458
    /**
458
    /**
459
     * Редактирование информации о версии дистрибутива
459
     * Редактирование информации о версии дистрибутива
460
     *
460
     *
461
     * @author Alexander Wolf
461
     * @author Alexander Wolf
462
     * @category Core
462
     * @category Core
463
     *
463
     *
464
     * @param integer $versionID
464
     * @param integer $versionID
465
     * @param string $version
465
     * @param string $version
466
     * @param string $vname
466
     * @param string $vname
467
     * @param string $vcodename
467
     * @param string $vcodename
468
     * @return array
468
     * @return array
469
     */
469
     */
470
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
470
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
471
        $result = array();
471
        $result = array();
472
        $sVersID    = $this->secure->checkInt($versionID);
472
        $sVersID    = $this->secure->checkInt($versionID);
473
        $sDVersion  = $this->secure->checkStr($version,1);
473
        $sDVersion  = $this->secure->checkStr($version,1);
474
        $sDVName    = $this->secure->checkStr($vname,1);
474
        $sDVName    = $this->secure->checkStr($vname,1);
475
        $sDVCName   = $this->secure->checkStr($vcodename,1);
475
        $sDVCName   = $this->secure->checkStr($vcodename,1);
476
476
477
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
477
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
478
        $rq =& $this->db->query($query);
478
        $rq =& $this->db->query($query);
479
        if (PEAR::isError($this->db)) {
479
        if (PEAR::isError($this->db)) {
480
            $result["ERR"] = 1;
480
            $result["ERR"] = 1;
481
            $result["ERRINFO"] = $this->db->getMessage();
481
            $result["ERRINFO"] = $this->db->getMessage();
482
        } else {            
482
        } else {            
483
            $result["ERR"] = 0;
483
            $result["ERR"] = 0;
484
        }
484
        }
485
485
486
        return $result;
486
        return $result;
487
    }
487
    }
488
488
489
    /**
489
    /**
490
     * Удаление информации о версии дистрибутива
490
     * Удаление информации о версии дистрибутива
491
     *
491
     *
492
     * @author Alexander Wolf
492
     * @author Alexander Wolf
493
     * @category Core
493
     * @category Core
494
     *
494
     *
495
     * @param integer $versionID
495
     * @param integer $versionID
496
     * @return array
496
     * @return array
497
     */
497
     */
498
    public function dropDistVersion($versionID) {
498
    public function dropDistVersion($versionID) {
499
        $result = array();
499
        $result = array();
500
        $sVersID    = $this->secure->checkInt($versionID);
500
        $sVersID    = $this->secure->checkInt($versionID);
501
501
502
        // Удаление версии дистрибутива
502
        // Удаление версии дистрибутива
503
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
503
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
504
        $rq =& $this->db->query($query);
504
        $rq =& $this->db->query($query);
505
        if (PEAR::isError($this->db)) {
505
        if (PEAR::isError($this->db)) {
506
            $result["ERR"] = 1;
506
            $result["ERR"] = 1;
507
            $result["ERRINFO"] = $this->db->getMessage();
507
            $result["ERRINFO"] = $this->db->getMessage();
508
        } else {            
508
        } else {            
509
            $result["ERR"] = 0;
509
            $result["ERR"] = 0;
510
        }
510
        }
511
511
512
        // Удаление репозиториев этой версии дистрибутива
512
        // Удаление репозиториев этой версии дистрибутива
513
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
513
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
514
        $rq =& $this->db->query($query);
514
        $rq =& $this->db->query($query);
515
        if (PEAR::isError($this->db)) {
515
        if (PEAR::isError($this->db)) {
516
            $result["ERR"] = 1;
516
            $result["ERR"] = 1;
517
            $result["ERRINFO"] = $this->db->getMessage();
517
            $result["ERRINFO"] = $this->db->getMessage();
518
        } else {            
518
        } else {            
519
            $result["ERR"] = 0;
519
            $result["ERR"] = 0;
520
        }
520
        }
521
521
522
        return $result;
522
        return $result;
523
    }
523
    }
524
524
525
    /**
525
    /**
526
     * Отображение типа дистрибутива
526
     * Отображение типа дистрибутива
527
     *
527
     *
528
     * @author Alexander Wolf
528
     * @author Alexander Wolf
529
     * @category Core
529
     * @category Core
530
     *
530
     *
531
     * @param string $name
531
     * @param string $name
532
     * @param byte $type
532
     * @param byte $type
533
     * @return string
533
     * @return string
534
     */
534
     */
535
    public function showDistTypeForm($name = "dtype",$type = 0) {
535
    public function showDistTypeForm($name = "dtype",$type = 0) {
536
        $query = "SELECT * FROM ".$this->prefix."dtype";
536
        $query = "SELECT * FROM ".$this->prefix."dtype";
537
        $rq =& $this->db->query($query);
537
        $rq =& $this->db->query($query);
538
        $show = "<select name='".$name."' id='".$name."'>\n";
538
        $show = "<select name='".$name."' id='".$name."'>\n";
539
        while ($rq->fetchInto($element)) {
539
        while ($rq->fetchInto($element)) {
540
            if ($element["type_id"] == $type) {
540
            if ($element["type_id"] == $type) {
541
                $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";
542
            } else {
542
            } else {
543
                $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";
544
            }
544
            }
545
        }
545
        }
546
        $show .= "</select>";
546
        $show .= "</select>";
547
547
548
        return $show;
548
        return $show;
549
    }
549
    }
550
550
551
    /**
551
    /**
552
     * Отображение формы создания и редактирования apt-дистрибутива
552
     * Отображение формы создания и редактирования apt-дистрибутива
553
     *
553
     *
554
     * @author Alexander Wolf
554
     * @author Alexander Wolf
555
     * @category Core
555
     * @category Core
556
     *
556
     *
557
     * @param integer $distID
557
     * @param integer $distID
558
     * @return string
558
     * @return string
559
     */
559
     */
560
    public function showDistributionForm($distID = 0, $info = '') {
560
    public function showDistributionForm($distID = 0, $info = '') {
561
        $sDistID = $this->secure->checkInt($distID);
561
        $sDistID = $this->secure->checkInt($distID);
562
        $sInfo = $this->secure->checkStr($info, 1);
562
        $sInfo = $this->secure->checkStr($info, 1);
563
        if ($sInfo == "") {
563
        if ($sInfo == "") {
564
            $sInfo = "Дистрибутив";
564
            $sInfo = "Дистрибутив";
565
        }
565
        }
566
        if ($sDistID != 0) {
566
        if ($sDistID != 0) {
567
            // Режим редактирования
567
            // Режим редактирования
568
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
568
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
569
            $rq =& $this->db->query($query);
569
            $rq =& $this->db->query($query);
570
            $rq->fetchInto($element);
570
            $rq->fetchInto($element);
571
        }
571
        }
572
572
573
        if ($element["distlogo"] == 1) {
573
        if ($element["distlogo"] == 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)."'>";
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)."'>";
575
        } else {
575
        } else {
576
            $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='Логотип дистрибутива не загружен'>";
577
        }
577
        }
578
578
579
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
579
        $show  = "<fieldset><legend>".$sInfo."</legend>\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";
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";
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";
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";
582
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["disttype"])."</div>\n";
582
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["disttype"])."</div>\n";
583
        $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";
584
        $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";
585
        $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";
586
586
587
        return $show;
587
        return $show;
588
    }
588
    }
589
589
590
    // sourses.list
590
    // sourses.list
591
    public function showSourcesList($distID,$versID,$sectIDs,$repIDs) {
591
    public function showSourcesList($distID,$versID,$sectIDs,$repIDs) {
592
       //TODO Написать генератор sources.list       
592
       //TODO Написать генератор sources.list       
593
    }
593
    }
594
594
595
    /**
595
    /**
596
     * Показывает список секций
596
     * Показывает список секций
597
     *
597
     *
598
     * @author Alexander Wolf
598
     * @author Alexander Wolf
599
     * @category Core
599
     * @category Core
600
     *
600
     *
601
     * @param string $name
601
     * @param string $name
602
     * @param string $actor
602
     * @param string $actor
603
     * @return string
603
     * @return string
604
     */
604
     */
605
    public function showSectionsList($name, $actor) {
605
    public function showSectionsList($name, $actor) {
606
        $query = "SELECT * FROM ".$this->prefix."section";
606
        $query = "SELECT * FROM ".$this->prefix."section";
607
        $rq =& $this->db->query($query);
607
        $rq =& $this->db->query($query);
608
        $show = "<ul>\n";
608
        $show = "<ul>\n";
609
        while ($rq->fetchInto($element)) {
609
        while ($rq->fetchInto($element)) {
610
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["sect_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["sect_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["secname"],1)."</li>\n";
610
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["sect_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["sect_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["secname"],1)."</li>\n";
611
        }
611
        }
612
        $show .= "</ul>";
612
        $show .= "</ul>";
613
613
614
        return $show;
614
        return $show;
615
    }
615
    }
616
616
617
    /**
617
    /**
618
     * Вывод формы редактирования/добавления секций
618
     * Вывод формы редактирования/добавления секций
619
     *
619
     *
620
     * @author Alexander Wolf
620
     * @author Alexander Wolf
621
     * @category Core
621
     * @category Core
622
     *
622
     *
623
     * @param integer $sectionID
623
     * @param integer $sectionID
624
     * @param string $info
624
     * @param string $info
625
     * @return string
625
     * @return string
626
     */
626
     */
627
    public function showSectionsForm($sectionID = 0, $info = "") {
627
    public function showSectionsForm($sectionID = 0, $info = "") {
628
        $sSectID = $this->secure->checkInt($sectionID);
628
        $sSectID = $this->secure->checkInt($sectionID);
629
        $sInfo = $this->secure->checkStr($info, 1);
629
        $sInfo = $this->secure->checkStr($info, 1);
630
        if ($sInfo == "") {
630
        if ($sInfo == "") {
631
            $sInfo = "Секция";
631
            $sInfo = "Секция";
632
        }
632
        }
633
        if ($sSectID != 0) {
633
        if ($sSectID != 0) {
634
            // Режим редактирования
634
            // Режим редактирования
635
            $query = "SELECT * FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
635
            $query = "SELECT * FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
636
            $rq =& $this->db->query($query);
636
            $rq =& $this->db->query($query);
637
            $rq->fetchInto($element);
637
            $rq->fetchInto($element);
638
        }
638
        }
639
639
640
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
640
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
641
        $show .= "<div class='inputbox'><label for='sname'>Название секции:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["secname"],1)."'></div>\n";
641
        $show .= "<div class='inputbox'><label for='sname'>Название секции:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["secname"],1)."'></div>\n";
642
        $show .= "<div class='inputbox'><label for='sinfo'>Описание секции:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sectinfo"],1)."'></div>\n";
642
        $show .= "<div class='inputbox'><label for='sinfo'>Описание секции:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sectinfo"],1)."'></div>\n";
643
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
643
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
644
644
645
        return $show;
645
        return $show;
646
    }
646
    }
647
647
648
    /**
648
    /**
649
     * Обновление информации о секции
649
     * Обновление информации о секции
650
     *
650
     *
651
     * @author Alexander Wolf
651
     * @author Alexander Wolf
652
     * @category Core
652
     * @category Core
653
     *
653
     *
654
     * @param integer $sectionID
654
     * @param integer $sectionID
655
     * @param string $sname
655
     * @param string $sname
656
     * @param string $sinfo
656
     * @param string $sinfo
657
     * @return array
657
     * @return array
658
     */
658
     */
659
    public function updateSection($sectionID, $sname, $sinfo = "") {
659
    public function updateSection($sectionID, $sname, $sinfo = "") {
660
        $result = array();
660
        $result = array();
661
        $sSectID    = $this->secure->checkInt($sectionID);
661
        $sSectID    = $this->secure->checkInt($sectionID);
662
        $sSName     = $this->secure->checkStr($sname,1);
662
        $sSName     = $this->secure->checkStr($sname,1);
663
        $sSInfo     = $this->secure->checkStr($sinfo,1);
663
        $sSInfo     = $this->secure->checkStr($sinfo,1);
664
664
665
        $query = "UPDATE ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."' WHERE sect_id='".$sSectID."'";
665
        $query = "UPDATE ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."' WHERE sect_id='".$sSectID."'";
666
        $rq =& $this->db->query($query);
666
        $rq =& $this->db->query($query);
667
        if (PEAR::isError($this->db)) {
667
        if (PEAR::isError($this->db)) {
668
            $result["ERR"] = 1;
668
            $result["ERR"] = 1;
669
            $result["ERRINFO"] = $this->db->getMessage();
669
            $result["ERRINFO"] = $this->db->getMessage();
670
        } else {
670
        } else {
671
            $result["ERR"] = 0;
671
            $result["ERR"] = 0;
672
        }
672
        }
673
673
674
        return $result;
674
        return $result;
675
    }
675
    }
676
676
677
    /**
677
    /**
678
     * Удаление информации о секции
678
     * Удаление информации о секции
679
     *
679
     *
680
     * @author Alexander Wolf
680
     * @author Alexander Wolf
681
     * @category Core
681
     * @category Core
682
     *
682
     *
683
     * @param integer $sectionID
683
     * @param integer $sectionID
684
     * @return array
684
     * @return array
685
     */
685
     */
686
    public function dropSection($sectionID) {
686
    public function dropSection($sectionID) {
687
        $result = array();
687
        $result = array();
688
        $sSectID    = $this->secure->checkInt($sectionID);
688
        $sSectID    = $this->secure->checkInt($sectionID);
689
689
690
        // Удаление секции
690
        // Удаление секции
691
        $query = "DELETE FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
691
        $query = "DELETE FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
692
        $rq =& $this->db->query($query);
692
        $rq =& $this->db->query($query);
693
        if (PEAR::isError($this->db)) {
693
        if (PEAR::isError($this->db)) {
694
            $result["ERR"] = 1;
694
            $result["ERR"] = 1;
695
            $result["ERRINFO"] = $this->db->getMessage();
695
            $result["ERRINFO"] = $this->db->getMessage();
696
        } else {
696
        } else {
697
            $result["ERR"] = 0;
697
            $result["ERR"] = 0;
698
        }
698
        }
699
699
700
        return $result;
700
        return $result;
701
    }
701
    }
702
702
703
    /**
703
    /**
704
     * Добавление новой секции
704
     * Добавление новой секции
705
     *
705
     *
706
     * @author Alexander Wolf
706
     * @author Alexander Wolf
707
     * @category Core
707
     * @category Core
708
     *
708
     *
709
     * @param string $sname
709
     * @param string $sname
710
     * @param string $sinfo
710
     * @param string $sinfo
711
     * @return array
711
     * @return array
712
     */
712
     */
713
    public function addSection($sname, $sinfo = "") {
713
    public function addSection($sname, $sinfo = "") {
714
        $result = array();
714
        $result = array();
715
        $sSName = $this->secure->checkStr($sname,1);
715
        $sSName = $this->secure->checkStr($sname,1);
716
        $sSInfo = $this->secure->checkStr($sinfo,1);
716
        $sSInfo = $this->secure->checkStr($sinfo,1);
717
717
718
        $query = "INSERT INTO ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."'";
718
        $query = "INSERT INTO ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."'";
719
        $rq =& $this->db->query($query);
719
        $rq =& $this->db->query($query);
720
        if (PEAR::isError($this->db)) {
720
        if (PEAR::isError($this->db)) {
721
            $result["ERR"] = 1;
721
            $result["ERR"] = 1;
722
            $result["ERRINFO"] = $this->db->getMessage();
722
            $result["ERRINFO"] = $this->db->getMessage();
723
        } else {
723
        } else {
724
            $result["ERR"] = 0;
724
            $result["ERR"] = 0;
725
        }
725
        }
726
726
727
        return $result;
727
        return $result;
728
    }
728
    }
729
729
730
    /**
730
    /**
731
     * Показывает список подписей
731
     * Показывает список подписей
732
     *
732
     *
733
     * @author Alexander Wolf
733
     * @author Alexander Wolf
734
     * @category Core
734
     * @category Core
735
     *
735
     *
736
     * @param string $name
736
     * @param string $name
737
     * @param string $actor
737
     * @param string $actor
738
     * @return string
738
     * @return string
739
     */
739
     */
740
    public function showSignsList($name, $actor) {
740
    public function showSignsList($name, $actor) {
741
        $query = "SELECT * FROM ".$this->prefix."signs";
741
        $query = "SELECT * FROM ".$this->prefix."signs";
742
        $rq =& $this->db->query($query);
742
        $rq =& $this->db->query($query);
743
        $show = "<ul>\n";
743
        $show = "<ul>\n";
744
        while ($rq->fetchInto($element)) {
744
        while ($rq->fetchInto($element)) {
745
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["sign_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["sign_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["sname"],1)."</li>\n";
745
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["sign_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["sign_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["sname"],1)."</li>\n";
746
        }
746
        }
747
        $show .= "</ul>";
747
        $show .= "</ul>";
748
748
749
        return $show;
749
        return $show;
750
    }
750
    }
751
751
752
    /**
752
    /**
753
     * Вывод формы редактирования/добавления подписей
753
     * Вывод формы редактирования/добавления подписей
754
     *
754
     *
755
     * @author Alexander Wolf
755
     * @author Alexander Wolf
756
     * @category Core
756
     * @category Core
757
     *
757
     *
758
     * @param integer $sectionID
758
     * @param integer $sectionID
759
     * @param string $info
759
     * @param string $info
760
     * @return string
760
     * @return string
761
     */
761
     */
762
    public function showSignsForm($signID = 0, $info = "") {
762
    public function showSignsForm($signID = 0, $info = "") {
763
        $sSignID = $this->secure->checkInt($signID);
763
        $sSignID = $this->secure->checkInt($signID);
764
        $sInfo = $this->secure->checkStr($info, 1);
764
        $sInfo = $this->secure->checkStr($info, 1);
765
        if ($sInfo == "") {
765
        if ($sInfo == "") {
766
            $sInfo = "Подписи";
766
            $sInfo = "Подписи";
767
        }
767
        }
768
        if ($sSignID != 0) {
768
        if ($sSignID != 0) {
769
            // Режим редактирования
769
            // Режим редактирования
770
            $query = "SELECT * FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
770
            $query = "SELECT * FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
771
            $rq =& $this->db->query($query);
771
            $rq =& $this->db->query($query);
772
            $rq->fetchInto($element);
772
            $rq->fetchInto($element);
773
        }
773
        }
774
774
775
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
775
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
776
        $show .= "<div class='inputbox'><label for='sname'>Название подписи:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["sname"],1)."'></div>\n";
776
        $show .= "<div class='inputbox'><label for='sname'>Название подписи:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["sname"],1)."'></div>\n";
777
        $show .= "<div class='inputbox'><label for='sinfo'>Описание подписи:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sinfo"],1)."'></div>\n";
777
        $show .= "<div class='inputbox'><label for='sinfo'>Описание подписи:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sinfo"],1)."'></div>\n";
778
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
778
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
779
779
780
        return $show;
780
        return $show;
781
    }
781
    }
782
782
783
    /**
783
    /**
784
     * Обновление информации о секции
784
     * Обновление информации о секции
785
     *
785
     *
786
     * @author Alexander Wolf
786
     * @author Alexander Wolf
787
     * @category Core
787
     * @category Core
788
     *
788
     *
789
     * @param integer $sectionID
789
     * @param integer $sectionID
790
     * @param string $sname
790
     * @param string $sname
791
     * @param string $sinfo
791
     * @param string $sinfo
792
     * @return array
792
     * @return array
793
     */
793
     */
794
    public function updateSign($signID, $sname, $sinfo = "") {
794
    public function updateSign($signID, $sname, $sinfo = "") {
795
        $result = array();
795
        $result = array();
796
        $sSignID    = $this->secure->checkInt($signID);
796
        $sSignID    = $this->secure->checkInt($signID);
797
        $sSName     = $this->secure->checkStr($sname,1);
797
        $sSName     = $this->secure->checkStr($sname,1);
798
        $sSInfo     = $this->secure->checkStr($sinfo,1);
798
        $sSInfo     = $this->secure->checkStr($sinfo,1);
799
799
800
        $query = "UPDATE ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."' WHERE sign_id='".$sSignID."'";
800
        $query = "UPDATE ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."' WHERE sign_id='".$sSignID."'";
801
        $rq =& $this->db->query($query);
801
        $rq =& $this->db->query($query);
802
        if (PEAR::isError($this->db)) {
802
        if (PEAR::isError($this->db)) {
803
            $result["ERR"] = 1;
803
            $result["ERR"] = 1;
804
            $result["ERRINFO"] = $this->db->getMessage();
804
            $result["ERRINFO"] = $this->db->getMessage();
805
        } else {
805
        } else {
806
            $result["ERR"] = 0;
806
            $result["ERR"] = 0;
807
        }
807
        }
808
808
809
        return $result;
809
        return $result;
810
    }
810
    }
811
811
812
    /**
812
    /**
813
     * Удаление информации о подписи
813
     * Удаление информации о подписи
814
     *
814
     *
815
     * @author Alexander Wolf
815
     * @author Alexander Wolf
816
     * @category Core
816
     * @category Core
817
     *
817
     *
818
     * @param integer $sectionID
818
     * @param integer $sectionID
819
     * @return array
819
     * @return array
820
     */
820
     */
821
    public function dropSign($signID) {
821
    public function dropSign($signID) {
822
        $result = array();
822
        $result = array();
823
        $sSignID    = $this->secure->checkInt($signID);
823
        $sSignID    = $this->secure->checkInt($signID);
824
824
825
        // Удаление подписи
825
        // Удаление подписи
826
        $query = "DELETE FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
826
        $query = "DELETE FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
827
        $rq =& $this->db->query($query);
827
        $rq =& $this->db->query($query);
828
        if (PEAR::isError($this->db)) {
828
        if (PEAR::isError($this->db)) {
829
            $result["ERR"] = 1;
829
            $result["ERR"] = 1;
830
            $result["ERRINFO"] = $this->db->getMessage();
830
            $result["ERRINFO"] = $this->db->getMessage();
831
        } else {
831
        } else {
832
            $result["ERR"] = 0;
832
            $result["ERR"] = 0;
833
        }
833
        }
834
834
835
        return $result;
835
        return $result;
836
    }
836
    }
837
837
838
    /**
838
    /**
839
     * Добавление новой подписи
839
     * Добавление новой подписи
840
     *
840
     *
841
     * @author Alexander Wolf
841
     * @author Alexander Wolf
842
     * @category Core
842
     * @category Core
843
     *
843
     *
844
     * @param string $sname
844
     * @param string $sname
845
     * @param string $sinfo
845
     * @param string $sinfo
846
     * @return array
846
     * @return array
847
     */
847
     */
848
    public function addSign($sname, $sinfo = "") {
848
    public function addSign($sname, $sinfo = "") {
849
        $result = array();
849
        $result = array();
850
        $sSName = $this->secure->checkStr($sname,1);
850
        $sSName = $this->secure->checkStr($sname,1);
851
        $sSInfo = $this->secure->checkStr($sinfo,1);
851
        $sSInfo = $this->secure->checkStr($sinfo,1);
852
852
853
        $query = "INSERT INTO ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."'";
853
        $query = "INSERT INTO ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."'";
854
        $rq =& $this->db->query($query);
854
        $rq =& $this->db->query($query);
855
        if (PEAR::isError($this->db)) {
855
        if (PEAR::isError($this->db)) {
856
            $result["ERR"] = 1;
856
            $result["ERR"] = 1;
857
            $result["ERRINFO"] = $this->db->getMessage();
857
            $result["ERRINFO"] = $this->db->getMessage();
858
        } else {
858
        } else {
859
            $result["ERR"] = 0;
859
            $result["ERR"] = 0;
860
        }
860
        }
861
861
862
        return $result;
862
        return $result;
863
    }
863
    }
864
   
864
   
865
    /**
865
    /**
866
     * Проверка пароля (из формы авторизации)
866
     * Проверка пароля (из формы авторизации)
867
     *
867
     *
868
     * @author Alexander Wolf
868
     * @author Alexander Wolf
869
     * @category Core
869
     * @category Core
870
     *
870
     *
871
     * @param string $word
871
     * @param string $word
872
     * @return array
872
     * @return array
873
     */
873
     */
874
    public function checkSign($word) {
874
    public function checkSign($word) {
875
        $result = array();
875
        $result = array();
876
876
877
        $sHash = $this->secure->encryptStr($word);
877
        $sHash = $this->secure->encryptStr($word);
878
        $pwd   = $this->getOption("passwd");
878
        $pwd   = $this->getOption("passwd");
879
        if ($sHash == $pwd["OptValue"]) {
879
        if ($sHash == $pwd["OptValue"]) {
880
            $result["ERR"] = 0;
880
            $result["ERR"] = 0;
881
            $result["Location"] = "manager.php";
881
            $result["Location"] = "manager.php";
882
            setcookie($this->cookie, $sHash);
882
            setcookie($this->cookie, $sHash);
883
        } else {
883
        } else {
884
            $result["ERR"] = 1;
884
            $result["ERR"] = 1;
885
            $result["ERRINFO"] = "Password not valid";
885
            $result["ERRINFO"] = "Password not valid";
886
            $result["Location"] = "manager.php?error=1";
886
            $result["Location"] = "manager.php?error=1";
887
        }
887
        }
888
888
889
        return $result;
889
        return $result;
890
    }
890
    }
891
891
892
    /**
892
    /**
893
     * Проверка пароля (из cookies)
893
     * Проверка пароля (из cookies)
894
     *
894
     *
895
     * @author Alexander Wolf
895
     * @author Alexander Wolf
896
     * @category Core
896
     * @category Core
897
     *
897
     *
898
     * @param string $hash
898
     * @param string $hash
899
     * @return array
899
     * @return array
900
     */
900
     */
901
    public function checkCookieSign($hash) {
901
    public function checkCookieSign($hash) {
902
        $result = array();
902
        $result = array();
903
903
904
        $pwd = $this->getOption("passwd");
904
        $pwd = $this->getOption("passwd");
905
        if ($hash == $pwd["OptValue"]) {
905
        if ($hash == $pwd["OptValue"]) {
906
            $result["ERR"] = 0;
906
            $result["ERR"] = 0;
907
        } else {
907
        } else {
908
            $result["ERR"] = 1;
908
            $result["ERR"] = 1;
909
            $result["ERRINFO"] = "Hash not valid";
909
            $result["ERRINFO"] = "Hash not valid";
910
            $result["Location"] = "manager.php";
910
            $result["Location"] = "manager.php";
911
        }
911
        }
912
912
913
        return $result;
913
        return $result;
914
    }
914
    }
915
915
916
    /**
916
    /**
917
     * Форма ввода пароля
917
     * Форма ввода пароля
918
     *
918
     *
919
     * @author Alexander Wolf
919
     * @author Alexander Wolf
920
     * @category Core
920
     * @category Core
921
     *
921
     *
922
     * @return string
922
     * @return string
923
     */
923
     */
924
    public function showSigninForm() {
924
    public function showSigninForm() {
925
        $show  = "<div id='regform'>";
925
        $show  = "<div id='regform'>";
926
        $show .= "<form action='process.php' method='post'>\n";
926
        $show .= "<form action='process.php' method='post'>\n";
927
        $show .= "<fieldset><legend>Пароль</legend>\n";
927
        $show .= "<fieldset><legend>Пароль</legend>\n";
928
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
928
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
929
        $show .= "<input type='password' name='word' value=''>\n";
929
        $show .= "<input type='password' name='word' value=''>\n";
930
        $show .= "<input type='submit' value=' Войти '>\n";
930
        $show .= "<input type='submit' value=' Войти '>\n";
931
        $show .= "</fieldset>\n</form></div>\n";
931
        $show .= "</fieldset>\n</form></div>\n";
932
932
933
        return $show;
933
        return $show;
934
    }
934
    }
935
935
936
    /**
936
    /**
937
     * Обновление пароля
937
     * Обновление пароля
938
     *
938
     *
939
     * @author Alexander Wolf
939
     * @author Alexander Wolf
940
     * @category Core
940
     * @category Core
941
     *
941
     *
942
     * @param string $word1
942
     * @param string $word1
943
     * @param string $word2
943
     * @param string $word2
944
     * @return array
944
     * @return array
945
     */
945
     */
946
    public function updatePassword($word1, $word2) {
946
    public function updatePassword($word1, $word2) {
947
        $result = array();
947
        $result = array();
948
948
949
        if ($word1 == $word2) {
949
        if ($word1 == $word2) {
950
            $sWord = $this->secure->encryptStr($word1);
950
            $sWord = $this->secure->encryptStr($word1);
951
            $r = $this->setOption("passwd", $sWord);
951
            $r = $this->setOption("passwd", $sWord);
952
            $result = $r;
952
            $result = $r;
953
        } else {
953
        } else {
954
            $result["ERR"] = 1;
954
            $result["ERR"] = 1;
955
            $result["ERRINFO"] = "Passwords is mismatch";
955
            $result["ERRINFO"] = "Passwords is mismatch";
956
        }
956
        }
957
957
958
        return $result;
958
        return $result;
959
    }
959
    }
960
960
961
    /**
961
    /**
962
     * Отображение формы создания и редактирования версии apt-дистрибутива
962
     * Отображение формы создания и редактирования версии apt-дистрибутива
963
     *
963
     *
964
     * @author Alexander Wolf
964
     * @author Alexander Wolf
965
     * @category Core
965
     * @category Core
966
     *
966
     *
967
     * @param string $name
967
     * @param string $name
968
     * @param string $actor
968
     * @param string $actor
969
     * @param integer $versionID
969
     * @param integer $versionID
970
     * @return string
970
     * @return string
971
     */
971
     */
972
    public function showDistVersionsForm($versionID = 0, $info = '') {
972
    public function showDistVersionsForm($versionID = 0, $info = '') {
973
        $sVersionID = $this->secure->checkInt($versionID);
973
        $sVersionID = $this->secure->checkInt($versionID);
974
        $sInfo = $this->secure->checkStr($info, 1);
974
        $sInfo = $this->secure->checkStr($info, 1);
975
        if ($sInfo == "") {
975
        if ($sInfo == "") {
976
            $sInfo = "Версия дистрибутива";
976
            $sInfo = "Версия дистрибутива";
977
        }
977
        }
978
        if ($sVersionID != 0) {
978
        if ($sVersionID != 0) {
979
            // Режим редактирования
979
            // Режим редактирования
980
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$versionID."'";
980
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$sVersionID."'";
981
            $rq =& $this->db->query($query);
981
            $rq =& $this->db->query($query);
982
            $rq->fetchInto($element);
982
            $rq->fetchInto($element);
983
        }
983
        }
984
 
984
 
985
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
985
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
986
        if ($sVersionID != 0) {
986
        if ($sVersionID != 0) {
987
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
987
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
988
        } else {
988
        } else {
989
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
989
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
990
        }
990
        }
991
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
991
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
992
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
992
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
993
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
993
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
994
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
994
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
995
995
996
        return $show;
996
        return $show;
997
    }    
997
    }    
998
998
999
    /**
999
    /**
1000
     * Парсер схемы адреса репозитория
1000
     * Парсер схемы адреса репозитория
1001
     * FIXME Возможно не потребуется
1001
     * FIXME Возможно не потребуется
1002
     *
1002
     *
1003
     * @author Alexander Wolf
1003
     * @author Alexander Wolf
1004
     * @category Core
1004
     * @category Core
1005
     *
1005
     *
1006
     * @param string $repstring
1006
     * @param string $repstring
1007
     * @return integer
1007
     * @return integer
1008
     */
1008
     */
1009
    public function repositoryParser($repstring) {
1009
    public function repositoryParser($repstring) {
1010
        $tokens = array();
1010
        $tokens = array();
1011
        $sections = array();
1011
        $sections = array();
1012
        $tokens = split(" ",$repstring);
1012
        $tokens = split(" ",$repstring);
1013
1013
1014
        if ($tokens[0] == "deb") {
1014
        if ($tokens[0] == "deb") {
1015
            // debian/ubuntu репозиторий "type proto://host/folder distr sections"
1015
            // debian/ubuntu репозиторий "type proto://host/folder distr sections"
1016
            $url = parse_url($tokens[1]);
1016
            $url = parse_url($tokens[1]);
1017
            $distr  = $tokens[2];
1017
            $distr  = $tokens[2];
1018
1018
1019
            for($i=3;$i<count($tokens);$i++) {
1019
            for($i=3;$i<count($tokens);$i++) {
1020
                $sections[] = $tokens[$i];
1020
                $sections[] = $tokens[$i];
1021
            }
1021
            }
1022
        } else {
1022
        } else {
1023
            // altlinux репозиторий "type [sign] proto://host/folder base repname"
1023
            // altlinux репозиторий "type [sign] proto://host/folder base repname"
1024
            if (stripos($tokens[1],"]")!=0) {
1024
            if (stripos($tokens[1],"]")!=0) {
1025
                $sign = $tokens[1];
1025
                $sign = $tokens[1];
1026
                $url = parse_url($tokens[2]);
1026
                $url = parse_url($tokens[2]);
1027
                $base = $tokens[3];
1027
                $base = $tokens[3];
1028
                $repname = $tokens[4];
1028
                $repname = $tokens[4];
1029
            } else {
1029
            } else {
1030
                $url = parse_url($tokens[1]);
1030
                $url = parse_url($tokens[1]);
1031
                $base = $tokens[2];
1031
                $base = $tokens[2];
1032
                $repname = $tokens[3];
1032
                $repname = $tokens[3];
1033
            }
1033
            }
1034
        }
1034
        }
1035
1035
1036
        $proto      = $url["scheme"]."://";
1036
        $proto      = $url["scheme"]."://";
1037
        $addr       = $url["host"];
1037
        $addr       = $url["host"];
1038
        if ($url["port"]!="") {
1038
        if ($url["port"]!="") {
1039
            $addr .= ":".$url["port"];
1039
            $addr .= ":".$url["port"];
1040
        }
1040
        }
1041
        $path       = $url["path"];
1041
        $path       = $url["path"];
1042
1042
1043
        return 0;
1043
        return 0;
1044
    }
1044
    }
1045
1045
1046
    /**
1046
    /**
1047
     * Выгрузка картинок логотипов дистрибутивов
1047
     * Выгрузка картинок логотипов дистрибутивов
1048
     *
1048
     *
1049
     * @author Alexander Wolf
1049
     * @author Alexander Wolf
1050
     * @category Core
1050
     * @category Core
1051
     *
1051
     *
1052
     * @param string $path
1052
     * @param string $path
1053
     * @param string $dist
1053
     * @param string $dist
1054
     * @param array $datafile
1054
     * @param array $datafile
1055
     * @return integer
1055
     * @return integer
1056
     */
1056
     */
1057
    public function uploadPicture($path, $dist, $datafile) {
1057
    public function uploadPicture($path, $dist, $datafile) {
1058
        $folder   = $path.$dist."-orig.png";
1058
        $folder   = $path.$dist."-orig.png";
1059
        $folderN  = $path.$dist.".png";
1059
        $folderN  = $path.$dist.".png";
1060
        $folderEM = $path.$dist."-em.png";
1060
        $folderEM = $path.$dist."-em.png";
1061
1061
1062
        $distlogo = 0;
1062
        $distlogo = 0;
1063
        if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
1063
        if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
1064
            chmod($folder, 0644);
1064
            chmod($folder, 0644);
1065
            list($width, $height) = GetImageSize($folder);
1065
            list($width, $height) = GetImageSize($folder);
1066
            $percent = 32/$height;
1066
            $percent = 32/$height;
1067
            $newwidth = $width * $percent;
1067
            $newwidth = $width * $percent;
1068
            $newheight = $height * $percent;
1068
            $newheight = $height * $percent;
1069
1069
1070
            $output = ImageCreateTrueColor($newwidth, $newheight);
1070
            $output = ImageCreateTrueColor($newwidth, $newheight);
1071
            $source = ImageCreateFromPNG($folder);
1071
            $source = ImageCreateFromPNG($folder);
1072
1072
1073
            ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1073
            ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1074
            ImagePNG($output, $folderEM);
1074
            ImagePNG($output, $folderEM);
1075
1075
1076
            $percent = 15/$height;
1076
            $percent = 15/$height;
1077
            $newwidth = $width * $percent;
1077
            $newwidth = $width * $percent;
1078
            $newheight = $height * $percent;
1078
            $newheight = $height * $percent;
1079
1079
1080
            $output = ImageCreateTrueColor($newwidth, $newheight);
1080
            $output = ImageCreateTrueColor($newwidth, $newheight);
1081
1081
1082
            ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1082
            ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1083
            ImagePNG($output, $folderN);
1083
            ImagePNG($output, $folderN);
1084
1084
1085
            unlink($folder);
1085
            unlink($folder);
1086
            $distlogo = 1;
1086
            $distlogo = 1;
1087
        }
1087
        }
1088
        return $distlogo;
1088
        return $distlogo;
1089
    }
1089
    }
1090
1090
1091
    /**
1091
    /**
1092
     * Показ списка репозиториев
1092
     * Показ списка репозиториев
1093
     *
1093
     *
1094
     * @author Alexander Wolf
1094
     * @author Alexander Wolf
1095
     * @category Core
1095
     * @category Core
1096
     *
1096
     *
1097
     * @param string $name
1097
     * @param string $name
1098
     * @param string $actor
1098
     * @param string $actor
1099
     * @param string $format
1099
     * @param string $format
1100
     * @return string
1100
     * @return string
1101
     */
1101
     */
1102
    public function showRepositoriesList($name, $actor, $format = 'list') {
1102
    public function showRepositoriesList($name, $actor, $format = 'list') {
1103
        $query  = "SELECT * FROM ".$this->prefix."repository r ";
1103
        $query  = "SELECT * FROM ".$this->prefix."repository r ";
1104
        $query .= "JOIN ".$this->prefix."rtype rt ON rt.rtype_id=r.rtype_id ";
1104
        $query .= "JOIN ".$this->prefix."rtype rt ON rt.rtype_id=r.rtype_id ";
1105
        $rq =& $this->db->query($query);
1105
        $rq =& $this->db->query($query);
1106
        $show = "<ul>";
1106
        $show = "<ul>";
1107
        while ($rq->fetchInto($element)) {
1107
        while ($rq->fetchInto($element)) {
1108
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["rep_id"])."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["rep_id"])."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["repname"],1)." (".$this->secure->checkStr($element["rtype"],1).")</li>\n";
1108
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["rep_id"])."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["rep_id"])."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["repname"],1)." (".$this->secure->checkStr($element["rtype"],1).")</li>\n";
1109
        }
1109
        }
1110
        $show .= "</ul>";
1110
        $show .= "</ul>";
1111
        return $show;
1111
        return $show;
1112
    }
1112
    }
1113
1113
1114
    /**
1114
    /**
1115
     * Форма создания/редактирвоания репозиториев
1115
     * Форма создания/редактирвоания репозиториев
1116
     *
1116
     *
1117
     * @author Alexander Wolf
1117
     * @author Alexander Wolf
1118
     * @category Core
1118
     * @category Core
1119
     *
1119
     *
1120
     * @param integer $repID
1120
     * @param integer $repID
1121
     * @param string $info
1121
     * @param string $info
1122
     * @param string $reptype
1122
     * @param string $reptype
1123
     * @return string
1123
     * @return string
1124
     */
1124
     */
1125
    public function showRepositoriesForm($repID = 0, $info = "", $reptype = "") {
1125
    public function showRepositoriesForm($repID = 0, $info = "", $reptype = "") {
-
 
1126
        $sRepID = $this->secure->checkInt($repID);
-
 
1127
        $sInfo  = $this->secure->checkStr($info, 1);
-
 
1128
        $sRType = $this->secure->checkStr($reptype, 1);
-
 
1129
        if ($sInfo == "") {
-
 
1130
            $sInfo = "Репозиторий";
-
 
1131
        }
-
 
1132
        if ($sRType == "") {
-
 
1133
            $sRType = "deb";
-
 
1134
        }
-
 
1135
        if ($sRepID != 0) {
-
 
1136
            // Режим редактирования
-
 
1137
            $query  = "SELECT * FROM ".$this->prefix."repository r ";
-
 
1138
            $query .= "JOIN ".$this->prefix."rtype rt ON r.rtype_id=rt.rtype_id ";
-
 
1139
            $query .= "JOIN ".$this->prefix."protos p ON r.proto_id=p.proto_id ";
-
 
1140
            $query .= "JOIN ".$this->prefix."rephost h ON r.rhost_id=h.rhost_id ";
-
 
1141
            $query .= "JOIN ".$this->prefix."repfolder f ON r.rfolder_id=f.rfolder_id ";
-
 
1142
            $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
-
 
1143
            $query .= "JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id ";
-
 
1144
            $query .= "JOIN ".$this->prefix."dtype dt ON d.disttype=dt.type_id ";
-
 
1145
            $query .= "WHERE r.rep_id='".$sRepID."'";
-
 
1146
            $rq =& $this->db->query($query);
-
 
1147
            $rq->fetchInto($element);
-
 
1148
            $sRType = $this->secure->checkStr($element["type"],1);
-
 
1149
        }
-
 
1150
-
 
1151
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
-
 
1152
        $show .= "<div class='inputbox'><label for='rname'>Название репозитория:</label> <input type='text' name='rname' value='".$this->secure->checkStr($element["repname"],1)."'></div>\n";
-
 
1153
        $show .= "<div class='inputbox'><label for='rinfo'>Описание репозитория:</label> <input type='text' name='rinfo' value='".$this->secure->checkStr($element["repinfo"],1)."'></div>\n";
-
 
1154
        $show .= "<div class='inputbox'><label for='rkey'>Ключ подписи репозитория:</label> <input type='text' name='rkey' value='".$this->secure->checkStr($element["repkey"],1)."'></div>\n";
-
 
1155
        $show .= "<div class='inputbox'><label for='rproto'>Протокол доступа:</label> <input type='text' name='rproto' value='".$this->secure->checkStr($element["proto"],1)."'></div>\n";
-
 
1156
        $show .= "<div class='inputbox'><label for='rhost'>Хост репозитория:</label> <input type='text' name='rhost' value='".$this->secure->checkStr($element["rhost"],1)."'></div>\n";
-
 
1157
        $show .= "<div class='inputbox'><label for='rfolder'>Корневая папка:</label> <input type='text' name='rfolder' value='".$this->secure->checkStr($element["rfolder"],1)."'></div>\n";
-
 
1158
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
-
 
1159
-
 
1160
        return $show;
1126
        return $show;
1161
        return $show;
1127
    }
1162
    }
1128
}
1163
}
1129
1164
1130
?>
1165
?>