Хранилища Subversion ant

Редакция

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

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