Хранилища Subversion ant

Редакция

Редакция 653 | К новейшей редакции | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

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