Хранилища Subversion ant

Редакция

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

Редакция 654 Редакция 655
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
        $query .= "ORDER BY s.sect_id ASC";
273
        $query .= "ORDER BY s.sect_id ASC";
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($element)) {
311
                while ($rq->fetchInto($element)) {
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
            $result["ERR"] = 0;
349
            $result["ERR"] = 0;
350
        }
350
        }
351
351
352
        return $result;
352
        return $result;
353
    }
353
    }
354
354
355
    /**
355
    /**
356
     * Обновление информации о дистрибутиве
356
     * Обновление информации о дистрибутиве
357
     *
357
     *
358
     * @author Alexander Wolf
358
     * @author Alexander Wolf
359
     * @category Core
359
     * @category Core
360
     *
360
     *
361
     * @param integer $distID
361
     * @param integer $distID
362
     * @param string $distname
362
     * @param string $distname
363
     * @param integer $disttype
363
     * @param integer $disttype
364
     * @param string $distua
364
     * @param string $distua
365
     * @param integer $distlogo
365
     * @param integer $distlogo
366
     * @return array
366
     * @return array
367
     */
367
     */
368
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo = 0) {
368
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo = 0) {
369
        $result = array();
369
        $result = array();
370
        $sDID   = $this->secure->checkInt($distID);
370
        $sDID   = $this->secure->checkInt($distID);
371
        $sDName = $this->secure->checkStr($distname);
371
        $sDName = $this->secure->checkStr($distname);
372
        $sDType = $this->secure->checkInt($disttype);
372
        $sDType = $this->secure->checkInt($disttype);
373
        $sDUAgt = $this->secure->checkStr($distua);
373
        $sDUAgt = $this->secure->checkStr($distua);
374
        $sDLogo = $this->secure->checkInt($distlogo);
374
        $sDLogo = $this->secure->checkInt($distlogo);
375
375
376
        if ($sDLogo!=0) {
376
        if ($sDLogo!=0) {
377
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."' WHERE dist_id='".$sDID."'";
377
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."' WHERE dist_id='".$sDID."'";
378
        } else {
378
        } else {
379
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."' WHERE dist_id='".$sDID."'";
379
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."' WHERE dist_id='".$sDID."'";
380
        }
380
        }
381
        $rq =& $this->db->query($query);
381
        $rq =& $this->db->query($query);
382
        if (PEAR::isError($this->db)) {
382
        if (PEAR::isError($this->db)) {
383
            $result["ERR"] = 1;
383
            $result["ERR"] = 1;
384
            $result["ERRINFO"] = $this->db->getMessage();
384
            $result["ERRINFO"] = $this->db->getMessage();
385
        } else {            
385
        } else {            
386
            $result["ERR"] = 0;
386
            $result["ERR"] = 0;
387
        }
387
        }
388
388
389
        return $result;
389
        return $result;
390
    }
390
    }
391
391
392
    /**
392
    /**
393
     * Удаление информации о дистрибутиве
393
     * Удаление информации о дистрибутиве
394
     *
394
     *
395
     * @author Alexander Wolf
395
     * @author Alexander Wolf
396
     * @category Core
396
     * @category Core
397
     *
397
     *
398
     * @param integer $distID
398
     * @param integer $distID
399
     * @return array
399
     * @return array
400
     */
400
     */
401
    public function dropDistribution($distID) {
401
    public function dropDistribution($distID) {
402
        $result = array();
402
        $result = array();
403
        $sDID   = $this->secure->checkInt($distID);
403
        $sDID   = $this->secure->checkInt($distID);
404
404
405
        // Удаление дистрибутива
405
        // Удаление дистрибутива
406
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
406
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
407
        $rq =& $this->db->query($query);
407
        $rq =& $this->db->query($query);
408
        if (PEAR::isError($this->db)) {
408
        if (PEAR::isError($this->db)) {
409
            $result["ERR"] = 1;
409
            $result["ERR"] = 1;
410
            $result["ERRINFO"] = $this->db->getMessage();
410
            $result["ERRINFO"] = $this->db->getMessage();
411
        } else {            
411
        } else {            
412
            $result["ERR"] = 0;
412
            $result["ERR"] = 0;
413
        }
413
        }
414
414
415
        // Удаление версий дистрибутива
415
        // Удаление версий дистрибутива
416
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
416
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
417
        $rq =& $this->db->query($query);
417
        $rq =& $this->db->query($query);
418
        if (PEAR::isError($this->db)) {
418
        if (PEAR::isError($this->db)) {
419
            $result["ERR"] = 1;
419
            $result["ERR"] = 1;
420
            $result["ERRINFO"] = $this->db->getMessage();
420
            $result["ERRINFO"] = $this->db->getMessage();
421
        } else {            
421
        } else {            
422
            $result["ERR"] = 0;
422
            $result["ERR"] = 0;
423
        }
423
        }
424
424
425
        return $result;
425
        return $result;
426
    }
426
    }
427
427
428
    /**
428
    /**
429
     * Добавление поддержки новой версии apt-дистрибутива
429
     * Добавление поддержки новой версии apt-дистрибутива
430
     *
430
     *
431
     * @author Alexander Wolf
431
     * @author Alexander Wolf
432
     * @category Core
432
     * @category Core
433
     *
433
     *
434
     * @param integer $distID
434
     * @param integer $distID
435
     * @param integer $version
435
     * @param integer $version
436
     * @param string $vname
436
     * @param string $vname
437
     * @param integer $vcodename
437
     * @param integer $vcodename
438
     * @return array
438
     * @return array
439
     */
439
     */
440
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
440
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
441
        $result = array();
441
        $result = array();
442
        $sDistID    = $this->secure->checkInt($distID);
442
        $sDistID    = $this->secure->checkInt($distID);
443
        $sDVersion  = $this->secure->checkStr($version);
443
        $sDVersion  = $this->secure->checkStr($version);
444
        $sDVName    = $this->secure->checkStr($vname);
444
        $sDVName    = $this->secure->checkStr($vname);
445
        $sDVCName   = $this->secure->checkStr($vcodename);
445
        $sDVCName   = $this->secure->checkStr($vcodename);
446
446
447
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
447
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
448
        $rq =& $this->db->query($query);
448
        $rq =& $this->db->query($query);
449
        if (PEAR::isError($this->db)) {
449
        if (PEAR::isError($this->db)) {
450
            $result["ERR"] = 1;
450
            $result["ERR"] = 1;
451
            $result["ERRINFO"] = $this->db->getMessage();
451
            $result["ERRINFO"] = $this->db->getMessage();
452
        } else {            
452
        } else {            
453
            $result["ERR"] = 0;
453
            $result["ERR"] = 0;
454
        }
454
        }
455
455
456
        return $result;
456
        return $result;
457
    }
457
    }
458
458
459
    /**
459
    /**
460
     * Редактирование информации о версии дистрибутива
460
     * Редактирование информации о версии дистрибутива
461
     *
461
     *
462
     * @author Alexander Wolf
462
     * @author Alexander Wolf
463
     * @category Core
463
     * @category Core
464
     *
464
     *
465
     * @param integer $versionID
465
     * @param integer $versionID
466
     * @param string $version
466
     * @param string $version
467
     * @param string $vname
467
     * @param string $vname
468
     * @param string $vcodename
468
     * @param string $vcodename
469
     * @return array
469
     * @return array
470
     */
470
     */
471
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
471
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
472
        $result = array();
472
        $result = array();
473
        $sVersID    = $this->secure->checkInt($versionID);
473
        $sVersID    = $this->secure->checkInt($versionID);
474
        $sDVersion  = $this->secure->checkStr($version,1);
474
        $sDVersion  = $this->secure->checkStr($version,1);
475
        $sDVName    = $this->secure->checkStr($vname,1);
475
        $sDVName    = $this->secure->checkStr($vname,1);
476
        $sDVCName   = $this->secure->checkStr($vcodename,1);
476
        $sDVCName   = $this->secure->checkStr($vcodename,1);
477
477
478
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
478
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
479
        $rq =& $this->db->query($query);
479
        $rq =& $this->db->query($query);
480
        if (PEAR::isError($this->db)) {
480
        if (PEAR::isError($this->db)) {
481
            $result["ERR"] = 1;
481
            $result["ERR"] = 1;
482
            $result["ERRINFO"] = $this->db->getMessage();
482
            $result["ERRINFO"] = $this->db->getMessage();
483
        } else {            
483
        } else {            
484
            $result["ERR"] = 0;
484
            $result["ERR"] = 0;
485
        }
485
        }
486
486
487
        return $result;
487
        return $result;
488
    }
488
    }
489
489
490
    /**
490
    /**
491
     * Удаление информации о версии дистрибутива
491
     * Удаление информации о версии дистрибутива
492
     *
492
     *
493
     * @author Alexander Wolf
493
     * @author Alexander Wolf
494
     * @category Core
494
     * @category Core
495
     *
495
     *
496
     * @param integer $versionID
496
     * @param integer $versionID
497
     * @return array
497
     * @return array
498
     */
498
     */
499
    public function dropDistVersion($versionID) {
499
    public function dropDistVersion($versionID) {
500
        $result = array();
500
        $result = array();
501
        $sVersID    = $this->secure->checkInt($versionID);
501
        $sVersID    = $this->secure->checkInt($versionID);
502
502
503
        // Удаление версии дистрибутива
503
        // Удаление версии дистрибутива
504
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
504
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
505
        $rq =& $this->db->query($query);
505
        $rq =& $this->db->query($query);
506
        if (PEAR::isError($this->db)) {
506
        if (PEAR::isError($this->db)) {
507
            $result["ERR"] = 1;
507
            $result["ERR"] = 1;
508
            $result["ERRINFO"] = $this->db->getMessage();
508
            $result["ERRINFO"] = $this->db->getMessage();
509
        } else {            
509
        } else {            
510
            $result["ERR"] = 0;
510
            $result["ERR"] = 0;
511
        }
511
        }
512
512
513
        // Удаление репозиториев этой версии дистрибутива
513
        // Удаление репозиториев этой версии дистрибутива
514
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
514
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
515
        $rq =& $this->db->query($query);
515
        $rq =& $this->db->query($query);
516
        if (PEAR::isError($this->db)) {
516
        if (PEAR::isError($this->db)) {
517
            $result["ERR"] = 1;
517
            $result["ERR"] = 1;
518
            $result["ERRINFO"] = $this->db->getMessage();
518
            $result["ERRINFO"] = $this->db->getMessage();
519
        } else {            
519
        } else {            
520
            $result["ERR"] = 0;
520
            $result["ERR"] = 0;
521
        }
521
        }
522
522
523
        return $result;
523
        return $result;
524
    }
524
    }
525
525
526
    /**
526
    /**
527
     * Отображение типа дистрибутива
527
     * Отображение типа дистрибутива
528
     *
528
     *
529
     * @author Alexander Wolf
529
     * @author Alexander Wolf
530
     * @category Core
530
     * @category Core
531
     *
531
     *
532
     * @param string $name
532
     * @param string $name
533
     * @param byte $type
533
     * @param byte $type
534
     * @return string
534
     * @return string
535
     */
535
     */
536
    public function showDistTypeForm($name = "dtype",$type = 0) {
536
    public function showDistTypeForm($name = "dtype",$type = 0) {
537
        $query = "SELECT * FROM ".$this->prefix."dtype";
537
        $query = "SELECT * FROM ".$this->prefix."dtype";
538
        $rq =& $this->db->query($query);
538
        $rq =& $this->db->query($query);
539
        $show = "<select name='".$name."' id='".$name."'>\n";
539
        $show = "<select name='".$name."' id='".$name."'>\n";
540
        while ($rq->fetchInto($element)) {
540
        while ($rq->fetchInto($element)) {
541
            if ($element["type_id"] == $type) {
541
            if ($element["type_id"] == $type) {
542
                $show .= "<option value='".$element["type_id"]."' selected>".$this->secure->checkStr($element["type"],1)."</option>\n";
542
                $show .= "<option value='".$element["type_id"]."' selected>".$this->secure->checkStr($element["type"],1)."</option>\n";
543
            } else {
543
            } else {
544
                $show .= "<option value='".$element["type_id"]."'>".$this->secure->checkStr($element["type"],1)."</option>\n";
544
                $show .= "<option value='".$element["type_id"]."'>".$this->secure->checkStr($element["type"],1)."</option>\n";
545
            }
545
            }
546
        }
546
        }
547
        $show .= "</select>";
547
        $show .= "</select>";
548
548
549
        return $show;
549
        return $show;
550
    }
550
    }
551
551
552
    /**
552
    /**
553
     * Отображение формы создания и редактирования apt-дистрибутива
553
     * Отображение формы создания и редактирования apt-дистрибутива
554
     *
554
     *
555
     * @author Alexander Wolf
555
     * @author Alexander Wolf
556
     * @category Core
556
     * @category Core
557
     *
557
     *
558
     * @param integer $distID
558
     * @param integer $distID
559
     * @return string
559
     * @return string
560
     */
560
     */
561
    public function showDistributionForm($distID = 0, $info = '') {
561
    public function showDistributionForm($distID = 0, $info = '') {
562
        $sDistID = $this->secure->checkInt($distID);
562
        $sDistID = $this->secure->checkInt($distID);
563
        $sInfo = $this->secure->checkStr($info, 1);
563
        $sInfo = $this->secure->checkStr($info, 1);
564
        if ($sInfo == "") {
564
        if ($sInfo == "") {
565
            $sInfo = "Дистрибутив";
565
            $sInfo = "Дистрибутив";
566
        }
566
        }
567
        if ($sDistID != 0) {
567
        if ($sDistID != 0) {
568
            // Режим редактирования
568
            // Режим редактирования
569
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
569
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
570
            $rq =& $this->db->query($query);
570
            $rq =& $this->db->query($query);
571
            $rq->fetchInto($element);
571
            $rq->fetchInto($element);
572
        }
572
        }
573
573
574
        if ($element["distlogo"] == 1) {
574
        if ($element["distlogo"] == 1) {
575
            $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
            $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)."'>";
576
        } else {
576
        } else {
577
            $image = "<img src='./img/d/empty-logo.png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива' title='Логотип дистрибутива не загружен'>";
577
            $image = "<img src='./img/d/empty-logo.png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива' title='Логотип дистрибутива не загружен'>";
578
        }
578
        }
579
579
580
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
580
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
581
        $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='dname'>Название дистрибутива:</label> <input type='text' name='dname' id='dname' value='".$this->secure->checkStr($element["distname"],1)."'></div>\n";
582
        $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='dua'>UA дистрибутива:</label> <input type='text' name='dua' id='dua' value='".$this->secure->checkStr($element["distua"],1)."'></div>\n";
583
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["disttype"])."</div>\n";
583
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["disttype"])."</div>\n";
584
        $show .= "<div class='inputbox'><table><tr><td class='td-name'>Логотип дистрибутива:</td>\n";
584
        $show .= "<div class='inputbox'><table><tr><td class='td-name'>Логотип дистрибутива:</td>\n";
585
        $show .= "<td>".$image."</td>\n<td><input type='file' name='distlogo'></td>\n</tr></table>\n</div>\n";
585
        $show .= "<td>".$image."</td>\n<td><input type='file' name='distlogo'></td>\n</tr></table>\n</div>\n";
586
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
586
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
587
587
588
        return $show;
588
        return $show;
589
    }
589
    }
590
590
591
    /**
591
    /**
592
     * Генератор sources.list
592
     * Генератор sources.list
593
     *
593
     *
594
     * @author Alexander Wolf
594
     * @author Alexander Wolf
595
     * @category Core
595
     * @category Core
596
     * @version 1.0
596
     * @version 1.0
597
     *
597
     *
598
     * @param array $data
598
     * @param array $data
599
     * @return string
599
     * @return string
600
     */
600
     */
601
    public function showSourcesList($data) {
601
    public function showSourcesList($data) {
602
       //TODO Написать генератор sources.list
602
       //TODO Написать генератор sources.list
603
       // Извлекаем информацию о дистрибутиве и его версии
603
       // Извлекаем информацию о дистрибутиве и его версии
604
       $query  = "SELECT * FROM ".$this->prefix."distribution d ";
604
       $query  = "SELECT * FROM ".$this->prefix."distribution d ";
605
       $query .= "JOIN ".$this->prefix."version v ON v.dist_id=d.dist_id ";
605
       $query .= "JOIN ".$this->prefix."version v ON v.dist_id=d.dist_id ";
606
       $query .= "JOIN ".$this->prefix."dtype t ON d.disttype=t.type_id ";
606
       $query .= "JOIN ".$this->prefix."dtype t ON d.disttype=t.type_id ";
607
       $query .= "WHERE d.dist_id='".$data["dist_id"]."' AND v.version_id='".$data["version_id"]."'";
607
       $query .= "WHERE d.dist_id='".$data["dist_id"]."' AND v.version_id='".$data["version_id"]."'";
608
       $rq =& $this->db->query($query);
608
       $rq =& $this->db->query($query);
609
       $rq->fetchInto($dist);
609
       $rq->fetchInto($dist);
610
610
611
       header("content-type: text/plain\n\n");
611
       header("content-type: text/plain\n\n");
612
       $show = "# Список репозиториев для ".$this->secure->checkStr($dist["distname"],1)." ".$this->secure->checkStr($dist["version"],1)." ".$this->secure->checkStr($dist["vname"],1)."\n\n";
612
       $show = "# Список репозиториев для ".$this->secure->checkStr($dist["distname"],1)." ".$this->secure->checkStr($dist["version"],1)." ".$this->secure->checkStr($dist["vname"],1)."\n\n";
613
613
614
       // Извлекаем информацию о репозиториях и строим sources.list
614
       // Извлекаем информацию о репозиториях и строим sources.list
615
       if ($dist["type"]=="deb") {
615
       if ($dist["type"]=="deb") {
616
           // Базовый репозиторий
616
           // Базовый репозиторий
617
           $query  = "SELECT * FROM ".$this->prefix."repository r ";
617
           $query  = "SELECT * FROM ".$this->prefix."repository r ";
618
           $query .= "JOIN ".$this->prefix."protos p ON r.proto_id=p.proto_id ";
618
           $query .= "JOIN ".$this->prefix."protos p ON r.proto_id=p.proto_id ";
619
           $query .= "JOIN ".$this->prefix."rephost h ON r.rhost_id=h.rhost_id ";
619
           $query .= "JOIN ".$this->prefix."rephost h ON r.rhost_id=h.rhost_id ";
620
           $query .= "JOIN ".$this->prefix."repfolder f ON r.rfolder_id=f.rfolder_id ";
620
           $query .= "JOIN ".$this->prefix."repfolder f ON r.rfolder_id=f.rfolder_id ";
621
           $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
621
           $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
622
           $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
622
           $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
623
           $query .= "JOIN ".$this->prefix."repscheme s ON r.scheme_id=s.scheme_id ";
623
           $query .= "JOIN ".$this->prefix."repscheme s ON r.scheme_id=s.scheme_id ";
624
           $query .= "WHERE v.version_id='".$data["version_id"]."' AND r.rtype_id='1'";
624
           $query .= "WHERE v.version_id='".$data["version_id"]."' AND r.rtype_id='1'";
625
           $rq =& $this->db->query($query);
625
           $rq =& $this->db->query($query);
626
           $rq->fetchInto($base);
626
           $rq->fetchInto($base);
627
           // Формируем type proto://host/folder
627
           // Формируем type proto://host/folder
628
           $show .= "# ".$this->secure->checkStr($base["rtype"],1)."\n";
628
           $show .= "# ".$this->secure->checkStr($base["rtype"],1)."\n";
629
           $show .= $this->secure->checkStr($dist["type"],1)." ".$this->secure->checkStr($base["proto"],1).$this->secure->checkStr($base["rhost"],1).$this->secure->checkStr($base["rfolder"],1);
629
           $show .= $this->secure->checkStr($dist["type"],1)." ".$this->secure->checkStr($base["proto"],1).$this->secure->checkStr($base["rhost"],1).$this->secure->checkStr($base["rfolder"],1);
630
           $dvname = str_replace("{DIST}",$this->secure->checkStr($dist["vcodename"],1),$this->secure->checkStr($base["scheme"],1));
630
           $dvname = str_replace("{DIST}",$this->secure->checkStr($dist["vcodename"],1),$this->secure->checkStr($base["scheme"],1));
631
           // Формируем distname
631
           // Формируем distname
632
           $show .= " ".$dvname." ";
632
           $show .= " ".$dvname." ";
633
           // Формируем sections
633
           // Формируем sections
634
           $query  = "SELECT * FROM ".$this->prefix."section s ";
634
           $query  = "SELECT * FROM ".$this->prefix."section s ";
635
           $query .= "JOIN ".$this->prefix."sect2rep r ON s.sect_id=r.sect_id ";
635
           $query .= "JOIN ".$this->prefix."sect2rep r ON s.sect_id=r.sect_id ";
636
           $query .= "WHERE r.rep_id='".$base["rep_id"]."' AND (";
636
           $query .= "WHERE r.rep_id='".$base["rep_id"]."' AND (";
637
           for($i=0;$i<count($data["section"]);$i++) {
637
           for($i=0;$i<count($data["section"]);$i++) {
638
               $query .= "s.sect_id='".$data["section"][$i]."' ";
638
               $query .= "s.sect_id='".$data["section"][$i]."' ";
639
               if ($i<count($data["section"])-1) {
639
               if ($i<count($data["section"])-1) {
640
                   $query .= " OR ";
640
                   $query .= " OR ";
641
               }
641
               }
642
           }
642
           }
643
           $query .= ")";
643
           $query .= ")";
644
           $rq =& $this->db->query($query);
644
           $rq =& $this->db->query($query);
645
           while ($rq->fetchInto($sections)) {
645
           while ($rq->fetchInto($sections)) {
646
               $show .= $sections["secname"]." ";
646
               $show .= $sections["secname"]." ";
647
           }
647
           }
-
 
648
           $show .= "\n\n";
-
 
649
-
 
650
           // Репозитории обновлений
-
 
651
           $query  = "SELECT * FROM ".$this->prefix."repository r ";
-
 
652
           $query .= "JOIN ".$this->prefix."protos p ON r.proto_id=p.proto_id ";
-
 
653
           $query .= "JOIN ".$this->prefix."rephost h ON r.rhost_id=h.rhost_id ";
-
 
654
           $query .= "JOIN ".$this->prefix."repfolder f ON r.rfolder_id=f.rfolder_id ";
-
 
655
           $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
-
 
656
           $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
-
 
657
           $query .= "JOIN ".$this->prefix."repscheme s ON r.scheme_id=s.scheme_id ";
-
 
658
           $query .= "WHERE v.version_id='".$data["version_id"]."' AND r.rtype_id='2'";
-
 
659
           $rq =& $this->db->query($query);
-
 
660
           while ($rq->fetchInto($updates)) {
-
 
661
                // Формируем type proto://host/folder
-
 
662
                $show .= "# ".$this->secure->checkStr($updates["rtype"],1)."\n";
-
 
663
                $show .= $this->secure->checkStr($dist["type"],1)." ".$this->secure->checkStr($updates["proto"],1).$this->secure->checkStr($updates["rhost"],1).$this->secure->checkStr($updates["rfolder"],1);
-
 
664
                $dvname = str_replace("{DIST}",$this->secure->checkStr($dist["vcodename"],1),$this->secure->checkStr($updates["scheme"],1));
-
 
665
                // Формируем distname
-
 
666
                $show .= " ".$dvname." ";
-
 
667
                // Формируем sections
-
 
668
                $query  = "SELECT * FROM ".$this->prefix."section s ";
-
 
669
                $query .= "JOIN ".$this->prefix."sect2rep r ON s.sect_id=r.sect_id ";
-
 
670
                $query .= "WHERE r.rep_id='".$base["rep_id"]."' AND (";
-
 
671
                for($i=0;$i<count($data["section"]);$i++) {
-
 
672
                    $query .= "s.sect_id='".$data["section"][$i]."' ";
-
 
673
                    if ($i<count($data["section"])-1) {
-
 
674
                        $query .= " OR ";
-
 
675
                    }
-
 
676
                }
-
 
677
                $query .= ")";
-
 
678
                $rq =& $this->db->query($query);
-
 
679
                while ($rq->fetchInto($sections)) {
-
 
680
                    $show .= $sections["secname"]." ";
-
 
681
                }
-
 
682
                $show .= "\n";
-
 
683
           }
648
           $show .= "\n";
684
           $show .= "\n";
649
685
650
       }
686
       }
651
687
652
       return $show;
688
       return $show;
653
    }
689
    }
654
690
655
    /**
691
    /**
656
     * Показывает список секций
692
     * Показывает список секций
657
     *
693
     *
658
     * @author Alexander Wolf
694
     * @author Alexander Wolf
659
     * @category Core
695
     * @category Core
660
     *
696
     *
661
     * @param string $name
697
     * @param string $name
662
     * @param string $actor
698
     * @param string $actor
663
     * @param string $format
699
     * @param string $format
664
     * @return string
700
     * @return string
665
     */
701
     */
666
    public function showSectionsList($name, $actor, $format = 'html') {
702
    public function showSectionsList($name, $actor, $format = 'html') {
667
        switch($format) {
703
        switch($format) {
668
            case 'html':
704
            case 'html':
669
                $query = "SELECT * FROM ".$this->prefix."section";
705
                $query = "SELECT * FROM ".$this->prefix."section";
670
                $rq =& $this->db->query($query);
706
                $rq =& $this->db->query($query);
671
                $show = "<ul>\n";
707
                $show = "<ul>\n";
672
                while ($rq->fetchInto($element)) {
708
                while ($rq->fetchInto($element)) {
673
                    $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";
709
                    $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";
674
                }
710
                }
675
                $show .= "</ul>";
711
                $show .= "</ul>";
676
                break;
712
                break;
677
            case 'innerhtml':
713
            case 'innerhtml':
678
                $show = "";
714
                $show = "";
679
                $repID = $this->secure->checkInt($actor);
715
                $repID = $this->secure->checkInt($actor);
680
                if ($repID==0) {
716
                if ($repID==0) {
681
                    $query = "SELECT * FROM ".$this->prefix."section";
717
                    $query = "SELECT * FROM ".$this->prefix."section";
682
                    $rq =& $this->db->query($query);
718
                    $rq =& $this->db->query($query);
683
                    while ($rq->fetchInto($element)) {
719
                    while ($rq->fetchInto($element)) {
684
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."'>&nbsp;".$this->secure->checkStr($element["secname"],1)." ";
720
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."'>&nbsp;".$this->secure->checkStr($element["secname"],1)." ";
685
                    }
721
                    }
686
                } else {
722
                } else {
687
                    $query = "SELECT * FROM ".$this->prefix."section s JOIN ".$this->prefix."sect2rep r ON s.sect_id=r.sect_id WHERE r.rep_id='$repID'";
723
                    $query = "SELECT * FROM ".$this->prefix."section s JOIN ".$this->prefix."sect2rep r ON s.sect_id=r.sect_id WHERE r.rep_id='$repID'";
688
                    $rq =& $this->db->query($query);
724
                    $rq =& $this->db->query($query);
689
                    while ($rq->fetchInto($element)) {
725
                    while ($rq->fetchInto($element)) {
690
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."' checked>&nbsp;".$this->secure->checkStr($element["secname"],1)." ";
726
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."' checked>&nbsp;".$this->secure->checkStr($element["secname"],1)." ";
691
                    }
727
                    }
692
                    $query = "SELECT s.* FROM ".$this->prefix."section s WHERE s.sect_id NOT IN (SELECT sect_id FROM ".$this->prefix."sect2rep WHERE rep_id='$repID')";
728
                    $query = "SELECT s.* FROM ".$this->prefix."section s WHERE s.sect_id NOT IN (SELECT sect_id FROM ".$this->prefix."sect2rep WHERE rep_id='$repID')";
693
                    $rq =& $this->db->query($query);
729
                    $rq =& $this->db->query($query);
694
                    while ($rq->fetchInto($element)) {
730
                    while ($rq->fetchInto($element)) {
695
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."'>&nbsp;".$this->secure->checkStr($element["secname"],1)." ";
731
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."'>&nbsp;".$this->secure->checkStr($element["secname"],1)." ";
696
                    }
732
                    }
697
                }
733
                }
698
734
699
                break;
735
                break;
700
        }
736
        }
701
737
702
        return $show;
738
        return $show;
703
    }
739
    }
704
740
705
    /**
741
    /**
706
     * Вывод формы редактирования/добавления секций
742
     * Вывод формы редактирования/добавления секций
707
     *
743
     *
708
     * @author Alexander Wolf
744
     * @author Alexander Wolf
709
     * @category Core
745
     * @category Core
710
     *
746
     *
711
     * @param integer $sectionID
747
     * @param integer $sectionID
712
     * @param string $info
748
     * @param string $info
713
     * @return string
749
     * @return string
714
     */
750
     */
715
    public function showSectionsForm($sectionID = 0, $info = "") {
751
    public function showSectionsForm($sectionID = 0, $info = "") {
716
        $sSectID = $this->secure->checkInt($sectionID);
752
        $sSectID = $this->secure->checkInt($sectionID);
717
        $sInfo = $this->secure->checkStr($info, 1);
753
        $sInfo = $this->secure->checkStr($info, 1);
718
        if ($sInfo == "") {
754
        if ($sInfo == "") {
719
            $sInfo = "Секция";
755
            $sInfo = "Секция";
720
        }
756
        }
721
        if ($sSectID != 0) {
757
        if ($sSectID != 0) {
722
            // Режим редактирования
758
            // Режим редактирования
723
            $query = "SELECT * FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
759
            $query = "SELECT * FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
724
            $rq =& $this->db->query($query);
760
            $rq =& $this->db->query($query);
725
            $rq->fetchInto($element);
761
            $rq->fetchInto($element);
726
        }
762
        }
727
763
728
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
764
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
729
        $show .= "<div class='inputbox'><label for='sname'>Название секции:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["secname"],1)."'></div>\n";
765
        $show .= "<div class='inputbox'><label for='sname'>Название секции:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["secname"],1)."'></div>\n";
730
        $show .= "<div class='inputbox'><label for='sinfo'>Описание секции:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sectinfo"],1)."'></div>\n";
766
        $show .= "<div class='inputbox'><label for='sinfo'>Описание секции:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sectinfo"],1)."'></div>\n";
731
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
767
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
732
768
733
        return $show;
769
        return $show;
734
    }
770
    }
735
771
736
    /**
772
    /**
737
     * Обновление информации о секции
773
     * Обновление информации о секции
738
     *
774
     *
739
     * @author Alexander Wolf
775
     * @author Alexander Wolf
740
     * @category Core
776
     * @category Core
741
     *
777
     *
742
     * @param integer $sectionID
778
     * @param integer $sectionID
743
     * @param string $sname
779
     * @param string $sname
744
     * @param string $sinfo
780
     * @param string $sinfo
745
     * @return array
781
     * @return array
746
     */
782
     */
747
    public function updateSection($sectionID, $sname, $sinfo = "") {
783
    public function updateSection($sectionID, $sname, $sinfo = "") {
748
        $result = array();
784
        $result = array();
749
        $sSectID    = $this->secure->checkInt($sectionID);
785
        $sSectID    = $this->secure->checkInt($sectionID);
750
        $sSName     = $this->secure->checkStr($sname);
786
        $sSName     = $this->secure->checkStr($sname);
751
        $sSInfo     = $this->secure->checkStr($sinfo);
787
        $sSInfo     = $this->secure->checkStr($sinfo);
752
788
753
        $query = "UPDATE ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."' WHERE sect_id='".$sSectID."'";
789
        $query = "UPDATE ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."' WHERE sect_id='".$sSectID."'";
754
        $rq =& $this->db->query($query);
790
        $rq =& $this->db->query($query);
755
        if (PEAR::isError($this->db)) {
791
        if (PEAR::isError($this->db)) {
756
            $result["ERR"] = 1;
792
            $result["ERR"] = 1;
757
            $result["ERRINFO"] = $this->db->getMessage();
793
            $result["ERRINFO"] = $this->db->getMessage();
758
        } else {
794
        } else {
759
            $result["ERR"] = 0;
795
            $result["ERR"] = 0;
760
        }
796
        }
761
797
762
        return $result;
798
        return $result;
763
    }
799
    }
764
800
765
    /**
801
    /**
766
     * Удаление информации о секции
802
     * Удаление информации о секции
767
     *
803
     *
768
     * @author Alexander Wolf
804
     * @author Alexander Wolf
769
     * @category Core
805
     * @category Core
770
     *
806
     *
771
     * @param integer $sectionID
807
     * @param integer $sectionID
772
     * @return array
808
     * @return array
773
     */
809
     */
774
    public function dropSection($sectionID) {
810
    public function dropSection($sectionID) {
775
        $result = array();
811
        $result = array();
776
        $sSectID    = $this->secure->checkInt($sectionID);
812
        $sSectID    = $this->secure->checkInt($sectionID);
777
813
778
        // Удаление секции
814
        // Удаление секции
779
        $query = "DELETE FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
815
        $query = "DELETE FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
780
        $rq =& $this->db->query($query);
816
        $rq =& $this->db->query($query);
781
        if (PEAR::isError($this->db)) {
817
        if (PEAR::isError($this->db)) {
782
            $result["ERR"] = 1;
818
            $result["ERR"] = 1;
783
            $result["ERRINFO"] = $this->db->getMessage();
819
            $result["ERRINFO"] = $this->db->getMessage();
784
        } else {
820
        } else {
785
            $result["ERR"] = 0;
821
            $result["ERR"] = 0;
786
        }
822
        }
787
823
788
        return $result;
824
        return $result;
789
    }
825
    }
790
826
791
    /**
827
    /**
792
     * Добавление новой секции
828
     * Добавление новой секции
793
     *
829
     *
794
     * @author Alexander Wolf
830
     * @author Alexander Wolf
795
     * @category Core
831
     * @category Core
796
     *
832
     *
797
     * @param string $sname
833
     * @param string $sname
798
     * @param string $sinfo
834
     * @param string $sinfo
799
     * @return array
835
     * @return array
800
     */
836
     */
801
    public function addSection($sname, $sinfo = "") {
837
    public function addSection($sname, $sinfo = "") {
802
        $result = array();
838
        $result = array();
803
        $sSName = $this->secure->checkStr($sname);
839
        $sSName = $this->secure->checkStr($sname);
804
        $sSInfo = $this->secure->checkStr($sinfo);
840
        $sSInfo = $this->secure->checkStr($sinfo);
805
841
806
        $query = "INSERT INTO ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."'";
842
        $query = "INSERT INTO ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."'";
807
        $rq =& $this->db->query($query);
843
        $rq =& $this->db->query($query);
808
        if (PEAR::isError($this->db)) {
844
        if (PEAR::isError($this->db)) {
809
            $result["ERR"] = 1;
845
            $result["ERR"] = 1;
810
            $result["ERRINFO"] = $this->db->getMessage();
846
            $result["ERRINFO"] = $this->db->getMessage();
811
        } else {
847
        } else {
812
            $result["ERR"] = 0;
848
            $result["ERR"] = 0;
813
        }
849
        }
814
850
815
        return $result;
851
        return $result;
816
    }
852
    }
817
853
818
    /**
854
    /**
819
     * Вывод списка поддерживаемых архитектур
855
     * Вывод списка поддерживаемых архитектур
820
     *
856
     *
821
     * @author Alexander Wolf
857
     * @author Alexander Wolf
822
     * @category Core
858
     * @category Core
823
     *
859
     *
824
     * @param string $name
860
     * @param string $name
825
     * @param string $actor
861
     * @param string $actor
826
     * @param string $format
862
     * @param string $format
827
     * @return string
863
     * @return string
828
     */
864
     */
829
    public function showArchList($name, $actor, $format = 'list') {
865
    public function showArchList($name, $actor, $format = 'list') {
830
        switch($format) {
866
        switch($format) {
831
            case 'list':
867
            case 'list':
832
                $query = "SELECT * FROM ".$this->prefix."arch";
868
                $query = "SELECT * FROM ".$this->prefix."arch";
833
                $rq =& $this->db->query($query);
869
                $rq =& $this->db->query($query);
834
                $show = "<ul>\n";
870
                $show = "<ul>\n";
835
                while ($rq->fetchInto($element)) {
871
                while ($rq->fetchInto($element)) {
836
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["arch_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["arch_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["arch"],1)."</li>\n";
872
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["arch_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["arch_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["arch"],1)."</li>\n";
837
                }
873
                }
838
                $show .= "</ul>";
874
                $show .= "</ul>";
839
                break;
875
                break;
840
            case 'innerhtml':
876
            case 'innerhtml':
841
                $show = "";
877
                $show = "";
842
                $repID = $this->secure->checkInt($actor);
878
                $repID = $this->secure->checkInt($actor);
843
                if ($repID==0) {
879
                if ($repID==0) {
844
                    $query = "SELECT * FROM ".$this->prefix."arch";
880
                    $query = "SELECT * FROM ".$this->prefix."arch";
845
                    $rq =& $this->db->query($query);
881
                    $rq =& $this->db->query($query);
846
                    while ($rq->fetchInto($element)) {
882
                    while ($rq->fetchInto($element)) {
847
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["arch_id"]."'>&nbsp;".$this->secure->checkStr($element["arch"],1)." ";
883
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["arch_id"]."'>&nbsp;".$this->secure->checkStr($element["arch"],1)." ";
848
                    }
884
                    }
849
                } else {
885
                } else {
850
                    $query = "SELECT * FROM ".$this->prefix."arch a JOIN ".$this->prefix."arch2rep r ON a.arch_id=r.arch_id WHERE r.rep_id='$repID'";
886
                    $query = "SELECT * FROM ".$this->prefix."arch a JOIN ".$this->prefix."arch2rep r ON a.arch_id=r.arch_id WHERE r.rep_id='$repID'";
851
                    $rq =& $this->db->query($query);
887
                    $rq =& $this->db->query($query);
852
                    while ($rq->fetchInto($element)) {
888
                    while ($rq->fetchInto($element)) {
853
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["arch_id"]."' checked>&nbsp;".$this->secure->checkStr($element["arch"],1)." ";
889
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["arch_id"]."' checked>&nbsp;".$this->secure->checkStr($element["arch"],1)." ";
854
                    }
890
                    }
855
                    $query = "SELECT a.* FROM ".$this->prefix."arch a WHERE a.arch_id NOT IN (SELECT arch_id FROM ".$this->prefix."arch2rep WHERE rep_id='$repID')";
891
                    $query = "SELECT a.* FROM ".$this->prefix."arch a WHERE a.arch_id NOT IN (SELECT arch_id FROM ".$this->prefix."arch2rep WHERE rep_id='$repID')";
856
                    $rq =& $this->db->query($query);
892
                    $rq =& $this->db->query($query);
857
                    if ($rq->numRows()>0) {
893
                    if ($rq->numRows()>0) {
858
                        while ($rq->fetchInto($element)) {
894
                        while ($rq->fetchInto($element)) {
859
                            $show .= "<input type='checkbox' name='".$name."[]' value='".$element["arch_id"]."'>&nbsp;".$this->secure->checkStr($element["arch"],1)." ";
895
                            $show .= "<input type='checkbox' name='".$name."[]' value='".$element["arch_id"]."'>&nbsp;".$this->secure->checkStr($element["arch"],1)." ";
860
                        }
896
                        }
861
                    }
897
                    }
862
                }
898
                }
863
                break;
899
                break;
864
        }
900
        }
865
        return $show;
901
        return $show;
866
    }
902
    }
867
903
868
    /**
904
    /**
869
     * Добавление новой архитектуры
905
     * Добавление новой архитектуры
870
     *
906
     *
871
     * @author Alexander Wolf
907
     * @author Alexander Wolf
872
     * @category Core
908
     * @category Core
873
     *
909
     *
874
     * @param string $arch
910
     * @param string $arch
875
     * @return array
911
     * @return array
876
     */
912
     */
877
    public function addArch($arch) {
913
    public function addArch($arch) {
878
        $result = array();
914
        $result = array();
879
        $sArch = $this->secure->checkStr($arch);
915
        $sArch = $this->secure->checkStr($arch);
880
916
881
        $query = "INSERT INTO ".$this->prefix."arch SET arch='".$sArch."'";
917
        $query = "INSERT INTO ".$this->prefix."arch SET arch='".$sArch."'";
882
        $rq =& $this->db->query($query);
918
        $rq =& $this->db->query($query);
883
        if (PEAR::isError($this->db)) {
919
        if (PEAR::isError($this->db)) {
884
            $result["ERR"] = 1;
920
            $result["ERR"] = 1;
885
            $result["ERRINFO"] = $this->db->getMessage();
921
            $result["ERRINFO"] = $this->db->getMessage();
886
        } else {
922
        } else {
887
            $result["ERR"] = 0;
923
            $result["ERR"] = 0;
888
        }
924
        }
889
925
890
        return $result;
926
        return $result;
891
    }
927
    }
892
928
893
    /**
929
    /**
894
     * Удаление информации об архитектуре
930
     * Удаление информации об архитектуре
895
     *
931
     *
896
     * @author Alexander Wolf
932
     * @author Alexander Wolf
897
     * @category Core
933
     * @category Core
898
     *
934
     *
899
     * @param integer $archID
935
     * @param integer $archID
900
     * @return array
936
     * @return array
901
     */
937
     */
902
    public function dropArch($archID) {
938
    public function dropArch($archID) {
903
        $result = array();
939
        $result = array();
904
        $sArchID    = $this->secure->checkInt($archID);
940
        $sArchID    = $this->secure->checkInt($archID);
905
941
906
        // Удаление архитектуры
942
        // Удаление архитектуры
907
        $query = "DELETE FROM ".$this->prefix."arch WHERE arch_id='".$sArchID."'";
943
        $query = "DELETE FROM ".$this->prefix."arch WHERE arch_id='".$sArchID."'";
908
        $rq =& $this->db->query($query);
944
        $rq =& $this->db->query($query);
909
        if (PEAR::isError($this->db)) {
945
        if (PEAR::isError($this->db)) {
910
            $result["ERR"] = 1;
946
            $result["ERR"] = 1;
911
            $result["ERRINFO"] = $this->db->getMessage();
947
            $result["ERRINFO"] = $this->db->getMessage();
912
        } else {
948
        } else {
913
            $result["ERR"] = 0;
949
            $result["ERR"] = 0;
914
        }
950
        }
915
951
916
        // Удаление архитектуры из списка репозиториев
952
        // Удаление архитектуры из списка репозиториев
917
        $query = "DELETE FROM ".$this->prefix."arch2rep WHERE arch_id='".$sArchID."'";
953
        $query = "DELETE FROM ".$this->prefix."arch2rep WHERE arch_id='".$sArchID."'";
918
        $rq =& $this->db->query($query);
954
        $rq =& $this->db->query($query);
919
        if (PEAR::isError($this->db)) {
955
        if (PEAR::isError($this->db)) {
920
            $result["ERR"] = 1;
956
            $result["ERR"] = 1;
921
            $result["ERRINFO"] = $this->db->getMessage();
957
            $result["ERRINFO"] = $this->db->getMessage();
922
        } else {
958
        } else {
923
            $result["ERR"] = 0;
959
            $result["ERR"] = 0;
924
        }
960
        }
925
        return $result;
961
        return $result;
926
    }
962
    }
927
963
928
    /**
964
    /**
929
     * Обновление информации об архитектуре
965
     * Обновление информации об архитектуре
930
     *
966
     *
931
     * @author Alexander Wolf
967
     * @author Alexander Wolf
932
     * @category Core
968
     * @category Core
933
     *
969
     *
934
     * @param integer $archID
970
     * @param integer $archID
935
     * @param string $arch
971
     * @param string $arch
936
     * @return array
972
     * @return array
937
     */
973
     */
938
    public function updateArch($archID, $arch) {
974
    public function updateArch($archID, $arch) {
939
        $result = array();
975
        $result = array();
940
        $sArchID    = $this->secure->checkInt($archID);
976
        $sArchID    = $this->secure->checkInt($archID);
941
        $sArch      = $this->secure->checkStr($arch);
977
        $sArch      = $this->secure->checkStr($arch);
942
978
943
        $query = "UPDATE ".$this->prefix."arch SET arch='".$sArch."' WHERE arch_id='".$sArchID."'";
979
        $query = "UPDATE ".$this->prefix."arch SET arch='".$sArch."' WHERE arch_id='".$sArchID."'";
944
        $rq =& $this->db->query($query);
980
        $rq =& $this->db->query($query);
945
        if (PEAR::isError($this->db)) {
981
        if (PEAR::isError($this->db)) {
946
            $result["ERR"] = 1;
982
            $result["ERR"] = 1;
947
            $result["ERRINFO"] = $this->db->getMessage();
983
            $result["ERRINFO"] = $this->db->getMessage();
948
        } else {
984
        } else {
949
            $result["ERR"] = 0;
985
            $result["ERR"] = 0;
950
        }
986
        }
951
987
952
        return $result;
988
        return $result;
953
    }
989
    }
954
990
955
    /**
991
    /**
956
     * Вывод формы редактирования/добавления архитектур
992
     * Вывод формы редактирования/добавления архитектур
957
     *
993
     *
958
     * @author Alexander Wolf
994
     * @author Alexander Wolf
959
     * @category Core
995
     * @category Core
960
     *
996
     *
961
     * @param integer $archID
997
     * @param integer $archID
962
     * @param string $info
998
     * @param string $info
963
     * @return string
999
     * @return string
964
     */
1000
     */
965
    public function showArchForm($archID = 0, $info = "") {
1001
    public function showArchForm($archID = 0, $info = "") {
966
        $sArchID = $this->secure->checkInt($archID);
1002
        $sArchID = $this->secure->checkInt($archID);
967
        $sInfo = $this->secure->checkStr($info, 1);
1003
        $sInfo = $this->secure->checkStr($info, 1);
968
        if ($sInfo == "") {
1004
        if ($sInfo == "") {
969
            $sInfo = "Архитектура";
1005
            $sInfo = "Архитектура";
970
        }
1006
        }
971
        if ($sArchID != 0) {
1007
        if ($sArchID != 0) {
972
            // Режим редактирования
1008
            // Режим редактирования
973
            $query = "SELECT * FROM ".$this->prefix."arch WHERE arch_id='".$sArchID."'";
1009
            $query = "SELECT * FROM ".$this->prefix."arch WHERE arch_id='".$sArchID."'";
974
            $rq =& $this->db->query($query);
1010
            $rq =& $this->db->query($query);
975
            $rq->fetchInto($element);
1011
            $rq->fetchInto($element);
976
        }
1012
        }
977
1013
978
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1014
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
979
        $show .= "<div class='inputbox'><label for='arch'>Архитектура:</label> <input type='text' name='arch' id='arch' value='".$this->secure->checkStr($element["arch"],1)."'></div>\n";
1015
        $show .= "<div class='inputbox'><label for='arch'>Архитектура:</label> <input type='text' name='arch' id='arch' value='".$this->secure->checkStr($element["arch"],1)."'></div>\n";
980
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1016
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
981
1017
982
        return $show;
1018
        return $show;
983
    }
1019
    }
984
1020
985
    /**
1021
    /**
986
     * Вывод списка схем репозиториев
1022
     * Вывод списка схем репозиториев
987
     *
1023
     *
988
     * @author Alexander Wolf
1024
     * @author Alexander Wolf
989
     * @category Core
1025
     * @category Core
990
     *
1026
     *
991
     * @param string $name
1027
     * @param string $name
992
     * @param string $actor
1028
     * @param string $actor
993
     * @param string $format
1029
     * @param string $format
994
     * @return string
1030
     * @return string
995
     */
1031
     */
996
    public function showSchemeList($name, $actor, $format = 'list') {
1032
    public function showSchemeList($name, $actor, $format = 'list') {
997
        switch($format) {
1033
        switch($format) {
998
            case 'list':
1034
            case 'list':
999
                $query = "SELECT * FROM ".$this->prefix."repscheme";
1035
                $query = "SELECT * FROM ".$this->prefix."repscheme";
1000
                $rq =& $this->db->query($query);
1036
                $rq =& $this->db->query($query);
1001
                $show = "<ul>\n";
1037
                $show = "<ul>\n";
1002
                while ($rq->fetchInto($element)) {
1038
                while ($rq->fetchInto($element)) {
1003
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["scheme_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["scheme_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["scheme"],1)."</li>\n";
1039
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["scheme_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["scheme_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["scheme"],1)."</li>\n";
1004
                }
1040
                }
1005
                $show .= "</ul>";
1041
                $show .= "</ul>";
1006
                break;
1042
                break;
1007
            case 'innerhtml':
1043
            case 'innerhtml':
1008
                $schemeID = $this->secure->checkInt($actor);
1044
                $schemeID = $this->secure->checkInt($actor);
1009
                $query = "SELECT * FROM ".$this->prefix."repscheme";
1045
                $query = "SELECT * FROM ".$this->prefix."repscheme";
1010
                $rq =& $this->db->query($query);
1046
                $rq =& $this->db->query($query);
1011
                $show = "<select name='".$name."' id='".$name."'>\n";
1047
                $show = "<select name='".$name."' id='".$name."'>\n";
1012
                while ($rq->fetchInto($element)) {
1048
                while ($rq->fetchInto($element)) {
1013
                    if ($element["scheme_id"]==$schemeID) {
1049
                    if ($element["scheme_id"]==$schemeID) {
1014
                        $show .= "<option value='".$this->secure->checkInt($element["scheme_id"])."' selected>".$this->secure->checkStr($element["scheme"],1)."</option>\n";
1050
                        $show .= "<option value='".$this->secure->checkInt($element["scheme_id"])."' selected>".$this->secure->checkStr($element["scheme"],1)."</option>\n";
1015
                    } else {
1051
                    } else {
1016
                        $show .= "<option value='".$this->secure->checkInt($element["scheme_id"])."'>".$this->secure->checkStr($element["scheme"],1)."</option>\n";
1052
                        $show .= "<option value='".$this->secure->checkInt($element["scheme_id"])."'>".$this->secure->checkStr($element["scheme"],1)."</option>\n";
1017
                    }
1053
                    }
1018
                }
1054
                }
1019
                $show .= "</select>";
1055
                $show .= "</select>";
1020
                break;
1056
                break;
1021
        }
1057
        }
1022
        return $show;
1058
        return $show;
1023
    }
1059
    }
1024
1060
1025
    /**
1061
    /**
1026
     * Добавление новой схемы репозитория
1062
     * Добавление новой схемы репозитория
1027
     *
1063
     *
1028
     * @author Alexander Wolf
1064
     * @author Alexander Wolf
1029
     * @category Core
1065
     * @category Core
1030
     *
1066
     *
1031
     * @param string $scheme
1067
     * @param string $scheme
1032
     * @return array
1068
     * @return array
1033
     */
1069
     */
1034
    public function addScheme($scheme) {
1070
    public function addScheme($scheme) {
1035
        $result = array();
1071
        $result = array();
1036
        $sScheme = $this->secure->checkStr($scheme);
1072
        $sScheme = $this->secure->checkStr($scheme);
1037
1073
1038
        $query = "INSERT INTO ".$this->prefix."repscheme SET scheme='".$sScheme."'";
1074
        $query = "INSERT INTO ".$this->prefix."repscheme SET scheme='".$sScheme."'";
1039
        $rq =& $this->db->query($query);
1075
        $rq =& $this->db->query($query);
1040
        if (PEAR::isError($this->db)) {
1076
        if (PEAR::isError($this->db)) {
1041
            $result["ERR"] = 1;
1077
            $result["ERR"] = 1;
1042
            $result["ERRINFO"] = $this->db->getMessage();
1078
            $result["ERRINFO"] = $this->db->getMessage();
1043
        } else {
1079
        } else {
1044
            $result["ERR"] = 0;
1080
            $result["ERR"] = 0;
1045
        }
1081
        }
1046
1082
1047
        return $result;
1083
        return $result;
1048
    }
1084
    }
1049
1085
1050
    /**
1086
    /**
1051
     * Удаление информации о схеме репозитория
1087
     * Удаление информации о схеме репозитория
1052
     *
1088
     *
1053
     * @author Alexander Wolf
1089
     * @author Alexander Wolf
1054
     * @category Core
1090
     * @category Core
1055
     *
1091
     *
1056
     * @param integer $schemeID
1092
     * @param integer $schemeID
1057
     * @return array
1093
     * @return array
1058
     */
1094
     */
1059
    public function dropScheme($schemeID) {
1095
    public function dropScheme($schemeID) {
1060
        $result = array();
1096
        $result = array();
1061
        $sSchemeID    = $this->secure->checkInt($schemeID);
1097
        $sSchemeID    = $this->secure->checkInt($schemeID);
1062
1098
1063
        // Удаление схемы
1099
        // Удаление схемы
1064
        $query = "DELETE FROM ".$this->prefix."repscheme WHERE scheme_id='".$sSchemeID."'";
1100
        $query = "DELETE FROM ".$this->prefix."repscheme WHERE scheme_id='".$sSchemeID."'";
1065
        $rq =& $this->db->query($query);
1101
        $rq =& $this->db->query($query);
1066
        if (PEAR::isError($this->db)) {
1102
        if (PEAR::isError($this->db)) {
1067
            $result["ERR"] = 1;
1103
            $result["ERR"] = 1;
1068
            $result["ERRINFO"] = $this->db->getMessage();
1104
            $result["ERRINFO"] = $this->db->getMessage();
1069
        } else {
1105
        } else {
1070
            $result["ERR"] = 0;
1106
            $result["ERR"] = 0;
1071
        }
1107
        }
1072
       
1108
       
1073
        return $result;
1109
        return $result;
1074
    }
1110
    }
1075
1111
1076
    /**
1112
    /**
1077
     * Обновление информации о схеме репозитория
1113
     * Обновление информации о схеме репозитория
1078
     *
1114
     *
1079
     * @author Alexander Wolf
1115
     * @author Alexander Wolf
1080
     * @category Core
1116
     * @category Core
1081
     *
1117
     *
1082
     * @param integer $schemeID
1118
     * @param integer $schemeID
1083
     * @param string $info
1119
     * @param string $info
1084
     * @return array
1120
     * @return array
1085
     */
1121
     */
1086
    public function updateScheme($schemeID, $info) {
1122
    public function updateScheme($schemeID, $info) {
1087
        $result = array();
1123
        $result = array();
1088
        $sSchemeID    = $this->secure->checkInt($schemeID);
1124
        $sSchemeID    = $this->secure->checkInt($schemeID);
1089
        $sScheme      = $this->secure->checkStr($info);
1125
        $sScheme      = $this->secure->checkStr($info);
1090
1126
1091
        $query = "UPDATE ".$this->prefix."repscheme SET scheme='".$sScheme."' WHERE scheme_id='".$sSchemeID."'";
1127
        $query = "UPDATE ".$this->prefix."repscheme SET scheme='".$sScheme."' WHERE scheme_id='".$sSchemeID."'";
1092
        $rq =& $this->db->query($query);
1128
        $rq =& $this->db->query($query);
1093
        if (PEAR::isError($this->db)) {
1129
        if (PEAR::isError($this->db)) {
1094
            $result["ERR"] = 1;
1130
            $result["ERR"] = 1;
1095
            $result["ERRINFO"] = $this->db->getMessage();
1131
            $result["ERRINFO"] = $this->db->getMessage();
1096
        } else {
1132
        } else {
1097
            $result["ERR"] = 0;
1133
            $result["ERR"] = 0;
1098
        }
1134
        }
1099
1135
1100
        return $result;
1136
        return $result;
1101
    }
1137
    }
1102
1138
1103
    /**
1139
    /**
1104
     * Вывод формы редактирования/добавления схем репозиториев
1140
     * Вывод формы редактирования/добавления схем репозиториев
1105
     *
1141
     *
1106
     * @author Alexander Wolf
1142
     * @author Alexander Wolf
1107
     * @category Core
1143
     * @category Core
1108
     *
1144
     *
1109
     * @param integer $schemeID
1145
     * @param integer $schemeID
1110
     * @param string $info
1146
     * @param string $info
1111
     * @return string
1147
     * @return string
1112
     */
1148
     */
1113
    public function showSchemeForm($schemeID = 0, $info = "") {
1149
    public function showSchemeForm($schemeID = 0, $info = "") {
1114
        $sSchemeID = $this->secure->checkInt($schemeID);
1150
        $sSchemeID = $this->secure->checkInt($schemeID);
1115
        $sInfo = $this->secure->checkStr($info, 1);
1151
        $sInfo = $this->secure->checkStr($info, 1);
1116
        if ($sInfo == "") {
1152
        if ($sInfo == "") {
1117
            $sInfo = "Схема репозитория";
1153
            $sInfo = "Схема репозитория";
1118
        }
1154
        }
1119
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1155
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1120
        if ($sSchemeID != 0) {
1156
        if ($sSchemeID != 0) {
1121
            // Режим редактирования
1157
            // Режим редактирования
1122
            $query = "SELECT * FROM ".$this->prefix."repscheme WHERE scheme_id='".$sSchemeID."'";
1158
            $query = "SELECT * FROM ".$this->prefix."repscheme WHERE scheme_id='".$sSchemeID."'";
1123
            $rq =& $this->db->query($query);
1159
            $rq =& $this->db->query($query);
1124
            $rq->fetchInto($element);            
1160
            $rq->fetchInto($element);            
1125
        }
1161
        }
1126
       
1162
       
1127
        $show .= "<div class='inputbox'><label for='scheme'>Схема репозитория:</label> <input type='text' name='scheme' id='scheme' value='".$this->secure->checkStr($element["scheme"],1)."'></div>\n";
1163
        $show .= "<div class='inputbox'><label for='scheme'>Схема репозитория:</label> <input type='text' name='scheme' id='scheme' value='".$this->secure->checkStr($element["scheme"],1)."'></div>\n";
1128
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1164
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1129
1165
1130
        return $show;
1166
        return $show;
1131
    }
1167
    }
1132
1168
1133
    /**
1169
    /**
1134
     * Вывод списка протоколов
1170
     * Вывод списка протоколов
1135
     *
1171
     *
1136
     * @author Alexander Wolf
1172
     * @author Alexander Wolf
1137
     * @category Core
1173
     * @category Core
1138
     *
1174
     *
1139
     * @param string $name
1175
     * @param string $name
1140
     * @param string $actor
1176
     * @param string $actor
1141
     * @param string $format
1177
     * @param string $format
1142
     * @return string
1178
     * @return string
1143
     */
1179
     */
1144
    public function showProtoList($name, $actor, $format = 'list') {
1180
    public function showProtoList($name, $actor, $format = 'list') {
1145
        switch($format) {
1181
        switch($format) {
1146
            case 'list':
1182
            case 'list':
1147
                $query = "SELECT * FROM ".$this->prefix."protos";
1183
                $query = "SELECT * FROM ".$this->prefix."protos";
1148
                $rq =& $this->db->query($query);
1184
                $rq =& $this->db->query($query);
1149
                $show = "<ul>\n";
1185
                $show = "<ul>\n";
1150
                while ($rq->fetchInto($element)) {
1186
                while ($rq->fetchInto($element)) {
1151
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["proto_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["proto_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["proto"],1)."</li>\n";
1187
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["proto_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["proto_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["proto"],1)."</li>\n";
1152
                }
1188
                }
1153
                $show .= "</ul>";
1189
                $show .= "</ul>";
1154
                break;
1190
                break;
1155
            case 'innerhtml':
1191
            case 'innerhtml':
1156
                $protoID = $this->secure->checkInt($actor);
1192
                $protoID = $this->secure->checkInt($actor);
1157
                $query = "SELECT * FROM ".$this->prefix."protos";
1193
                $query = "SELECT * FROM ".$this->prefix."protos";
1158
                $rq =& $this->db->query($query);
1194
                $rq =& $this->db->query($query);
1159
                $show = "<select name='".$name."' id='".$name."'>\n";
1195
                $show = "<select name='".$name."' id='".$name."'>\n";
1160
                while ($rq->fetchInto($element)) {
1196
                while ($rq->fetchInto($element)) {
1161
                    if ($element["proto_id"]==$protoID) {
1197
                    if ($element["proto_id"]==$protoID) {
1162
                        $show .= "<option value='".$this->secure->checkInt($element["proto_id"])."' selected>".$this->secure->checkStr($element["proto"],1)."</option>\n";
1198
                        $show .= "<option value='".$this->secure->checkInt($element["proto_id"])."' selected>".$this->secure->checkStr($element["proto"],1)."</option>\n";
1163
                    } else {
1199
                    } else {
1164
                        $show .= "<option value='".$this->secure->checkInt($element["proto_id"])."'>".$this->secure->checkStr($element["proto"],1)."</option>\n";
1200
                        $show .= "<option value='".$this->secure->checkInt($element["proto_id"])."'>".$this->secure->checkStr($element["proto"],1)."</option>\n";
1165
                    }
1201
                    }
1166
                }
1202
                }
1167
                $show .= "</select>";
1203
                $show .= "</select>";
1168
                break;
1204
                break;
1169
        }
1205
        }
1170
        return $show;
1206
        return $show;
1171
    }
1207
    }
1172
1208
1173
    /**
1209
    /**
1174
     * Добавление нового протокола
1210
     * Добавление нового протокола
1175
     *
1211
     *
1176
     * @author Alexander Wolf
1212
     * @author Alexander Wolf
1177
     * @category Core
1213
     * @category Core
1178
     *
1214
     *
1179
     * @param string $proto
1215
     * @param string $proto
1180
     * @return array
1216
     * @return array
1181
     */
1217
     */
1182
    public function addProto($proto) {
1218
    public function addProto($proto) {
1183
        $result = array();
1219
        $result = array();
1184
        $sProto = $this->secure->checkStr($proto);
1220
        $sProto = $this->secure->checkStr($proto);
1185
1221
1186
        $query = "INSERT INTO ".$this->prefix."protos SET proto='".$sProto."'";
1222
        $query = "INSERT INTO ".$this->prefix."protos SET proto='".$sProto."'";
1187
        $rq =& $this->db->query($query);
1223
        $rq =& $this->db->query($query);
1188
        if (PEAR::isError($this->db)) {
1224
        if (PEAR::isError($this->db)) {
1189
            $result["ERR"] = 1;
1225
            $result["ERR"] = 1;
1190
            $result["ERRINFO"] = $this->db->getMessage();
1226
            $result["ERRINFO"] = $this->db->getMessage();
1191
        } else {
1227
        } else {
1192
            $result["ERR"] = 0;
1228
            $result["ERR"] = 0;
1193
        }
1229
        }
1194
1230
1195
        return $result;
1231
        return $result;
1196
    }
1232
    }
1197
1233
1198
    /**
1234
    /**
1199
     * Удаление информации о протоколе
1235
     * Удаление информации о протоколе
1200
     *
1236
     *
1201
     * @author Alexander Wolf
1237
     * @author Alexander Wolf
1202
     * @category Core
1238
     * @category Core
1203
     *
1239
     *
1204
     * @param integer $protoID
1240
     * @param integer $protoID
1205
     * @return array
1241
     * @return array
1206
     */
1242
     */
1207
    public function dropProto($protoID) {
1243
    public function dropProto($protoID) {
1208
        $result = array();
1244
        $result = array();
1209
        $sProtoID    = $this->secure->checkInt($protoID);
1245
        $sProtoID    = $this->secure->checkInt($protoID);
1210
1246
1211
        // Удаление протокола
1247
        // Удаление протокола
1212
        $query = "DELETE FROM ".$this->prefix."protos WHERE proto_id='".$sProtoID."'";
1248
        $query = "DELETE FROM ".$this->prefix."protos WHERE proto_id='".$sProtoID."'";
1213
        $rq =& $this->db->query($query);
1249
        $rq =& $this->db->query($query);
1214
        if (PEAR::isError($this->db)) {
1250
        if (PEAR::isError($this->db)) {
1215
            $result["ERR"] = 1;
1251
            $result["ERR"] = 1;
1216
            $result["ERRINFO"] = $this->db->getMessage();
1252
            $result["ERRINFO"] = $this->db->getMessage();
1217
        } else {
1253
        } else {
1218
            $result["ERR"] = 0;
1254
            $result["ERR"] = 0;
1219
        }
1255
        }
1220
1256
1221
        return $result;
1257
        return $result;
1222
    }
1258
    }
1223
1259
1224
    /**
1260
    /**
1225
     * Обновление информации о протоколе
1261
     * Обновление информации о протоколе
1226
     *
1262
     *
1227
     * @author Alexander Wolf
1263
     * @author Alexander Wolf
1228
     * @category Core
1264
     * @category Core
1229
     *
1265
     *
1230
     * @param integer $protoID
1266
     * @param integer $protoID
1231
     * @param string $info
1267
     * @param string $info
1232
     * @return array
1268
     * @return array
1233
     */
1269
     */
1234
    public function updateProto($protoID, $info) {
1270
    public function updateProto($protoID, $info) {
1235
        $result = array();
1271
        $result = array();
1236
        $sProtoID    = $this->secure->checkInt($protoID);
1272
        $sProtoID    = $this->secure->checkInt($protoID);
1237
        $sProto      = $this->secure->checkStr($info);
1273
        $sProto      = $this->secure->checkStr($info);
1238
1274
1239
        $query = "UPDATE ".$this->prefix."protos SET proto='".$sProto."' WHERE proto_id='".$sProtoID."'";
1275
        $query = "UPDATE ".$this->prefix."protos SET proto='".$sProto."' WHERE proto_id='".$sProtoID."'";
1240
        $rq =& $this->db->query($query);
1276
        $rq =& $this->db->query($query);
1241
        if (PEAR::isError($this->db)) {
1277
        if (PEAR::isError($this->db)) {
1242
            $result["ERR"] = 1;
1278
            $result["ERR"] = 1;
1243
            $result["ERRINFO"] = $this->db->getMessage();
1279
            $result["ERRINFO"] = $this->db->getMessage();
1244
        } else {
1280
        } else {
1245
            $result["ERR"] = 0;
1281
            $result["ERR"] = 0;
1246
        }
1282
        }
1247
1283
1248
        return $result;
1284
        return $result;
1249
    }
1285
    }
1250
1286
1251
    /**
1287
    /**
1252
     * Вывод формы редактирования/добавления протоколов
1288
     * Вывод формы редактирования/добавления протоколов
1253
     *
1289
     *
1254
     * @author Alexander Wolf
1290
     * @author Alexander Wolf
1255
     * @category Core
1291
     * @category Core
1256
     *
1292
     *
1257
     * @param integer $protoID
1293
     * @param integer $protoID
1258
     * @param string $info
1294
     * @param string $info
1259
     * @return string
1295
     * @return string
1260
     */
1296
     */
1261
    public function showProtoForm($protoID = 0, $info = "") {
1297
    public function showProtoForm($protoID = 0, $info = "") {
1262
        $sProtoID = $this->secure->checkInt($protoID);
1298
        $sProtoID = $this->secure->checkInt($protoID);
1263
        $sInfo = $this->secure->checkStr($info, 1);
1299
        $sInfo = $this->secure->checkStr($info, 1);
1264
        if ($sInfo == "") {
1300
        if ($sInfo == "") {
1265
            $sInfo = "Протокол доступа";
1301
            $sInfo = "Протокол доступа";
1266
        }
1302
        }
1267
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1303
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1268
        if ($sProtoID != 0) {
1304
        if ($sProtoID != 0) {
1269
            // Режим редактирования
1305
            // Режим редактирования
1270
            $query = "SELECT * FROM ".$this->prefix."protos WHERE proto_id='".$sProtoID."'";
1306
            $query = "SELECT * FROM ".$this->prefix."protos WHERE proto_id='".$sProtoID."'";
1271
            $rq =& $this->db->query($query);
1307
            $rq =& $this->db->query($query);
1272
            $rq->fetchInto($element);
1308
            $rq->fetchInto($element);
1273
        }
1309
        }
1274
1310
1275
        $show .= "<div class='inputbox'><label for='proto'>Протокол доступа:</label> <input type='text' name='proto' id='proto' value='".$this->secure->checkStr($element["proto"],1)."'></div>\n";
1311
        $show .= "<div class='inputbox'><label for='proto'>Протокол доступа:</label> <input type='text' name='proto' id='proto' value='".$this->secure->checkStr($element["proto"],1)."'></div>\n";
1276
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1312
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1277
1313
1278
        return $show;
1314
        return $show;
1279
    }
1315
    }
1280
1316
1281
    /**
1317
    /**
1282
     * Вывод списка хостов
1318
     * Вывод списка хостов
1283
     *
1319
     *
1284
     * @author Alexander Wolf
1320
     * @author Alexander Wolf
1285
     * @category Core
1321
     * @category Core
1286
     *
1322
     *
1287
     * @param string $name
1323
     * @param string $name
1288
     * @param string $actor
1324
     * @param string $actor
1289
     * @param string $format
1325
     * @param string $format
1290
     * @return string
1326
     * @return string
1291
     */
1327
     */
1292
    public function showHostsList($name, $actor, $format = 'list') {
1328
    public function showHostsList($name, $actor, $format = 'list') {
1293
        switch($format) {
1329
        switch($format) {
1294
            case 'list':
1330
            case 'list':
1295
                $query = "SELECT * FROM ".$this->prefix."rephost";
1331
                $query = "SELECT * FROM ".$this->prefix."rephost";
1296
                $rq =& $this->db->query($query);
1332
                $rq =& $this->db->query($query);
1297
                $show = "<ul>\n";
1333
                $show = "<ul>\n";
1298
                while ($rq->fetchInto($element)) {
1334
                while ($rq->fetchInto($element)) {
1299
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["rhost_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["rhost_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["rhost"],1)."</li>\n";
1335
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["rhost_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["rhost_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["rhost"],1)."</li>\n";
1300
                }
1336
                }
1301
                $show .= "</ul>";
1337
                $show .= "</ul>";
1302
                break;
1338
                break;
1303
            case 'innerhtml':
1339
            case 'innerhtml':
1304
                $hostID = $this->secure->checkInt($actor);
1340
                $hostID = $this->secure->checkInt($actor);
1305
                $query = "SELECT * FROM ".$this->prefix."rephost";
1341
                $query = "SELECT * FROM ".$this->prefix."rephost";
1306
                $rq =& $this->db->query($query);
1342
                $rq =& $this->db->query($query);
1307
                $show = "<select name='".$name."' id='".$name."'>\n";
1343
                $show = "<select name='".$name."' id='".$name."'>\n";
1308
                while ($rq->fetchInto($element)) {
1344
                while ($rq->fetchInto($element)) {
1309
                    if ($element["rhost_id"]==$hostID) {
1345
                    if ($element["rhost_id"]==$hostID) {
1310
                        $show .= "<option value='".$this->secure->checkInt($element["rhost_id"])."' selected>".$this->secure->checkStr($element["rhost"],1)."</option>\n";
1346
                        $show .= "<option value='".$this->secure->checkInt($element["rhost_id"])."' selected>".$this->secure->checkStr($element["rhost"],1)."</option>\n";
1311
                    } else {
1347
                    } else {
1312
                        $show .= "<option value='".$this->secure->checkInt($element["rhost_id"])."'>".$this->secure->checkStr($element["rhost"],1)."</option>\n";
1348
                        $show .= "<option value='".$this->secure->checkInt($element["rhost_id"])."'>".$this->secure->checkStr($element["rhost"],1)."</option>\n";
1313
                    }
1349
                    }
1314
                }
1350
                }
1315
                $show .= "</select>";
1351
                $show .= "</select>";
1316
                break;
1352
                break;
1317
        }
1353
        }
1318
        return $show;
1354
        return $show;
1319
    }
1355
    }
1320
1356
1321
    /**
1357
    /**
1322
     * Добавление нового хоста
1358
     * Добавление нового хоста
1323
     *
1359
     *
1324
     * @author Alexander Wolf
1360
     * @author Alexander Wolf
1325
     * @category Core
1361
     * @category Core
1326
     *
1362
     *
1327
     * @param string $host
1363
     * @param string $host
1328
     * @return array
1364
     * @return array
1329
     */
1365
     */
1330
    public function addHost($host) {
1366
    public function addHost($host) {
1331
        $result = array();
1367
        $result = array();
1332
        $sHost = $this->secure->checkStr($host);
1368
        $sHost = $this->secure->checkStr($host);
1333
1369
1334
        $query = "INSERT INTO ".$this->prefix."rephost SET rhost='".$sHost."'";
1370
        $query = "INSERT INTO ".$this->prefix."rephost SET rhost='".$sHost."'";
1335
        $rq =& $this->db->query($query);
1371
        $rq =& $this->db->query($query);
1336
        if (PEAR::isError($this->db)) {
1372
        if (PEAR::isError($this->db)) {
1337
            $result["ERR"] = 1;
1373
            $result["ERR"] = 1;
1338
            $result["ERRINFO"] = $this->db->getMessage();
1374
            $result["ERRINFO"] = $this->db->getMessage();
1339
        } else {
1375
        } else {
1340
            $result["ERR"] = 0;
1376
            $result["ERR"] = 0;
1341
        }
1377
        }
1342
1378
1343
        return $result;
1379
        return $result;
1344
    }
1380
    }
1345
1381
1346
    /**
1382
    /**
1347
     * Удаление информации о хосте
1383
     * Удаление информации о хосте
1348
     *
1384
     *
1349
     * @author Alexander Wolf
1385
     * @author Alexander Wolf
1350
     * @category Core
1386
     * @category Core
1351
     *
1387
     *
1352
     * @param integer $hostID
1388
     * @param integer $hostID
1353
     * @return array
1389
     * @return array
1354
     */
1390
     */
1355
    public function dropHost($hostID) {
1391
    public function dropHost($hostID) {
1356
        $result = array();
1392
        $result = array();
1357
        $sHostID    = $this->secure->checkInt($hostID);
1393
        $sHostID    = $this->secure->checkInt($hostID);
1358
1394
1359
        // Удаление хоста
1395
        // Удаление хоста
1360
        $query = "DELETE FROM ".$this->prefix."rephost WHERE rhost_id='".$sHostID."'";
1396
        $query = "DELETE FROM ".$this->prefix."rephost WHERE rhost_id='".$sHostID."'";
1361
        $rq =& $this->db->query($query);
1397
        $rq =& $this->db->query($query);
1362
        if (PEAR::isError($this->db)) {
1398
        if (PEAR::isError($this->db)) {
1363
            $result["ERR"] = 1;
1399
            $result["ERR"] = 1;
1364
            $result["ERRINFO"] = $this->db->getMessage();
1400
            $result["ERRINFO"] = $this->db->getMessage();
1365
        } else {
1401
        } else {
1366
            $result["ERR"] = 0;
1402
            $result["ERR"] = 0;
1367
        }
1403
        }
1368
1404
1369
        return $result;
1405
        return $result;
1370
    }
1406
    }
1371
1407
1372
    /**
1408
    /**
1373
     * Обновление информации о хосте
1409
     * Обновление информации о хосте
1374
     *
1410
     *
1375
     * @author Alexander Wolf
1411
     * @author Alexander Wolf
1376
     * @category Core
1412
     * @category Core
1377
     *
1413
     *
1378
     * @param integer $hostID
1414
     * @param integer $hostID
1379
     * @param string $info
1415
     * @param string $info
1380
     * @return array
1416
     * @return array
1381
     */
1417
     */
1382
    public function updateHost($hostID, $info) {
1418
    public function updateHost($hostID, $info) {
1383
        $result = array();
1419
        $result = array();
1384
        $sHostID    = $this->secure->checkInt($hostID);
1420
        $sHostID    = $this->secure->checkInt($hostID);
1385
        $sHost      = $this->secure->checkStr($info);
1421
        $sHost      = $this->secure->checkStr($info);
1386
1422
1387
        $query = "UPDATE ".$this->prefix."rephost SET rhost='".$sHost."' WHERE rhost_id='".$sHostID."'";
1423
        $query = "UPDATE ".$this->prefix."rephost SET rhost='".$sHost."' WHERE rhost_id='".$sHostID."'";
1388
        $rq =& $this->db->query($query);
1424
        $rq =& $this->db->query($query);
1389
        if (PEAR::isError($this->db)) {
1425
        if (PEAR::isError($this->db)) {
1390
            $result["ERR"] = 1;
1426
            $result["ERR"] = 1;
1391
            $result["ERRINFO"] = $this->db->getMessage();
1427
            $result["ERRINFO"] = $this->db->getMessage();
1392
        } else {
1428
        } else {
1393
            $result["ERR"] = 0;
1429
            $result["ERR"] = 0;
1394
        }
1430
        }
1395
1431
1396
        return $result;
1432
        return $result;
1397
    }
1433
    }
1398
1434
1399
    /**
1435
    /**
1400
     * Вывод формы редактирования/добавления хостов
1436
     * Вывод формы редактирования/добавления хостов
1401
     *
1437
     *
1402
     * @author Alexander Wolf
1438
     * @author Alexander Wolf
1403
     * @category Core
1439
     * @category Core
1404
     *
1440
     *
1405
     * @param integer $hostID
1441
     * @param integer $hostID
1406
     * @param string $info
1442
     * @param string $info
1407
     * @return string
1443
     * @return string
1408
     */
1444
     */
1409
    public function showHostForm($hostID = 0, $info = "") {
1445
    public function showHostForm($hostID = 0, $info = "") {
1410
        $sHostID = $this->secure->checkInt($hostID);
1446
        $sHostID = $this->secure->checkInt($hostID);
1411
        $sInfo = $this->secure->checkStr($info, 1);
1447
        $sInfo = $this->secure->checkStr($info, 1);
1412
        if ($sInfo == "") {
1448
        if ($sInfo == "") {
1413
            $sInfo = "Хост репозитория";
1449
            $sInfo = "Хост репозитория";
1414
        }
1450
        }
1415
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1451
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1416
        if ($sHostID != 0) {
1452
        if ($sHostID != 0) {
1417
            // Режим редактирования
1453
            // Режим редактирования
1418
            $query = "SELECT * FROM ".$this->prefix."rephost WHERE rhost_id='".$sHostID."'";
1454
            $query = "SELECT * FROM ".$this->prefix."rephost WHERE rhost_id='".$sHostID."'";
1419
            $rq =& $this->db->query($query);
1455
            $rq =& $this->db->query($query);
1420
            $rq->fetchInto($element);
1456
            $rq->fetchInto($element);
1421
        }
1457
        }
1422
1458
1423
        $show .= "<div class='inputbox'><label for='rhost'>Хост репозитория:</label> <input type='text' name='rhost' id='rhost' value='".$this->secure->checkStr($element["rhost"],1)."'></div>\n";
1459
        $show .= "<div class='inputbox'><label for='rhost'>Хост репозитория:</label> <input type='text' name='rhost' id='rhost' value='".$this->secure->checkStr($element["rhost"],1)."'></div>\n";
1424
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1460
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1425
1461
1426
        return $show;
1462
        return $show;
1427
    }
1463
    }
1428
1464
1429
    /**
1465
    /**
1430
     * Вывод списка корневых папок
1466
     * Вывод списка корневых папок
1431
     *
1467
     *
1432
     * @author Alexander Wolf
1468
     * @author Alexander Wolf
1433
     * @category Core
1469
     * @category Core
1434
     *
1470
     *
1435
     * @param string $name
1471
     * @param string $name
1436
     * @param string $actor
1472
     * @param string $actor
1437
     * @param string $format
1473
     * @param string $format
1438
     * @return string
1474
     * @return string
1439
     */
1475
     */
1440
    public function showFoldersList($name, $actor, $format = 'list') {
1476
    public function showFoldersList($name, $actor, $format = 'list') {
1441
        switch($format) {
1477
        switch($format) {
1442
            case 'list':
1478
            case 'list':
1443
                $query = "SELECT * FROM ".$this->prefix."repfolder";
1479
                $query = "SELECT * FROM ".$this->prefix."repfolder";
1444
                $rq =& $this->db->query($query);
1480
                $rq =& $this->db->query($query);
1445
                $show = "<ul>\n";
1481
                $show = "<ul>\n";
1446
                while ($rq->fetchInto($element)) {
1482
                while ($rq->fetchInto($element)) {
1447
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["rfolder_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["rfolder_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["rfolder"],1)."</li>\n";
1483
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["rfolder_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["rfolder_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["rfolder"],1)."</li>\n";
1448
                }
1484
                }
1449
                $show .= "</ul>";
1485
                $show .= "</ul>";
1450
                break;
1486
                break;
1451
            case 'innerhtml':
1487
            case 'innerhtml':
1452
                $folderID = $this->secure->checkInt($actor);
1488
                $folderID = $this->secure->checkInt($actor);
1453
                $query = "SELECT * FROM ".$this->prefix."repfolder";
1489
                $query = "SELECT * FROM ".$this->prefix."repfolder";
1454
                $rq =& $this->db->query($query);
1490
                $rq =& $this->db->query($query);
1455
                $show = "<select name='".$name."' id='".$name."'>\n";
1491
                $show = "<select name='".$name."' id='".$name."'>\n";
1456
                while ($rq->fetchInto($element)) {
1492
                while ($rq->fetchInto($element)) {
1457
                    if ($element["rfolder_id"]==$folderID) {
1493
                    if ($element["rfolder_id"]==$folderID) {
1458
                        $show .= "<option value='".$this->secure->checkInt($element["rfolder_id"])."' selected>".$this->secure->checkStr($element["rfolder"],1)."</option>\n";
1494
                        $show .= "<option value='".$this->secure->checkInt($element["rfolder_id"])."' selected>".$this->secure->checkStr($element["rfolder"],1)."</option>\n";
1459
                    } else {
1495
                    } else {
1460
                        $show .= "<option value='".$this->secure->checkInt($element["rfolder_id"])."'>".$this->secure->checkStr($element["rfolder"],1)."</option>\n";
1496
                        $show .= "<option value='".$this->secure->checkInt($element["rfolder_id"])."'>".$this->secure->checkStr($element["rfolder"],1)."</option>\n";
1461
                    }
1497
                    }
1462
                }
1498
                }
1463
                $show .= "</select>";
1499
                $show .= "</select>";
1464
                break;
1500
                break;
1465
        }
1501
        }
1466
        return $show;
1502
        return $show;
1467
    }
1503
    }
1468
1504
1469
    /**
1505
    /**
1470
     * Добавление нового корневого каталога
1506
     * Добавление нового корневого каталога
1471
     *
1507
     *
1472
     * @author Alexander Wolf
1508
     * @author Alexander Wolf
1473
     * @category Core
1509
     * @category Core
1474
     *
1510
     *
1475
     * @param string $flder
1511
     * @param string $flder
1476
     * @return array
1512
     * @return array
1477
     */
1513
     */
1478
    public function addFolder($folder) {
1514
    public function addFolder($folder) {
1479
        $result = array();
1515
        $result = array();
1480
        $sFolder = $this->secure->checkStr($folder);
1516
        $sFolder = $this->secure->checkStr($folder);
1481
1517
1482
        $query = "INSERT INTO ".$this->prefix."repfolder SET rfolder='".$sFolder."'";
1518
        $query = "INSERT INTO ".$this->prefix."repfolder SET rfolder='".$sFolder."'";
1483
        $rq =& $this->db->query($query);
1519
        $rq =& $this->db->query($query);
1484
        if (PEAR::isError($this->db)) {
1520
        if (PEAR::isError($this->db)) {
1485
            $result["ERR"] = 1;
1521
            $result["ERR"] = 1;
1486
            $result["ERRINFO"] = $this->db->getMessage();
1522
            $result["ERRINFO"] = $this->db->getMessage();
1487
        } else {
1523
        } else {
1488
            $result["ERR"] = 0;
1524
            $result["ERR"] = 0;
1489
        }
1525
        }
1490
1526
1491
        return $result;
1527
        return $result;
1492
    }
1528
    }
1493
1529
1494
    /**
1530
    /**
1495
     * Удаление информации о корневой папке
1531
     * Удаление информации о корневой папке
1496
     *
1532
     *
1497
     * @author Alexander Wolf
1533
     * @author Alexander Wolf
1498
     * @category Core
1534
     * @category Core
1499
     *
1535
     *
1500
     * @param integer $folderID
1536
     * @param integer $folderID
1501
     * @return array
1537
     * @return array
1502
     */
1538
     */
1503
    public function dropFolder($folderID) {
1539
    public function dropFolder($folderID) {
1504
        $result = array();
1540
        $result = array();
1505
        $sFolderID    = $this->secure->checkInt($folderID);
1541
        $sFolderID    = $this->secure->checkInt($folderID);
1506
1542
1507
        // Удаление корневой папки
1543
        // Удаление корневой папки
1508
        $query = "DELETE FROM ".$this->prefix."repfolder WHERE rfolder_id='".$sFolderID."'";
1544
        $query = "DELETE FROM ".$this->prefix."repfolder WHERE rfolder_id='".$sFolderID."'";
1509
        $rq =& $this->db->query($query);
1545
        $rq =& $this->db->query($query);
1510
        if (PEAR::isError($this->db)) {
1546
        if (PEAR::isError($this->db)) {
1511
            $result["ERR"] = 1;
1547
            $result["ERR"] = 1;
1512
            $result["ERRINFO"] = $this->db->getMessage();
1548
            $result["ERRINFO"] = $this->db->getMessage();
1513
        } else {
1549
        } else {
1514
            $result["ERR"] = 0;
1550
            $result["ERR"] = 0;
1515
        }
1551
        }
1516
1552
1517
        return $result;
1553
        return $result;
1518
    }
1554
    }
1519
1555
1520
    /**
1556
    /**
1521
     * Обновление информации о корневой папки
1557
     * Обновление информации о корневой папки
1522
     *
1558
     *
1523
     * @author Alexander Wolf
1559
     * @author Alexander Wolf
1524
     * @category Core
1560
     * @category Core
1525
     *
1561
     *
1526
     * @param integer $folderID
1562
     * @param integer $folderID
1527
     * @param string $info
1563
     * @param string $info
1528
     * @return array
1564
     * @return array
1529
     */
1565
     */
1530
    public function updateFolder($folderID, $info) {
1566
    public function updateFolder($folderID, $info) {
1531
        $result = array();
1567
        $result = array();
1532
        $sFolderID    = $this->secure->checkInt($folderID);
1568
        $sFolderID    = $this->secure->checkInt($folderID);
1533
        $sFolder      = $this->secure->checkStr($info);
1569
        $sFolder      = $this->secure->checkStr($info);
1534
1570
1535
        $query = "UPDATE ".$this->prefix."repfolder SET rfolder='".$sFolder."' WHERE rfolder_id='".$sFolderID."'";
1571
        $query = "UPDATE ".$this->prefix."repfolder SET rfolder='".$sFolder."' WHERE rfolder_id='".$sFolderID."'";
1536
        $rq =& $this->db->query($query);
1572
        $rq =& $this->db->query($query);
1537
        if (PEAR::isError($this->db)) {
1573
        if (PEAR::isError($this->db)) {
1538
            $result["ERR"] = 1;
1574
            $result["ERR"] = 1;
1539
            $result["ERRINFO"] = $this->db->getMessage();
1575
            $result["ERRINFO"] = $this->db->getMessage();
1540
        } else {
1576
        } else {
1541
            $result["ERR"] = 0;
1577
            $result["ERR"] = 0;
1542
        }
1578
        }
1543
1579
1544
        return $result;
1580
        return $result;
1545
    }
1581
    }
1546
1582
1547
    /**
1583
    /**
1548
     * Вывод формы редактирования/добавления корневых папок
1584
     * Вывод формы редактирования/добавления корневых папок
1549
     *
1585
     *
1550
     * @author Alexander Wolf
1586
     * @author Alexander Wolf
1551
     * @category Core
1587
     * @category Core
1552
     *
1588
     *
1553
     * @param integer $folderID
1589
     * @param integer $folderID
1554
     * @param string $info
1590
     * @param string $info
1555
     * @return string
1591
     * @return string
1556
     */
1592
     */
1557
    public function showFolderForm($folderID = 0, $info = "") {
1593
    public function showFolderForm($folderID = 0, $info = "") {
1558
        $sFolderID = $this->secure->checkInt($folderID);
1594
        $sFolderID = $this->secure->checkInt($folderID);
1559
        $sInfo = $this->secure->checkStr($info, 1);
1595
        $sInfo = $this->secure->checkStr($info, 1);
1560
        if ($sInfo == "") {
1596
        if ($sInfo == "") {
1561
            $sInfo = "Корневая папка";
1597
            $sInfo = "Корневая папка";
1562
        }
1598
        }
1563
        if ($sFolderID != 0) {
1599
        if ($sFolderID != 0) {
1564
            // Режим редактирования
1600
            // Режим редактирования
1565
            $query = "SELECT * FROM ".$this->prefix."repfolder WHERE rfolder_id='".$sFolderID."'";
1601
            $query = "SELECT * FROM ".$this->prefix."repfolder WHERE rfolder_id='".$sFolderID."'";
1566
            $rq =& $this->db->query($query);
1602
            $rq =& $this->db->query($query);
1567
            $rq->fetchInto($element);
1603
            $rq->fetchInto($element);
1568
        }
1604
        }
1569
1605
1570
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1606
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1571
        $show .= "<div class='inputbox'><label for='rfolder'>Корневая папка:</label> <input type='text' name='rfolder' id='rfolder' value='".$this->secure->checkStr($element["rfolder"],1)."'></div>\n";
1607
        $show .= "<div class='inputbox'><label for='rfolder'>Корневая папка:</label> <input type='text' name='rfolder' id='rfolder' value='".$this->secure->checkStr($element["rfolder"],1)."'></div>\n";
1572
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1608
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1573
1609
1574
        return $show;
1610
        return $show;
1575
    }
1611
    }
1576
1612
1577
    /**
1613
    /**
1578
     * Показывает список подписей
1614
     * Показывает список подписей
1579
     *
1615
     *
1580
     * @author Alexander Wolf
1616
     * @author Alexander Wolf
1581
     * @category Core
1617
     * @category Core
1582
     *
1618
     *
1583
     * @param string $name
1619
     * @param string $name
1584
     * @param string $actor
1620
     * @param string $actor
1585
     * @param string $format
1621
     * @param string $format
1586
     * @return string
1622
     * @return string
1587
     */
1623
     */
1588
    public function showSignsList($name, $actor, $format = 'list') {
1624
    public function showSignsList($name, $actor, $format = 'list') {
1589
        $query = "SELECT * FROM ".$this->prefix."signs";
1625
        $query = "SELECT * FROM ".$this->prefix."signs";
1590
        $rq =& $this->db->query($query);
1626
        $rq =& $this->db->query($query);
1591
        switch ($format) {
1627
        switch ($format) {
1592
            case 'list':
1628
            case 'list':
1593
                $show = "<ul>\n";
1629
                $show = "<ul>\n";
1594
                while ($rq->fetchInto($element)) {
1630
                while ($rq->fetchInto($element)) {
1595
                    $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";
1631
                    $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";
1596
                }
1632
                }
1597
                $show .= "</ul>";
1633
                $show .= "</ul>";
1598
                break;
1634
                break;
1599
            case 'innerhtml':
1635
            case 'innerhtml':
1600
                $signID = $this->secure->checkInt($actor);
1636
                $signID = $this->secure->checkInt($actor);
1601
                $show  = "<select name='".$name."' id='".$name."'>\n";
1637
                $show  = "<select name='".$name."' id='".$name."'>\n";
1602
                $show .= "<option value='0'>Подписи нет</option>\n";
1638
                $show .= "<option value='0'>Подписи нет</option>\n";
1603
                while ($rq->fetchInto($element)) {
1639
                while ($rq->fetchInto($element)) {
1604
                    if ($element["sign_id"]==$signID) {
1640
                    if ($element["sign_id"]==$signID) {
1605
                        $show .= "<option value='".$this->secure->checkInt($element["sign_id"])."' selected>".$this->secure->checkStr($element["sname"],1)."</option>\n";
1641
                        $show .= "<option value='".$this->secure->checkInt($element["sign_id"])."' selected>".$this->secure->checkStr($element["sname"],1)."</option>\n";
1606
                    } else {
1642
                    } else {
1607
                        $show .= "<option value='".$this->secure->checkInt($element["sign_id"])."'>".$this->secure->checkStr($element["sname"],1)."</option>\n";
1643
                        $show .= "<option value='".$this->secure->checkInt($element["sign_id"])."'>".$this->secure->checkStr($element["sname"],1)."</option>\n";
1608
                    }
1644
                    }
1609
                }
1645
                }
1610
                $show .= "</select>\n";
1646
                $show .= "</select>\n";
1611
                break;
1647
                break;
1612
        }
1648
        }
1613
1649
1614
        return $show;
1650
        return $show;
1615
    }
1651
    }
1616
1652
1617
    /**
1653
    /**
1618
     * Вывод формы редактирования/добавления подписей
1654
     * Вывод формы редактирования/добавления подписей
1619
     *
1655
     *
1620
     * @author Alexander Wolf
1656
     * @author Alexander Wolf
1621
     * @category Core
1657
     * @category Core
1622
     *
1658
     *
1623
     * @param integer $sectionID
1659
     * @param integer $sectionID
1624
     * @param string $info
1660
     * @param string $info
1625
     * @return string
1661
     * @return string
1626
     */
1662
     */
1627
    public function showSignsForm($signID = 0, $info = "") {
1663
    public function showSignsForm($signID = 0, $info = "") {
1628
        $sSignID = $this->secure->checkInt($signID);
1664
        $sSignID = $this->secure->checkInt($signID);
1629
        $sInfo = $this->secure->checkStr($info, 1);
1665
        $sInfo = $this->secure->checkStr($info, 1);
1630
        if ($sInfo == "") {
1666
        if ($sInfo == "") {
1631
            $sInfo = "Подписи";
1667
            $sInfo = "Подписи";
1632
        }
1668
        }
1633
        if ($sSignID != 0) {
1669
        if ($sSignID != 0) {
1634
            // Режим редактирования
1670
            // Режим редактирования
1635
            $query = "SELECT * FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
1671
            $query = "SELECT * FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
1636
            $rq =& $this->db->query($query);
1672
            $rq =& $this->db->query($query);
1637
            $rq->fetchInto($element);
1673
            $rq->fetchInto($element);
1638
        }
1674
        }
1639
1675
1640
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1676
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1641
        $show .= "<div class='inputbox'><label for='sname'>Название подписи:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["sname"],1)."'></div>\n";
1677
        $show .= "<div class='inputbox'><label for='sname'>Название подписи:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["sname"],1)."'></div>\n";
1642
        $show .= "<div class='inputbox'><label for='sinfo'>Описание подписи:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sinfo"],1)."'></div>\n";
1678
        $show .= "<div class='inputbox'><label for='sinfo'>Описание подписи:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sinfo"],1)."'></div>\n";
1643
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1679
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
1644
1680
1645
        return $show;
1681
        return $show;
1646
    }
1682
    }
1647
1683
1648
    /**
1684
    /**
1649
     * Обновление информации о секции
1685
     * Обновление информации о секции
1650
     *
1686
     *
1651
     * @author Alexander Wolf
1687
     * @author Alexander Wolf
1652
     * @category Core
1688
     * @category Core
1653
     *
1689
     *
1654
     * @param integer $sectionID
1690
     * @param integer $sectionID
1655
     * @param string $sname
1691
     * @param string $sname
1656
     * @param string $sinfo
1692
     * @param string $sinfo
1657
     * @return array
1693
     * @return array
1658
     */
1694
     */
1659
    public function updateSign($signID, $sname, $sinfo = "") {
1695
    public function updateSign($signID, $sname, $sinfo = "") {
1660
        $result = array();
1696
        $result = array();
1661
        $sSignID    = $this->secure->checkInt($signID);
1697
        $sSignID    = $this->secure->checkInt($signID);
1662
        $sSName     = $this->secure->checkStr($sname);
1698
        $sSName     = $this->secure->checkStr($sname);
1663
        $sSInfo     = $this->secure->checkStr($sinfo);
1699
        $sSInfo     = $this->secure->checkStr($sinfo);
1664
1700
1665
        $query = "UPDATE ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."' WHERE sign_id='".$sSignID."'";
1701
        $query = "UPDATE ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."' WHERE sign_id='".$sSignID."'";
1666
        $rq =& $this->db->query($query);
1702
        $rq =& $this->db->query($query);
1667
        if (PEAR::isError($this->db)) {
1703
        if (PEAR::isError($this->db)) {
1668
            $result["ERR"] = 1;
1704
            $result["ERR"] = 1;
1669
            $result["ERRINFO"] = $this->db->getMessage();
1705
            $result["ERRINFO"] = $this->db->getMessage();
1670
        } else {
1706
        } else {
1671
            $result["ERR"] = 0;
1707
            $result["ERR"] = 0;
1672
        }
1708
        }
1673
1709
1674
        return $result;
1710
        return $result;
1675
    }
1711
    }
1676
1712
1677
    /**
1713
    /**
1678
     * Удаление информации о подписи
1714
     * Удаление информации о подписи
1679
     *
1715
     *
1680
     * @author Alexander Wolf
1716
     * @author Alexander Wolf
1681
     * @category Core
1717
     * @category Core
1682
     *
1718
     *
1683
     * @param integer $sectionID
1719
     * @param integer $sectionID
1684
     * @return array
1720
     * @return array
1685
     */
1721
     */
1686
    public function dropSign($signID) {
1722
    public function dropSign($signID) {
1687
        $result = array();
1723
        $result = array();
1688
        $sSignID    = $this->secure->checkInt($signID);
1724
        $sSignID    = $this->secure->checkInt($signID);
1689
1725
1690
        // Удаление подписи
1726
        // Удаление подписи
1691
        $query = "DELETE FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
1727
        $query = "DELETE FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
1692
        $rq =& $this->db->query($query);
1728
        $rq =& $this->db->query($query);
1693
        if (PEAR::isError($this->db)) {
1729
        if (PEAR::isError($this->db)) {
1694
            $result["ERR"] = 1;
1730
            $result["ERR"] = 1;
1695
            $result["ERRINFO"] = $this->db->getMessage();
1731
            $result["ERRINFO"] = $this->db->getMessage();
1696
        } else {
1732
        } else {
1697
            $result["ERR"] = 0;
1733
            $result["ERR"] = 0;
1698
        }
1734
        }
1699
1735
1700
        return $result;
1736
        return $result;
1701
    }
1737
    }
1702
1738
1703
    /**
1739
    /**
1704
     * Добавление новой подписи
1740
     * Добавление новой подписи
1705
     *
1741
     *
1706
     * @author Alexander Wolf
1742
     * @author Alexander Wolf
1707
     * @category Core
1743
     * @category Core
1708
     *
1744
     *
1709
     * @param string $sname
1745
     * @param string $sname
1710
     * @param string $sinfo
1746
     * @param string $sinfo
1711
     * @return array
1747
     * @return array
1712
     */
1748
     */
1713
    public function addSign($sname, $sinfo = "") {
1749
    public function addSign($sname, $sinfo = "") {
1714
        $result = array();
1750
        $result = array();
1715
        $sSName = $this->secure->checkStr($sname);
1751
        $sSName = $this->secure->checkStr($sname);
1716
        $sSInfo = $this->secure->checkStr($sinfo);
1752
        $sSInfo = $this->secure->checkStr($sinfo);
1717
1753
1718
        $query = "INSERT INTO ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."'";
1754
        $query = "INSERT INTO ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."'";
1719
        $rq =& $this->db->query($query);
1755
        $rq =& $this->db->query($query);
1720
        if (PEAR::isError($this->db)) {
1756
        if (PEAR::isError($this->db)) {
1721
            $result["ERR"] = 1;
1757
            $result["ERR"] = 1;
1722
            $result["ERRINFO"] = $this->db->getMessage();
1758
            $result["ERRINFO"] = $this->db->getMessage();
1723
        } else {
1759
        } else {
1724
            $result["ERR"] = 0;
1760
            $result["ERR"] = 0;
1725
        }
1761
        }
1726
1762
1727
        return $result;
1763
        return $result;
1728
    }
1764
    }
1729
   
1765
   
1730
    /**
1766
    /**
1731
     * Проверка пароля (из формы авторизации)
1767
     * Проверка пароля (из формы авторизации)
1732
     *
1768
     *
1733
     * @author Alexander Wolf
1769
     * @author Alexander Wolf
1734
     * @category Core
1770
     * @category Core
1735
     *
1771
     *
1736
     * @param string $word
1772
     * @param string $word
1737
     * @return array
1773
     * @return array
1738
     */
1774
     */
1739
    public function checkSign($word) {
1775
    public function checkSign($word) {
1740
        $result = array();
1776
        $result = array();
1741
1777
1742
        $sHash = $this->secure->encryptStr($word);
1778
        $sHash = $this->secure->encryptStr($word);
1743
        $pwd   = $this->getOption("passwd");
1779
        $pwd   = $this->getOption("passwd");
1744
        if ($sHash == $pwd["OptValue"]) {
1780
        if ($sHash == $pwd["OptValue"]) {
1745
            $result["ERR"] = 0;
1781
            $result["ERR"] = 0;
1746
            $result["Location"] = "manager.php";
1782
            $result["Location"] = "manager.php";
1747
            setcookie($this->cookie, $sHash);
1783
            setcookie($this->cookie, $sHash);
1748
        } else {
1784
        } else {
1749
            $result["ERR"] = 1;
1785
            $result["ERR"] = 1;
1750
            $result["ERRINFO"] = "Password not valid";
1786
            $result["ERRINFO"] = "Password not valid";
1751
            $result["Location"] = "manager.php?error=1";
1787
            $result["Location"] = "manager.php?error=1";
1752
        }
1788
        }
1753
1789
1754
        return $result;
1790
        return $result;
1755
    }
1791
    }
1756
1792
1757
    /**
1793
    /**
1758
     * Проверка пароля (из cookies)
1794
     * Проверка пароля (из cookies)
1759
     *
1795
     *
1760
     * @author Alexander Wolf
1796
     * @author Alexander Wolf
1761
     * @category Core
1797
     * @category Core
1762
     *
1798
     *
1763
     * @param string $hash
1799
     * @param string $hash
1764
     * @return array
1800
     * @return array
1765
     */
1801
     */
1766
    public function checkCookieSign($hash) {
1802
    public function checkCookieSign($hash) {
1767
        $result = array();
1803
        $result = array();
1768
1804
1769
        $pwd = $this->getOption("passwd");
1805
        $pwd = $this->getOption("passwd");
1770
        if ($hash == $pwd["OptValue"]) {
1806
        if ($hash == $pwd["OptValue"]) {
1771
            $result["ERR"] = 0;
1807
            $result["ERR"] = 0;
1772
        } else {
1808
        } else {
1773
            $result["ERR"] = 1;
1809
            $result["ERR"] = 1;
1774
            $result["ERRINFO"] = "Hash not valid";
1810
            $result["ERRINFO"] = "Hash not valid";
1775
            $result["Location"] = "manager.php";
1811
            $result["Location"] = "manager.php";
1776
        }
1812
        }
1777
1813
1778
        return $result;
1814
        return $result;
1779
    }
1815
    }
1780
1816
1781
    /**
1817
    /**
1782
     * Форма ввода пароля
1818
     * Форма ввода пароля
1783
     *
1819
     *
1784
     * @author Alexander Wolf
1820
     * @author Alexander Wolf
1785
     * @category Core
1821
     * @category Core
1786
     *
1822
     *
1787
     * @return string
1823
     * @return string
1788
     */
1824
     */
1789
    public function showSigninForm() {
1825
    public function showSigninForm() {
1790
        $show  = "<div id='regform'>";
1826
        $show  = "<div id='regform'>";
1791
        $show .= "<form action='process.php' method='post'>\n";
1827
        $show .= "<form action='process.php' method='post'>\n";
1792
        $show .= "<fieldset><legend>Пароль</legend>\n";
1828
        $show .= "<fieldset><legend>Пароль</legend>\n";
1793
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
1829
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
1794
        $show .= "<input type='password' name='word' value=''>\n";
1830
        $show .= "<input type='password' name='word' value=''>\n";
1795
        $show .= "<input type='submit' value=' Войти '>\n";
1831
        $show .= "<input type='submit' value=' Войти '>\n";
1796
        $show .= "</fieldset>\n</form></div>\n";
1832
        $show .= "</fieldset>\n</form></div>\n";
1797
1833
1798
        return $show;
1834
        return $show;
1799
    }
1835
    }
1800
1836
1801
    /**
1837
    /**
1802
     * Обновление пароля
1838
     * Обновление пароля
1803
     *
1839
     *
1804
     * @author Alexander Wolf
1840
     * @author Alexander Wolf
1805
     * @category Core
1841
     * @category Core
1806
     *
1842
     *
1807
     * @param string $word1
1843
     * @param string $word1
1808
     * @param string $word2
1844
     * @param string $word2
1809
     * @return array
1845
     * @return array
1810
     */
1846
     */
1811
    public function updatePassword($word1, $word2) {
1847
    public function updatePassword($word1, $word2) {
1812
        $result = array();
1848
        $result = array();
1813
1849
1814
        if ($word1 == $word2) {
1850
        if ($word1 == $word2) {
1815
            $sWord = $this->secure->encryptStr($word1);
1851
            $sWord = $this->secure->encryptStr($word1);
1816
            $r = $this->setOption("passwd", $sWord);
1852
            $r = $this->setOption("passwd", $sWord);
1817
            $result = $r;
1853
            $result = $r;
1818
        } else {
1854
        } else {
1819
            $result["ERR"] = 1;
1855
            $result["ERR"] = 1;
1820
            $result["ERRINFO"] = "Passwords is mismatch";
1856
            $result["ERRINFO"] = "Passwords is mismatch";
1821
        }
1857
        }
1822
1858
1823
        return $result;
1859
        return $result;
1824
    }
1860
    }
1825
1861
1826
    /**
1862
    /**
1827
     * Отображение формы создания и редактирования версии apt-дистрибутива
1863
     * Отображение формы создания и редактирования версии apt-дистрибутива
1828
     *
1864
     *
1829
     * @author Alexander Wolf
1865
     * @author Alexander Wolf
1830
     * @category Core
1866
     * @category Core
1831
     *
1867
     *
1832
     * @param string $name
1868
     * @param string $name
1833
     * @param string $actor
1869
     * @param string $actor
1834
     * @param integer $versionID
1870
     * @param integer $versionID
1835
     * @return string
1871
     * @return string
1836
     */
1872
     */
1837
    public function showDistVersionsForm($versionID = 0, $info = '') {
1873
    public function showDistVersionsForm($versionID = 0, $info = '') {
1838
        $sVersionID = $this->secure->checkInt($versionID);
1874
        $sVersionID = $this->secure->checkInt($versionID);
1839
        $sInfo = $this->secure->checkStr($info, 1);
1875
        $sInfo = $this->secure->checkStr($info, 1);
1840
        if ($sInfo == "") {
1876
        if ($sInfo == "") {
1841
            $sInfo = "Версия дистрибутива";
1877
            $sInfo = "Версия дистрибутива";
1842
        }
1878
        }
1843
        if ($sVersionID != 0) {
1879
        if ($sVersionID != 0) {
1844
            // Режим редактирования
1880
            // Режим редактирования
1845
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$sVersionID."'";
1881
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$sVersionID."'";
1846
            $rq =& $this->db->query($query);
1882
            $rq =& $this->db->query($query);
1847
            $rq->fetchInto($element);
1883
            $rq->fetchInto($element);
1848
        }
1884
        }
1849
 
1885
 
1850
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1886
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1851
        if ($sVersionID != 0) {
1887
        if ($sVersionID != 0) {
1852
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
1888
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
1853
        } else {
1889
        } else {
1854
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
1890
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
1855
        }
1891
        }
1856
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
1892
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
1857
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
1893
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
1858
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
1894
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
1859
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
1895
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
1860
1896
1861
        return $show;
1897
        return $show;
1862
    }    
1898
    }    
1863
1899
1864
    /**
1900
    /**
1865
     * Парсер схемы адреса репозитория
1901
     * Парсер схемы адреса репозитория
1866
     * FIXME Возможно не потребуется
1902
     * FIXME Возможно не потребуется
1867
     *
1903
     *
1868
     * @author Alexander Wolf
1904
     * @author Alexander Wolf
1869
     * @category Core
1905
     * @category Core
1870
     *
1906
     *
1871
     * @param string $repstring
1907
     * @param string $repstring
1872
     * @return integer
1908
     * @return integer
1873
     */
1909
     */
1874
    public function repositoryParser($repstring) {
1910
    public function repositoryParser($repstring) {
1875
        $tokens = array();
1911
        $tokens = array();
1876
        $sections = array();
1912
        $sections = array();
1877
        $tokens = split(" ",$repstring);
1913
        $tokens = split(" ",$repstring);
1878
1914
1879
        if ($tokens[0] == "deb") {
1915
        if ($tokens[0] == "deb") {
1880
            // debian/ubuntu репозиторий "type proto://host/folder distr sections"
1916
            // debian/ubuntu репозиторий "type proto://host/folder distr sections"
1881
            $url = parse_url($tokens[1]);
1917
            $url = parse_url($tokens[1]);
1882
            $distr  = $tokens[2];
1918
            $distr  = $tokens[2];
1883
1919
1884
            for($i=3;$i<count($tokens);$i++) {
1920
            for($i=3;$i<count($tokens);$i++) {
1885
                $sections[] = $tokens[$i];
1921
                $sections[] = $tokens[$i];
1886
            }
1922
            }
1887
        } else {
1923
        } else {
1888
            // altlinux репозиторий "type [sign] proto://host/folder base repname"
1924
            // altlinux репозиторий "type [sign] proto://host/folder base repname"
1889
            if (stripos($tokens[1],"]")!=0) {
1925
            if (stripos($tokens[1],"]")!=0) {
1890
                $sign = $tokens[1];
1926
                $sign = $tokens[1];
1891
                $url = parse_url($tokens[2]);
1927
                $url = parse_url($tokens[2]);
1892
                $base = $tokens[3];
1928
                $base = $tokens[3];
1893
                $repname = $tokens[4];
1929
                $repname = $tokens[4];
1894
            } else {
1930
            } else {
1895
                $url = parse_url($tokens[1]);
1931
                $url = parse_url($tokens[1]);
1896
                $base = $tokens[2];
1932
                $base = $tokens[2];
1897
                $repname = $tokens[3];
1933
                $repname = $tokens[3];
1898
            }
1934
            }
1899
        }
1935
        }
1900
1936
1901
        $proto      = $url["scheme"]."://";
1937
        $proto      = $url["scheme"]."://";
1902
        $addr       = $url["host"];
1938
        $addr       = $url["host"];
1903
        if ($url["port"]!="") {
1939
        if ($url["port"]!="") {
1904
            $addr .= ":".$url["port"];
1940
            $addr .= ":".$url["port"];
1905
        }
1941
        }
1906
        $path       = $url["path"];
1942
        $path       = $url["path"];
1907
1943
1908
        return 0;
1944
        return 0;
1909
    }
1945
    }
1910
1946
1911
    /**
1947
    /**
1912
     * Выгрузка картинок логотипов дистрибутивов
1948
     * Выгрузка картинок логотипов дистрибутивов
1913
     *
1949
     *
1914
     * @author Alexander Wolf
1950
     * @author Alexander Wolf
1915
     * @category Core
1951
     * @category Core
1916
     *
1952
     *
1917
     * @param string $path
1953
     * @param string $path
1918
     * @param string $dist
1954
     * @param string $dist
1919
     * @param array $datafile
1955
     * @param array $datafile
1920
     * @return integer
1956
     * @return integer
1921
     */
1957
     */
1922
    public function uploadPicture($path, $dist, $datafile) {
1958
    public function uploadPicture($path, $dist, $datafile) {
1923
        $folder   = $path.$dist."-orig.png";
1959
        $folder   = $path.$dist."-orig.png";
1924
        $folderN  = $path.$dist.".png";
1960
        $folderN  = $path.$dist.".png";
1925
        $folderEM = $path.$dist."-em.png";
1961
        $folderEM = $path.$dist."-em.png";
1926
1962
1927
        $distlogo = 0;
1963
        $distlogo = 0;
1928
        if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
1964
        if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
1929
            chmod($folder, 0644);
1965
            chmod($folder, 0644);
1930
            list($width, $height) = GetImageSize($folder);
1966
            list($width, $height) = GetImageSize($folder);
1931
            $percent = 32/$height;
1967
            $percent = 32/$height;
1932
            $newwidth = $width * $percent;
1968
            $newwidth = $width * $percent;
1933
            $newheight = $height * $percent;
1969
            $newheight = $height * $percent;
1934
1970
1935
            $output = ImageCreateTrueColor($newwidth, $newheight);
1971
            $output = ImageCreateTrueColor($newwidth, $newheight);
1936
            $source = ImageCreateFromPNG($folder);
1972
            $source = ImageCreateFromPNG($folder);
1937
1973
1938
            ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1974
            ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1939
            ImagePNG($output, $folderEM);
1975
            ImagePNG($output, $folderEM);
1940
1976
1941
            $percent = 15/$height;
1977
            $percent = 15/$height;
1942
            $newwidth = $width * $percent;
1978
            $newwidth = $width * $percent;
1943
            $newheight = $height * $percent;
1979
            $newheight = $height * $percent;
1944
1980
1945
            $output = ImageCreateTrueColor($newwidth, $newheight);
1981
            $output = ImageCreateTrueColor($newwidth, $newheight);
1946
1982
1947
            ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1983
            ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1948
            ImagePNG($output, $folderN);
1984
            ImagePNG($output, $folderN);
1949
1985
1950
            unlink($folder);
1986
            unlink($folder);
1951
            $distlogo = 1;
1987
            $distlogo = 1;
1952
        }
1988
        }
1953
        return $distlogo;
1989
        return $distlogo;
1954
    }
1990
    }
1955
1991
1956
    /**
1992
    /**
1957
     * Показ списка репозиториев
1993
     * Показ списка репозиториев
1958
     *
1994
     *
1959
     * @author Alexander Wolf
1995
     * @author Alexander Wolf
1960
     * @category Core
1996
     * @category Core
1961
     *
1997
     *
1962
     * @param string $name
1998
     * @param string $name
1963
     * @param string $actor
1999
     * @param string $actor
1964
     * @param string $format
2000
     * @param string $format
1965
     * @return string
2001
     * @return string
1966
     */
2002
     */
1967
    public function showRepositoriesList($name, $actor, $format = 'list') {
2003
    public function showRepositoriesList($name, $actor, $format = 'list') {
1968
        $query  = "SELECT r.*,rt.*,v.version_id,CONCAT(d.distname,' ',v.version,' &#8220;',v.vname,'&#8221;') AS fullname FROM ".$this->prefix."repository r ";
2004
        $query  = "SELECT r.*,rt.*,v.version_id,CONCAT(d.distname,' ',v.version,' &#8220;',v.vname,'&#8221;') AS fullname FROM ".$this->prefix."repository r ";
1969
        $query .= "JOIN ".$this->prefix."rtype rt ON rt.rtype_id=r.rtype_id ";
2005
        $query .= "JOIN ".$this->prefix."rtype rt ON rt.rtype_id=r.rtype_id ";
1970
        $query .= "JOIN ".$this->prefix."version v ON v.version_id=r.version ";
2006
        $query .= "JOIN ".$this->prefix."version v ON v.version_id=r.version ";
1971
        $query .= "JOIN ".$this->prefix."distribution d ON d.dist_id=v.dist_id ";
2007
        $query .= "JOIN ".$this->prefix."distribution d ON d.dist_id=v.dist_id ";
1972
        $query .= "ORDER BY v.version_id,r.rep_id ASC";
2008
        $query .= "ORDER BY v.version_id,r.rep_id ASC";
1973
        $rq =& $this->db->query($query);
2009
        $rq =& $this->db->query($query);
1974
        $show = "<ul><li class='nomarker'></li>";
2010
        $show = "<ul><li class='nomarker'></li>";
1975
        $splitter = 0;
2011
        $splitter = 0;
1976
        while ($rq->fetchInto($element)) {
2012
        while ($rq->fetchInto($element)) {
1977
            if ($splitter != $this->secure->checkInt($element["version_id"])) {
2013
            if ($splitter != $this->secure->checkInt($element["version_id"])) {
1978
                $splitter = $this->secure->checkInt($element["version_id"]);
2014
                $splitter = $this->secure->checkInt($element["version_id"]);
1979
                $show .= "</ul><ul><li class='nomarker'><strong>Репозитории для ".$this->secure->checkStr($element["fullname"],1)."</strong></li>";
2015
                $show .= "</ul><ul><li class='nomarker'><strong>Репозитории для ".$this->secure->checkStr($element["fullname"],1)."</strong></li>";
1980
            }
2016
            }
1981
            $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)." (<em>".$this->secure->checkStr($element["rtype"],1)."</em>)</li>\n";
2017
            $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)." (<em>".$this->secure->checkStr($element["rtype"],1)."</em>)</li>\n";
1982
        }
2018
        }
1983
        $show .= "</ul>";
2019
        $show .= "</ul>";
1984
        return $show;
2020
        return $show;
1985
    }
2021
    }
1986
2022
1987
    /**
2023
    /**
1988
     * Вывод списка типов репозиториев
2024
     * Вывод списка типов репозиториев
1989
     *
2025
     *
1990
     * @author Alexander Wolf
2026
     * @author Alexander Wolf
1991
     * @category Core
2027
     * @category Core
1992
     *
2028
     *
1993
     * @param integer $reptype
2029
     * @param integer $reptype
1994
     * @param string $name
2030
     * @param string $name
1995
     * @return string
2031
     * @return string
1996
     */
2032
     */
1997
    public function showRepType($reptype = 0, $name = "") {
2033
    public function showRepType($reptype = 0, $name = "") {
1998
        $sRT = $this->secure->checkInt($reptype);
2034
        $sRT = $this->secure->checkInt($reptype);
1999
        $sNM = $this->secure->checkStr($name,1);
2035
        $sNM = $this->secure->checkStr($name,1);
2000
        $query = "SELECT * FROM ".$this->prefix."rtype";
2036
        $query = "SELECT * FROM ".$this->prefix."rtype";
2001
        $rq =& $this->db->query($query);
2037
        $rq =& $this->db->query($query);
2002
        $show = "<select name='".$sNM."' id='".$sNM."'>\n";
2038
        $show = "<select name='".$sNM."' id='".$sNM."'>\n";
2003
        while ($rq->fetchInto($element)) {
2039
        while ($rq->fetchInto($element)) {
2004
            if ($element["rtype_id"]==$sRT) {
2040
            if ($element["rtype_id"]==$sRT) {
2005
                $show .= "<option value='".$this->secure->checkInt($element["rtype_id"])."' selected>".$this->secure->checkStr($element["rtype"],1)."</option>\n";
2041
                $show .= "<option value='".$this->secure->checkInt($element["rtype_id"])."' selected>".$this->secure->checkStr($element["rtype"],1)."</option>\n";
2006
            } else {
2042
            } else {
2007
                $show .= "<option value='".$this->secure->checkInt($element["rtype_id"])."'>".$this->secure->checkStr($element["rtype"],1)."</option>\n";
2043
                $show .= "<option value='".$this->secure->checkInt($element["rtype_id"])."'>".$this->secure->checkStr($element["rtype"],1)."</option>\n";
2008
            }
2044
            }
2009
        }
2045
        }
2010
        $show .= "</select>";
2046
        $show .= "</select>";
2011
2047
2012
        return $show;
2048
        return $show;
2013
    }
2049
    }
2014
2050
2015
    /**
2051
    /**
2016
     * Вывод списка версий дистрибутивов
2052
     * Вывод списка версий дистрибутивов
2017
     *
2053
     *
2018
     * @author Alexander Wolf
2054
     * @author Alexander Wolf
2019
     * @category Core
2055
     * @category Core
2020
     *
2056
     *
2021
     * @param string $name
2057
     * @param string $name
2022
     * @param integer $versionID
2058
     * @param integer $versionID
2023
     * @return string
2059
     * @return string
2024
     */
2060
     */
2025
    public function showVDList($name, $versionID = 0) {
2061
    public function showVDList($name, $versionID = 0) {
2026
        $query  = "SELECT v.version_id, CONCAT(d.distname, ' ', v.version, ' ', v.vname) AS fullname FROM ".$this->prefix."version v ";
2062
        $query  = "SELECT v.version_id, CONCAT(d.distname, ' ', v.version, ' ', v.vname) AS fullname FROM ".$this->prefix."version v ";
2027
        $query .= "JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id";
2063
        $query .= "JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id";
2028
        $rq =& $this->db->query($query);
2064
        $rq =& $this->db->query($query);
2029
        $show = "<select name='".$name."' id='".$name."'>\n";
2065
        $show = "<select name='".$name."' id='".$name."'>\n";
2030
        while ($rq->fetchInto($element)) {
2066
        while ($rq->fetchInto($element)) {
2031
            if ($element["version_id"]==$versionID) {
2067
            if ($element["version_id"]==$versionID) {
2032
                $show .= "<option value='".$this->secure->checkInt($element["version_id"])."' selected>".$this->secure->checkStr($element["fullname"],1)."</option>\n";
2068
                $show .= "<option value='".$this->secure->checkInt($element["version_id"])."' selected>".$this->secure->checkStr($element["fullname"],1)."</option>\n";
2033
            } else {
2069
            } else {
2034
                $show .= "<option value='".$this->secure->checkInt($element["version_id"])."'>".$this->secure->checkStr($element["fullname"],1)."</option>\n";
2070
                $show .= "<option value='".$this->secure->checkInt($element["version_id"])."'>".$this->secure->checkStr($element["fullname"],1)."</option>\n";
2035
            }
2071
            }
2036
        }
2072
        }
2037
        $show .= "</select>";
2073
        $show .= "</select>";
2038
        return $show;
2074
        return $show;
2039
    }
2075
    }
2040
2076
2041
    /**
2077
    /**
2042
     * Форма создания/редактирвоания репозиториев
2078
     * Форма создания/редактирвоания репозиториев
2043
     *
2079
     *
2044
     * @author Alexander Wolf
2080
     * @author Alexander Wolf
2045
     * @category Core
2081
     * @category Core
2046
     *
2082
     *
2047
     * @param integer $repID
2083
     * @param integer $repID
2048
     * @param string $info
2084
     * @param string $info
2049
     * @param string $reptype
2085
     * @param string $reptype
2050
     * @return string
2086
     * @return string
2051
     */
2087
     */
2052
    public function showRepositoriesForm($repID = 0, $info = "") {
2088
    public function showRepositoriesForm($repID = 0, $info = "") {
2053
        $sRepID = $this->secure->checkInt($repID);
2089
        $sRepID = $this->secure->checkInt($repID);
2054
        $sInfo  = $this->secure->checkStr($info, 1);        
2090
        $sInfo  = $this->secure->checkStr($info, 1);        
2055
        if ($sInfo == "") {
2091
        if ($sInfo == "") {
2056
            $sInfo = "Репозиторий";
2092
            $sInfo = "Репозиторий";
2057
        }
2093
        }
2058
        if ($sRepID != 0) {
2094
        if ($sRepID != 0) {
2059
            // Режим редактирования
2095
            // Режим редактирования
2060
            $query  = "SELECT r.*,v.*,d.dist_id,dt.type FROM ".$this->prefix."repository r ";
2096
            $query  = "SELECT r.*,v.*,d.dist_id,dt.type FROM ".$this->prefix."repository r ";
2061
            $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
2097
            $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
2062
            $query .= "JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id ";
2098
            $query .= "JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id ";
2063
            $query .= "JOIN ".$this->prefix."dtype dt ON d.disttype=dt.type_id ";
2099
            $query .= "JOIN ".$this->prefix."dtype dt ON d.disttype=dt.type_id ";
2064
            $query .= "WHERE r.rep_id='".$sRepID."'";
2100
            $query .= "WHERE r.rep_id='".$sRepID."'";
2065
            $rq =& $this->db->query($query);
2101
            $rq =& $this->db->query($query);
2066
            $rq->fetchInto($element);            
2102
            $rq->fetchInto($element);            
2067
        }
2103
        }
2068
2104
2069
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";        
2105
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";        
2070
        $show .= "<div class='inputbox'><label for='rdist'>Дистрибутив:</label> ".$this->showVDList("rdist",$this->secure->checkInt($element["version_id"]),"innerhtml")."</div>\n";
2106
        $show .= "<div class='inputbox'><label for='rdist'>Дистрибутив:</label> ".$this->showVDList("rdist",$this->secure->checkInt($element["version_id"]),"innerhtml")."</div>\n";
2071
        $show .= "<div class='inputbox'><label for='rname'>Название репозитория:</label> <input type='text' name='rname' value=\"".$this->secure->checkStr($element["repname"],1)."\"></div>\n";
2107
        $show .= "<div class='inputbox'><label for='rname'>Название репозитория:</label> <input type='text' name='rname' value=\"".$this->secure->checkStr($element["repname"],1)."\"></div>\n";
2072
        $show .= "<div class='inputbox'><label for='rinfo'>Описание репозитория:</label> <input type='text' name='rinfo' value=\"".$this->secure->checkStr($element["repinfo"],1)."\"></div>\n";
2108
        $show .= "<div class='inputbox'><label for='rinfo'>Описание репозитория:</label> <input type='text' name='rinfo' value=\"".$this->secure->checkStr($element["repinfo"],1)."\"></div>\n";
2073
        $show .= "<div class='inputbox'><label for='rkey'>Ключ подписи репозитория:</label> <input type='text' name='rkey' value=\"".$this->secure->checkStr($element["repkey"],1)."\"></div>\n";
2109
        $show .= "<div class='inputbox'><label for='rkey'>Ключ подписи репозитория:</label> <input type='text' name='rkey' value=\"".$this->secure->checkStr($element["repkey"],1)."\"></div>\n";
2074
        $show .= "<div class='inputbox'><label for='rproto'>Протокол доступа:</label> ".$this->showProtoList("rproto",$this->secure->checkInt($element["proto_id"]),"innerhtml")."</div>\n";
2110
        $show .= "<div class='inputbox'><label for='rproto'>Протокол доступа:</label> ".$this->showProtoList("rproto",$this->secure->checkInt($element["proto_id"]),"innerhtml")."</div>\n";
2075
        $show .= "<div class='inputbox'><label for='rhost'>Хост репозитория:</label> ".$this->showHostsList("rhost",$this->secure->checkInt($element["rhost_id"]),"innerhtml")."</div>\n";
2111
        $show .= "<div class='inputbox'><label for='rhost'>Хост репозитория:</label> ".$this->showHostsList("rhost",$this->secure->checkInt($element["rhost_id"]),"innerhtml")."</div>\n";
2076
        $show .= "<div class='inputbox'><label for='rfolder'>Корневая папка:</label> ".$this->showFoldersList("rfolder",$this->secure->checkInt($element["rfolder_id"]),"innerhtml")."</div>\n";
2112
        $show .= "<div class='inputbox'><label for='rfolder'>Корневая папка:</label> ".$this->showFoldersList("rfolder",$this->secure->checkInt($element["rfolder_id"]),"innerhtml")."</div>\n";
2077
        $show .= "<div class='inputbox'><label for='rtype'>Тип репозитория:</label> ".$this->showRepType($this->secure->checkInt($element["rtype_id"]), "rtype")."</div>\n";
2113
        $show .= "<div class='inputbox'><label for='rtype'>Тип репозитория:</label> ".$this->showRepType($this->secure->checkInt($element["rtype_id"]), "rtype")."</div>\n";
2078
        $show .= "<div class='inputbox'><label for='rsects'>Секции репозитория:</label> <div class='formwrapper'>".$this->showSectionsList("rsects",$sRepID,"innerhtml")."</div></div>\n";
2114
        $show .= "<div class='inputbox'><label for='rsects'>Секции репозитория:</label> <div class='formwrapper'>".$this->showSectionsList("rsects",$sRepID,"innerhtml")."</div></div>\n";
2079
        $show .= "<div class='inputbox'><label for='rarchs'>Архитектуры:</label> <div class='formwrapper'>".$this->showArchList("rarchs",$sRepID,"innerhtml")."</div></div>\n";
2115
        $show .= "<div class='inputbox'><label for='rarchs'>Архитектуры:</label> <div class='formwrapper'>".$this->showArchList("rarchs",$sRepID,"innerhtml")."</div></div>\n";
2080
        $show .= "<div class='inputbox'><label for='rscheme'>Схема репозитория:</label> ".$this->showSchemeList("rscheme",$this->secure->checkInt($element["scheme_id"]),"innerhtml")."</div>\n";
2116
        $show .= "<div class='inputbox'><label for='rscheme'>Схема репозитория:</label> ".$this->showSchemeList("rscheme",$this->secure->checkInt($element["scheme_id"]),"innerhtml")."</div>\n";
2081
        $show .= "<div class='inputbox'><label for='rsign'>Подпись репозитория:</label> ".$this->showSignsList("rsign",$this->secure->checkInt($element["sign_id"]),"innerhtml")."</div>\n";
2117
        $show .= "<div class='inputbox'><label for='rsign'>Подпись репозитория:</label> ".$this->showSignsList("rsign",$this->secure->checkInt($element["sign_id"]),"innerhtml")."</div>\n";
2082
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
2118
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
2083
       
2119
       
2084
        return $show;
2120
        return $show;
2085
    }
2121
    }
2086
2122
2087
    /**
2123
    /**
2088
     * Добавление нового репозитория
2124
     * Добавление нового репозитория
2089
     *
2125
     *
2090
     * @author Alexander Wolf
2126
     * @author Alexander Wolf
2091
     * @category Core
2127
     * @category Core
2092
     *
2128
     *
2093
     * @param integer $verionID
2129
     * @param integer $verionID
2094
     * @param string $rname
2130
     * @param string $rname
2095
     * @param string $rinfo
2131
     * @param string $rinfo
2096
     * @param string $rkey
2132
     * @param string $rkey
2097
     * @param integer $proto
2133
     * @param integer $proto
2098
     * @param integer $rhost
2134
     * @param integer $rhost
2099
     * @param integer $rfolder
2135
     * @param integer $rfolder
2100
     * @param integer $rtype
2136
     * @param integer $rtype
2101
     * @param array $sections
2137
     * @param array $sections
2102
     * @param array $arch
2138
     * @param array $arch
2103
     * @param integer $scheme
2139
     * @param integer $scheme
2104
     * @param integer $sign
2140
     * @param integer $sign
2105
     * @return array
2141
     * @return array
2106
     */
2142
     */
2107
    public function addRepository($verionID, $rname, $rinfo, $rkey, $proto, $rhost, $rfolder, $rtype, $scheme, $sign, $sections, $arch) {
2143
    public function addRepository($verionID, $rname, $rinfo, $rkey, $proto, $rhost, $rfolder, $rtype, $scheme, $sign, $sections, $arch) {
2108
        $result = array();
2144
        $result = array();
2109
        $sVersionID     = $this->secure->checkInt($verionID);
2145
        $sVersionID     = $this->secure->checkInt($verionID);
2110
        $sRName         = $this->secure->checkStr($rname);
2146
        $sRName         = $this->secure->checkStr($rname);
2111
        $sRInfo         = $this->secure->checkStr($rinfo);
2147
        $sRInfo         = $this->secure->checkStr($rinfo);
2112
        $sRKey          = $this->secure->checkStr($rkey);
2148
        $sRKey          = $this->secure->checkStr($rkey);
2113
        $sProto         = $this->secure->checkInt($proto);
2149
        $sProto         = $this->secure->checkInt($proto);
2114
        $sRHost         = $this->secure->checkInt($rhost);
2150
        $sRHost         = $this->secure->checkInt($rhost);
2115
        $sRFolder       = $this->secure->checkInt($rfolder);
2151
        $sRFolder       = $this->secure->checkInt($rfolder);
2116
        $sRType         = $this->secure->checkInt($rtype);
2152
        $sRType         = $this->secure->checkInt($rtype);
2117
        $sRScheme       = $this->secure->checkInt($scheme);
2153
        $sRScheme       = $this->secure->checkInt($scheme);
2118
        $sRSign         = $this->secure->checkInt($sign);
2154
        $sRSign         = $this->secure->checkInt($sign);
2119
2155
2120
        $query = "INSERT INTO ".$this->prefix."repository SET proto_id='".$sProto."', rhost_id='".$sRHost."', rfolder_id='".$sRFolder."', version='".$sVersionID."', rtype_id='".$sRType."', scheme_id='".$sRScheme."', sign_id='".$sRSign."', repname='".$sRName."', repinfo='".$sRInfo."', repkey='".$sRKey."'";
2156
        $query = "INSERT INTO ".$this->prefix."repository SET proto_id='".$sProto."', rhost_id='".$sRHost."', rfolder_id='".$sRFolder."', version='".$sVersionID."', rtype_id='".$sRType."', scheme_id='".$sRScheme."', sign_id='".$sRSign."', repname='".$sRName."', repinfo='".$sRInfo."', repkey='".$sRKey."'";
2121
        $rq =& $this->db->query($query);
2157
        $rq =& $this->db->query($query);
2122
2158
2123
        $query = "SELECT rep_id FROM ".$this->prefix."repository ORDER BY rep_id DESC LIMIT 0, 1";
2159
        $query = "SELECT rep_id FROM ".$this->prefix."repository ORDER BY rep_id DESC LIMIT 0, 1";
2124
        $rq =& $this->db->query($query);
2160
        $rq =& $this->db->query($query);
2125
        $rq->fetchInto($repository);
2161
        $rq->fetchInto($repository);
2126
2162
2127
        for($i=0;$i<count($sections);$i++) {
2163
        for($i=0;$i<count($sections);$i++) {
2128
            $query = "INSERT INTO ".$this->prefix."sect2rep SET rep_id='".$repository["rep_id"]."', sect_id='".$sections[$i]."'";
2164
            $query = "INSERT INTO ".$this->prefix."sect2rep SET rep_id='".$repository["rep_id"]."', sect_id='".$sections[$i]."'";
2129
            $rq =& $this->db->query($query);
2165
            $rq =& $this->db->query($query);
2130
        }
2166
        }
2131
2167
2132
        for($i=0;$i<count($arch);$i++) {
2168
        for($i=0;$i<count($arch);$i++) {
2133
            $query = "INSERT INTO ".$this->prefix."arch2rep SET rep_id='".$repository["rep_id"]."', arch_id='".$arch[$i]."'";
2169
            $query = "INSERT INTO ".$this->prefix."arch2rep SET rep_id='".$repository["rep_id"]."', arch_id='".$arch[$i]."'";
2134
            $rq =& $this->db->query($query);
2170
            $rq =& $this->db->query($query);
2135
        }
2171
        }
2136
2172
2137
        if (PEAR::isError($this->db)) {
2173
        if (PEAR::isError($this->db)) {
2138
            $result["ERR"] = 1;
2174
            $result["ERR"] = 1;
2139
            $result["ERRINFO"] = $this->db->getMessage();
2175
            $result["ERRINFO"] = $this->db->getMessage();
2140
        } else {
2176
        } else {
2141
            $result["ERR"] = 0;
2177
            $result["ERR"] = 0;
2142
        }
2178
        }
2143
       
2179
       
2144
        return $result;
2180
        return $result;
2145
    }
2181
    }
2146
2182
2147
    /**
2183
    /**
2148
     * Обновление информации о репозитории
2184
     * Обновление информации о репозитории
2149
     *
2185
     *
2150
     * @author Alexander Wolf
2186
     * @author Alexander Wolf
2151
     * @category Core
2187
     * @category Core
2152
     *
2188
     *
2153
     * @param integer $repID
2189
     * @param integer $repID
2154
     * @param integer $verionID
2190
     * @param integer $verionID
2155
     * @param string $rname
2191
     * @param string $rname
2156
     * @param string $rinfo
2192
     * @param string $rinfo
2157
     * @param string $rkey
2193
     * @param string $rkey
2158
     * @param integer $proto
2194
     * @param integer $proto
2159
     * @param integer $rhost
2195
     * @param integer $rhost
2160
     * @param integer $rfolder
2196
     * @param integer $rfolder
2161
     * @param integer $rtype
2197
     * @param integer $rtype
2162
     * @param array $sections
2198
     * @param array $sections
2163
     * @param array $arch
2199
     * @param array $arch
2164
     * @param integer $scheme
2200
     * @param integer $scheme
2165
     * @param integer $sign
2201
     * @param integer $sign
2166
     * @return array
2202
     * @return array
2167
     */
2203
     */
2168
    public function updateRepository($repID, $verionID, $rname, $rinfo, $rkey, $proto, $rhost, $rfolder, $rtype, $scheme, $sign, $sections, $arch) {
2204
    public function updateRepository($repID, $verionID, $rname, $rinfo, $rkey, $proto, $rhost, $rfolder, $rtype, $scheme, $sign, $sections, $arch) {
2169
        $result = array();
2205
        $result = array();
2170
        $sRepID         = $this->secure->checkInt($repID);
2206
        $sRepID         = $this->secure->checkInt($repID);
2171
        $sVersionID     = $this->secure->checkInt($verionID);
2207
        $sVersionID     = $this->secure->checkInt($verionID);
2172
        $sRName         = $this->secure->checkStr($rname);
2208
        $sRName         = $this->secure->checkStr($rname);
2173
        $sRInfo         = $this->secure->checkStr($rinfo);
2209
        $sRInfo         = $this->secure->checkStr($rinfo);
2174
        $sRKey          = $this->secure->checkStr($rkey);
2210
        $sRKey          = $this->secure->checkStr($rkey);
2175
        $sProto         = $this->secure->checkInt($proto);
2211
        $sProto         = $this->secure->checkInt($proto);
2176
        $sRHost         = $this->secure->checkInt($rhost);
2212
        $sRHost         = $this->secure->checkInt($rhost);
2177
        $sRFolder       = $this->secure->checkInt($rfolder);
2213
        $sRFolder       = $this->secure->checkInt($rfolder);
2178
        $sRType         = $this->secure->checkInt($rtype);
2214
        $sRType         = $this->secure->checkInt($rtype);
2179
        $sRScheme       = $this->secure->checkInt($scheme);
2215
        $sRScheme       = $this->secure->checkInt($scheme);
2180
        $sRSign         = $this->secure->checkInt($sign);
2216
        $sRSign         = $this->secure->checkInt($sign);
2181
2217
2182
        $query = "UPDATE ".$this->prefix."repository SET proto_id='".$sProto."', rhost_id='".$sRHost."', rfolder_id='".$sRFolder."', version='".$sVersionID."', rtype_id='".$sRType."', scheme_id='".$sRScheme."', sign_id='".$sRSign."', repname='".$sRName."', repinfo='".$sRInfo."', repkey='".$sRKey."' WHERE rep_id='".$sRepID."'";
2218
        $query = "UPDATE ".$this->prefix."repository SET proto_id='".$sProto."', rhost_id='".$sRHost."', rfolder_id='".$sRFolder."', version='".$sVersionID."', rtype_id='".$sRType."', scheme_id='".$sRScheme."', sign_id='".$sRSign."', repname='".$sRName."', repinfo='".$sRInfo."', repkey='".$sRKey."' WHERE rep_id='".$sRepID."'";
2183
        $rq =& $this->db->query($query);
2219
        $rq =& $this->db->query($query);
2184
2220
2185
        $query = "DELETE FROM ".$this->prefix."sect2rep WHERE rep_id='".$sRepID."'";
2221
        $query = "DELETE FROM ".$this->prefix."sect2rep WHERE rep_id='".$sRepID."'";
2186
        $rq =& $this->db->query($query);
2222
        $rq =& $this->db->query($query);
2187
        for($i=0;$i<count($sections);$i++) {
2223
        for($i=0;$i<count($sections);$i++) {
2188
            $query = "INSERT INTO ".$this->prefix."sect2rep SET rep_id='".$sRepID."', sect_id='".$sections[$i]."'";
2224
            $query = "INSERT INTO ".$this->prefix."sect2rep SET rep_id='".$sRepID."', sect_id='".$sections[$i]."'";
2189
            $rq =& $this->db->query($query);
2225
            $rq =& $this->db->query($query);
2190
        }
2226
        }
2191
2227
2192
        $query = "DELETE FROM ".$this->prefix."arch2rep WHERE rep_id='".$sRepID."'";
2228
        $query = "DELETE FROM ".$this->prefix."arch2rep WHERE rep_id='".$sRepID."'";
2193
        $rq =& $this->db->query($query);
2229
        $rq =& $this->db->query($query);
2194
        for($i=0;$i<count($arch);$i++) {
2230
        for($i=0;$i<count($arch);$i++) {
2195
            $query = "INSERT INTO ".$this->prefix."arch2rep SET rep_id='".$sRepID."', arch_id='".$arch[$i]."'";
2231
            $query = "INSERT INTO ".$this->prefix."arch2rep SET rep_id='".$sRepID."', arch_id='".$arch[$i]."'";
2196
            $rq =& $this->db->query($query);
2232
            $rq =& $this->db->query($query);
2197
        }
2233
        }
2198
2234
2199
        if (PEAR::isError($this->db)) {
2235
        if (PEAR::isError($this->db)) {
2200
            $result["ERR"] = 1;
2236
            $result["ERR"] = 1;
2201
            $result["ERRINFO"] = $this->db->getMessage();
2237
            $result["ERRINFO"] = $this->db->getMessage();
2202
        } else {
2238
        } else {
2203
            $result["ERR"] = 0;
2239
            $result["ERR"] = 0;
2204
        }
2240
        }
2205
2241
2206
        return $result;
2242
        return $result;
2207
    }
2243
    }
2208
2244
2209
    /**
2245
    /**
2210
     * Удаление информации о репозитории
2246
     * Удаление информации о репозитории
2211
     *
2247
     *
2212
     * @author Alexander Wolf
2248
     * @author Alexander Wolf
2213
     * @category Core
2249
     * @category Core
2214
     *
2250
     *
2215
     * @param integer $repID
2251
     * @param integer $repID
2216
     * @return array
2252
     * @return array
2217
     */
2253
     */
2218
    public function dropRepository($repID) {
2254
    public function dropRepository($repID) {
2219
        $result = array();
2255
        $result = array();
2220
        $sRepID         = $this->secure->checkInt($repID);
2256
        $sRepID         = $this->secure->checkInt($repID);
2221
2257
2222
        // Удаление репозитория
2258
        // Удаление репозитория
2223
        $query = "DELETE FROM ".$this->prefix."repository WHERE rep_id='".$sRepID."'";
2259
        $query = "DELETE FROM ".$this->prefix."repository WHERE rep_id='".$sRepID."'";
2224
        $rq =& $this->db->query($query);
2260
        $rq =& $this->db->query($query);
2225
        if (PEAR::isError($this->db)) {
2261
        if (PEAR::isError($this->db)) {
2226
            $result["ERR"] = 1;
2262
            $result["ERR"] = 1;
2227
            $result["ERRINFO"] = $this->db->getMessage();
2263
            $result["ERRINFO"] = $this->db->getMessage();
2228
        } else {
2264
        } else {
2229
            $result["ERR"] = 0;
2265
            $result["ERR"] = 0;
2230
        }
2266
        }
2231
2267
2232
        // Удаление секций репозитория
2268
        // Удаление секций репозитория
2233
        $query = "DELETE FROM ".$this->prefix."sect2rep WHERE rep_id='".$sRepID."'";
2269
        $query = "DELETE FROM ".$this->prefix."sect2rep WHERE rep_id='".$sRepID."'";
2234
        $rq =& $this->db->query($query);
2270
        $rq =& $this->db->query($query);
2235
        if (PEAR::isError($this->db)) {
2271
        if (PEAR::isError($this->db)) {
2236
            $result["ERR"] = 1;
2272
            $result["ERR"] = 1;
2237
            $result["ERRINFO"] = $this->db->getMessage();
2273
            $result["ERRINFO"] = $this->db->getMessage();
2238
        } else {
2274
        } else {
2239
            $result["ERR"] = 0;
2275
            $result["ERR"] = 0;
2240
        }
2276
        }
2241
2277
2242
        // Удаление архитектур репозитория
2278
        // Удаление архитектур репозитория
2243
        $query = "DELETE FROM ".$this->prefix."arch2rep WHERE rep_id='".$sRepID."'";
2279
        $query = "DELETE FROM ".$this->prefix."arch2rep WHERE rep_id='".$sRepID."'";
2244
        $rq =& $this->db->query($query);
2280
        $rq =& $this->db->query($query);
2245
        if (PEAR::isError($this->db)) {
2281
        if (PEAR::isError($this->db)) {
2246
            $result["ERR"] = 1;
2282
            $result["ERR"] = 1;
2247
            $result["ERRINFO"] = $this->db->getMessage();
2283
            $result["ERRINFO"] = $this->db->getMessage();
2248
        } else {
2284
        } else {
2249
            $result["ERR"] = 0;
2285
            $result["ERR"] = 0;
2250
        }
2286
        }
2251
2287
2252
        return $result;
2288
        return $result;
2253
    }
2289
    }
2254
   
2290
   
2255
}
2291
}
2256
2292
2257
?>
2293
?>