Хранилища Subversion ant

Редакция

Редакция 563 | Редакция 567 | К новейшей редакции | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | 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 ";
272
        $query .= "WHERE t.rtype_id='1' AND r.version='".$this->secure->checkInt($version)."'";
273
        $rq =& $this->db->query($query);
274
        switch ($format) {
275
            case 'html':
276
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
277
                while ($rq->fetchInto($element)) {
493 alex-w 278
                    $show .= "<div class='sections'><input type='checkbox' name='section[]' value='".$element["sect_id"]."'> ".$this->secure->checkStr($element["secname"],1)." &mdash; ".$this->secure->checkStr($element["sectinfo"],1)."</div>\n";
317 alex-w 279
                }
280
                $show .= "</fieldset>\n";
281
                break;
282
            case 'json':
283
                //TODO Доделать JSON-вывод списка секций основного репозитория
284
                break;
285
        }
318 alex-w 286
 
287
        return $show;
317 alex-w 288
    }
289
 
463 alex-w 290
    /**
291
     * Получение и отображение списка репозиториев
292
     *
293
     * @author Alexander Wolf
294
     * @category Core
295
     *
296
     * @param integer $version
297
     * @param integer $reptype
298
     * @param string $format
299
     * @return string
300
     */
368 alex-w 301
    public function showRepList($version, $reptype, $format = 'html') {
406 alex-w 302
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='".$this->secure->checkInt($reptype)."'";
317 alex-w 303
        $rq =& $this->db->query($query);
304
        $rq->fetchInto($types);
305
        $query = "SELECT * FROM ".$this->prefix."repository WHERE version='".$this->secure->checkInt($version)."' AND rtype_id='".$this->secure->checkInt($reptype)."'";
306
        $rq =& $this->db->query($query);
307
        switch ($format) {
308
            case 'html':
309
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
310
                while ($rq->fetchInto($types)) {
320 alex-w 311
                    $show .= "<div class='repository'><input type='checkbox' name='repository[]' value='".$element["rep_id"]."'> ".$this->secure->checkStr($element["repname"],1)." &mdash; ".$this->secure->checkStr($element["repinfo"],1)."</div>\n";
317 alex-w 312
                }
313
                $show .= "</fieldset>\n";
314
                break;
315
            case 'json':
316
                //TODO Доделать JSON-вывод списка репозиториев
317
                break;
318
        }
318 alex-w 319
 
320
        return $show;
317 alex-w 321
    }
322
 
463 alex-w 323
    /**
324
     * Добавление поддержки нового apt-дистрибутива
325
     *
326
     * @author Alexander Wolf
327
     * @category Core
328
     *
329
     * @param string $distname
330
     * @param integer $disttype
331
     * @param string $distua
332
     * @param byte $distlogo
333
     * @return array
334
     */
514 alex-w 335
    public function addDistribution($distname, $disttype, $distua = '', $distlogo = 0) {
321 alex-w 336
        $result = array();
516 alex-w 337
        $sDName = $this->secure->checkStr($distname,1);
321 alex-w 338
        $sDType = $this->secure->checkInt($disttype);
516 alex-w 339
        $sDUAgt = $this->secure->checkStr($distua,1);
514 alex-w 340
        $sDLogo = $this->secure->checkInt($distlogo);
321 alex-w 341
 
342
        $query = "INSERT INTO ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."'";
343
        $rq =& $this->db->query($query);
344
        if (PEAR::isError($this->db)) {
345
            $result["ERR"] = 1;
346
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 347
        } else {            
321 alex-w 348
            $result["ERR"] = 0;
349
        }
350
 
351
        return $result;
352
    }
353
 
463 alex-w 354
    /**
514 alex-w 355
     * Обновление информации о дистрибутиве
356
     *
357
     * @author Alexander Wolf
358
     * @category Core
359
     *
360
     * @param integer $distID
361
     * @param string $distname
362
     * @param integer $disttype
363
     * @param string $distua
364
     * @param integer $distlogo
365
     * @return array
366
     */
538 alex-w 367
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo = 0) {
514 alex-w 368
        $result = array();
369
        $sDID   = $this->secure->checkInt($distID);
516 alex-w 370
        $sDName = $this->secure->checkStr($distname,1);
514 alex-w 371
        $sDType = $this->secure->checkInt($disttype);
516 alex-w 372
        $sDUAgt = $this->secure->checkStr($distua,1);
514 alex-w 373
        $sDLogo = $this->secure->checkInt($distlogo);
374
 
538 alex-w 375
        if ($sDLogo!=0) {
376
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."' WHERE dist_id='".$sDID."'";
377
        } else {
378
            $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."' WHERE dist_id='".$sDID."'";
379
        }
514 alex-w 380
        $rq =& $this->db->query($query);
381
        if (PEAR::isError($this->db)) {
382
            $result["ERR"] = 1;
383
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 384
        } else {            
514 alex-w 385
            $result["ERR"] = 0;
386
        }
387
 
388
        return $result;
389
    }
390
 
391
    /**
392
     * Удаление информации о дистрибутиве
393
     *
394
     * @author Alexander Wolf
395
     * @category Core
396
     *
397
     * @param integer $distID
398
     * @return array
399
     */
400
    public function dropDistribution($distID) {
401
        $result = array();
402
        $sDID   = $this->secure->checkInt($distID);
403
 
404
        // Удаление дистрибутива
405
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
406
        $rq =& $this->db->query($query);
407
        if (PEAR::isError($this->db)) {
408
            $result["ERR"] = 1;
409
            $result["ERRINFO"] = $this->db->getMessage();
519 alex-w 410
        } else {            
514 alex-w 411
            $result["ERR"] = 0;
412
        }
413
 
414
        // Удаление версий дистрибутива
415
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
416
        $rq =& $this->db->query($query);
417
        if (PEAR::isError($this->db)) {
418
            $result["ERR"] = 1;
419
            $result["ERRINFO"] = $this->db->getMessage();
519 alex-w 420
        } else {            
514 alex-w 421
            $result["ERR"] = 0;
422
        }
423
 
424
        return $result;
425
    }
426
 
427
    /**
463 alex-w 428
     * Добавление поддержки новой версии apt-дистрибутива
429
     *
430
     * @author Alexander Wolf
431
     * @category Core
432
     *
433
     * @param integer $distID
434
     * @param integer $version
435
     * @param string $vname
436
     * @param integer $vcodename
437
     * @return array
438
     */
368 alex-w 439
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
356 alex-w 440
        $result = array();
463 alex-w 441
        $sDistID    = $this->secure->checkInt($distID);
516 alex-w 442
        $sDVersion  = $this->secure->checkStr($version,1);
443
        $sDVName    = $this->secure->checkStr($vname,1);
444
        $sDVCName   = $this->secure->checkStr($vcodename,1);
356 alex-w 445
 
446
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
447
        $rq =& $this->db->query($query);
448
        if (PEAR::isError($this->db)) {
449
            $result["ERR"] = 1;
450
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 451
        } else {            
356 alex-w 452
            $result["ERR"] = 0;
453
        }
454
 
455
        return $result;
456
    }
358 alex-w 457
 
463 alex-w 458
    /**
514 alex-w 459
     * Редактирование информации о версии дистрибутива
460
     *
461
     * @author Alexander Wolf
462
     * @category Core
463
     *
464
     * @param integer $versionID
465
     * @param string $version
466
     * @param string $vname
467
     * @param string $vcodename
468
     * @return array
469
     */
470
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
471
        $result = array();
472
        $sVersID    = $this->secure->checkInt($versionID);
516 alex-w 473
        $sDVersion  = $this->secure->checkStr($version,1);
474
        $sDVName    = $this->secure->checkStr($vname,1);
475
        $sDVCName   = $this->secure->checkStr($vcodename,1);
514 alex-w 476
 
477
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
478
        $rq =& $this->db->query($query);
479
        if (PEAR::isError($this->db)) {
480
            $result["ERR"] = 1;
481
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 482
        } else {            
514 alex-w 483
            $result["ERR"] = 0;
484
        }
485
 
486
        return $result;
487
    }
488
 
489
    /**
490
     * Удаление информации о версии дистрибутива
491
     *
492
     * @author Alexander Wolf
493
     * @category Core
494
     *
495
     * @param integer $versionID
496
     * @return array
497
     */
498
    public function dropDistVersion($versionID) {
499
        $result = array();
500
        $sVersID    = $this->secure->checkInt($versionID);
501
 
502
        // Удаление версии дистрибутива
503
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
504
        $rq =& $this->db->query($query);
505
        if (PEAR::isError($this->db)) {
506
            $result["ERR"] = 1;
507
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 508
        } else {            
514 alex-w 509
            $result["ERR"] = 0;
510
        }
511
 
512
        // Удаление репозиториев этой версии дистрибутива
513
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
514
        $rq =& $this->db->query($query);
515
        if (PEAR::isError($this->db)) {
516
            $result["ERR"] = 1;
517
            $result["ERRINFO"] = $this->db->getMessage();
517 alex-w 518
        } else {            
514 alex-w 519
            $result["ERR"] = 0;
520
        }
521
 
522
        return $result;
523
    }
524
 
525
    /**
463 alex-w 526
     * Отображение типа дистрибутива
527
     *
528
     * @author Alexander Wolf
529
     * @category Core
530
     *
531
     * @param string $name
532
     * @param byte $type
533
     * @return string
534
     */
368 alex-w 535
    public function showDistTypeForm($name = "dtype",$type = 0) {
329 alex-w 536
        $query = "SELECT * FROM ".$this->prefix."dtype";
537
        $rq =& $this->db->query($query);
538
        $show = "<select name='".$name."' id='".$name."'>\n";
539
        while ($rq->fetchInto($element)) {
347 alex-w 540
            if ($element["type_id"] == $type) {
541
                $show .= "<option value='".$element["type_id"]."' selected>".$this->secure->checkStr($element["type"],1)."</option>\n";
329 alex-w 542
            } else {
347 alex-w 543
                $show .= "<option value='".$element["type_id"]."'>".$this->secure->checkStr($element["type"],1)."</option>\n";
329 alex-w 544
            }
545
        }
546
        $show .= "</select>";
547
 
548
        return $show;
549
    }
550
 
463 alex-w 551
    /**
552
     * Отображение формы создания и редактирования apt-дистрибутива
553
     *
554
     * @author Alexander Wolf
555
     * @category Core
556
     *
557
     * @param integer $distID
558
     * @return string
559
     */
511 alex-w 560
    public function showDistributionForm($distID = 0, $info = '') {
329 alex-w 561
        $sDistID = $this->secure->checkInt($distID);
511 alex-w 562
        $sInfo = $this->secure->checkStr($info, 1);
563
        if ($sInfo == "") {
564
            $sInfo = "Дистрибутив";
565
        }
329 alex-w 566
        if ($sDistID != 0) {
567
            // Режим редактирования
568
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
569
            $rq =& $this->db->query($query);
570
            $rq->fetchInto($element);
571
        }
572
 
573
        if ($element["distlogo"] == 1) {
380 alex-w 574
            $image = "<img src='./img/d/".$this->secure->checkStr($element["distua"],1).".png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива ".$this->secure->checkStr($element["distname"],1)."' title='Логотип дистрибутива ".$this->secure->checkStr($element["distname"],1)."'>";
329 alex-w 575
        } else {
380 alex-w 576
            $image = "<img src='./img/d/empty-logo.png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива' title='Логотип дистрибутива не загружен'>";
329 alex-w 577
        }
578
 
511 alex-w 579
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
350 alex-w 580
        $show .= "<div class='inputbox'><label for='dname'>Название дистрибутива:</label> <input type='text' name='dname' id='dname' value='".$this->secure->checkStr($element["distname"],1)."'></div>\n";
581
        $show .= "<div class='inputbox'><label for='dua'>UA дистрибутива:</label> <input type='text' name='dua' id='dua' value='".$this->secure->checkStr($element["distua"],1)."'></div>\n";
518 alex-w 582
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["disttype"])."</div>\n";
348 alex-w 583
        $show .= "<div class='inputbox'><table><tr><td class='td-name'>Логотип дистрибутива:</td>\n";
329 alex-w 584
        $show .= "<td>".$image."</td>\n<td><input type='file' name='distlogo'></td>\n</tr></table>\n</div>\n";
350 alex-w 585
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
329 alex-w 586
 
587
        return $show;
588
    }
589
 
358 alex-w 590
    // sourses.list
423 alex-w 591
    public function showSourcesList($distID,$versID,$sectIDs,$repIDs) {
592
       //TODO Написать генератор sources.list       
358 alex-w 593
    }
522 alex-w 594
 
463 alex-w 595
    /**
522 alex-w 596
     * Показывает список секций
597
     *
598
     * @author Alexander Wolf
599
     * @category Core
600
     *
601
     * @param string $name
602
     * @param string $actor
561 alex-w 603
     * @param string $format
522 alex-w 604
     * @return string
605
     */
560 alex-w 606
    public function showSectionsList($name, $actor, $format = 'html') {
607
        switch($format) {
608
            case 'html':
561 alex-w 609
                $query = "SELECT * FROM ".$this->prefix."section";
610
                $rq =& $this->db->query($query);
560 alex-w 611
                $show = "<ul>\n";
612
                while ($rq->fetchInto($element)) {
613
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["sect_id"]."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["sect_id"]."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["secname"],1)."</li>\n";
614
                }
615
                $show .= "</ul>";
616
                break;
617
            case 'innerhtml':
618
                $show = "";
561 alex-w 619
                $repID = $this->secure->checkInt($actor);
620
                if ($repID==0) {
621
                    $query = "SELECT * FROM ".$this->prefix."section";
622
                    $rq =& $this->db->query($query);
623
                    while ($rq->fetchInto($element)) {
624
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."'> ".$this->secure->checkStr($element["secname"],1)." ";
625
                    }
626
                } else {
627
                    $query = "SELECT * FROM ".$this->prefix."section s JOIN ".$this->prefix."sect2rep r ON s.sect_id=r.sect_id WHERE r.rep_id='$repID'";
628
                    $rq =& $this->db->query($query);
629
                    while ($rq->fetchInto($element)) {
630
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."' checked> ".$this->secure->checkStr($element["secname"],1)." ";
631
                    }
632
                    $query = "SELECT s.* FROM ".$this->prefix."section s WHERE s.sect_id NOT IN (SELECT sect_id FROM ".$this->prefix."sect2rep WHERE rep_id='$repID')";
563 alex-w 633
                    $rq =& $this->db->query($query);
561 alex-w 634
                    while ($rq->fetchInto($element)) {
635
                        $show .= "<input type='checkbox' name='".$name."[]' value='".$element["sect_id"]."'> ".$this->secure->checkStr($element["secname"],1)." ";
636
                    }
637
                }
638
 
560 alex-w 639
                break;
522 alex-w 640
        }
641
 
642
        return $show;
643
    }
644
 
561 alex-w 645
 
523 alex-w 646
    /**
647
     * Вывод формы редактирования/добавления секций
648
     *
649
     * @author Alexander Wolf
650
     * @category Core
651
     *
652
     * @param integer $sectionID
653
     * @param string $info
654
     * @return string
655
     */
656
    public function showSectionsForm($sectionID = 0, $info = "") {
522 alex-w 657
        $sSectID = $this->secure->checkInt($sectionID);
658
        $sInfo = $this->secure->checkStr($info, 1);
659
        if ($sInfo == "") {
660
            $sInfo = "Секция";
661
        }
662
        if ($sSectID != 0) {
663
            // Режим редактирования
664
            $query = "SELECT * FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
665
            $rq =& $this->db->query($query);
666
            $rq->fetchInto($element);
667
        }
668
 
669
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
670
        $show .= "<div class='inputbox'><label for='sname'>Название секции:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["secname"],1)."'></div>\n";
671
        $show .= "<div class='inputbox'><label for='sinfo'>Описание секции:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sectinfo"],1)."'></div>\n";
672
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
673
 
674
        return $show;
675
    }
676
 
677
    /**
523 alex-w 678
     * Обновление информации о секции
679
     *
680
     * @author Alexander Wolf
681
     * @category Core
682
     *
683
     * @param integer $sectionID
684
     * @param string $sname
685
     * @param string $sinfo
686
     * @return array
687
     */
688
    public function updateSection($sectionID, $sname, $sinfo = "") {
689
        $result = array();
690
        $sSectID    = $this->secure->checkInt($sectionID);
691
        $sSName     = $this->secure->checkStr($sname,1);
692
        $sSInfo     = $this->secure->checkStr($sinfo,1);
693
 
694
        $query = "UPDATE ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."' WHERE sect_id='".$sSectID."'";
695
        $rq =& $this->db->query($query);
696
        if (PEAR::isError($this->db)) {
697
            $result["ERR"] = 1;
698
            $result["ERRINFO"] = $this->db->getMessage();
699
        } else {
700
            $result["ERR"] = 0;
701
        }
702
 
703
        return $result;
704
    }
705
 
706
    /**
707
     * Удаление информации о секции
708
     *
709
     * @author Alexander Wolf
710
     * @category Core
711
     *
712
     * @param integer $sectionID
713
     * @return array
714
     */
715
    public function dropSection($sectionID) {
716
        $result = array();
717
        $sSectID    = $this->secure->checkInt($sectionID);
718
 
719
        // Удаление секции
720
        $query = "DELETE FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
721
        $rq =& $this->db->query($query);
722
        if (PEAR::isError($this->db)) {
723
            $result["ERR"] = 1;
724
            $result["ERRINFO"] = $this->db->getMessage();
725
        } else {
726
            $result["ERR"] = 0;
727
        }
728
 
729
        return $result;
730
    }
731
 
732
    /**
733
     * Добавление новой секции
734
     *
735
     * @author Alexander Wolf
736
     * @category Core
737
     *
738
     * @param string $sname
739
     * @param string $sinfo
740
     * @return array
741
     */
742
    public function addSection($sname, $sinfo = "") {
743
        $result = array();
744
        $sSName = $this->secure->checkStr($sname,1);
745
        $sSInfo = $this->secure->checkStr($sinfo,1);
746
 
747
        $query = "INSERT INTO ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."'";
748
        $rq =& $this->db->query($query);
749
        if (PEAR::isError($this->db)) {
750
            $result["ERR"] = 1;
751
            $result["ERRINFO"] = $this->db->getMessage();
752
        } else {
753
            $result["ERR"] = 0;
754
        }
755
 
756
        return $result;
757
    }
758
 
759
    /**
539 alex-w 760
     * Показывает список подписей
761
     *
762
     * @author Alexander Wolf
763
     * @category Core
764
     *
765
     * @param string $name
766
     * @param string $actor
767
     * @return string
768
     */
769
    public function showSignsList($name, $actor) {
770
        $query = "SELECT * FROM ".$this->prefix."signs";
771
        $rq =& $this->db->query($query);
772
        $show = "<ul>\n";
773
        while ($rq->fetchInto($element)) {
545 alex-w 774
            $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";
539 alex-w 775
        }
776
        $show .= "</ul>";
777
 
778
        return $show;
779
    }
780
 
781
    /**
782
     * Вывод формы редактирования/добавления подписей
783
     *
784
     * @author Alexander Wolf
785
     * @category Core
786
     *
787
     * @param integer $sectionID
788
     * @param string $info
789
     * @return string
790
     */
791
    public function showSignsForm($signID = 0, $info = "") {
792
        $sSignID = $this->secure->checkInt($signID);
793
        $sInfo = $this->secure->checkStr($info, 1);
794
        if ($sInfo == "") {
795
            $sInfo = "Подписи";
796
        }
797
        if ($sSignID != 0) {
798
            // Режим редактирования
799
            $query = "SELECT * FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
800
            $rq =& $this->db->query($query);
801
            $rq->fetchInto($element);
802
        }
803
 
804
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
805
        $show .= "<div class='inputbox'><label for='sname'>Название подписи:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["sname"],1)."'></div>\n";
806
        $show .= "<div class='inputbox'><label for='sinfo'>Описание подписи:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sinfo"],1)."'></div>\n";
807
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
808
 
809
        return $show;
810
    }
811
 
812
    /**
813
     * Обновление информации о секции
814
     *
815
     * @author Alexander Wolf
816
     * @category Core
817
     *
818
     * @param integer $sectionID
819
     * @param string $sname
820
     * @param string $sinfo
821
     * @return array
822
     */
823
    public function updateSign($signID, $sname, $sinfo = "") {
824
        $result = array();
825
        $sSignID    = $this->secure->checkInt($signID);
826
        $sSName     = $this->secure->checkStr($sname,1);
827
        $sSInfo     = $this->secure->checkStr($sinfo,1);
828
 
829
        $query = "UPDATE ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."' WHERE sign_id='".$sSignID."'";
830
        $rq =& $this->db->query($query);
831
        if (PEAR::isError($this->db)) {
832
            $result["ERR"] = 1;
833
            $result["ERRINFO"] = $this->db->getMessage();
834
        } else {
835
            $result["ERR"] = 0;
836
        }
837
 
838
        return $result;
839
    }
840
 
841
    /**
842
     * Удаление информации о подписи
843
     *
844
     * @author Alexander Wolf
845
     * @category Core
846
     *
847
     * @param integer $sectionID
848
     * @return array
849
     */
540 alex-w 850
    public function dropSign($signID) {
539 alex-w 851
        $result = array();
852
        $sSignID    = $this->secure->checkInt($signID);
853
 
854
        // Удаление подписи
855
        $query = "DELETE FROM ".$this->prefix."signs WHERE sign_id='".$sSignID."'";
856
        $rq =& $this->db->query($query);
857
        if (PEAR::isError($this->db)) {
858
            $result["ERR"] = 1;
859
            $result["ERRINFO"] = $this->db->getMessage();
860
        } else {
861
            $result["ERR"] = 0;
862
        }
863
 
864
        return $result;
865
    }
866
 
867
    /**
540 alex-w 868
     * Добавление новой подписи
539 alex-w 869
     *
870
     * @author Alexander Wolf
871
     * @category Core
872
     *
873
     * @param string $sname
874
     * @param string $sinfo
875
     * @return array
876
     */
540 alex-w 877
    public function addSign($sname, $sinfo = "") {
539 alex-w 878
        $result = array();
879
        $sSName = $this->secure->checkStr($sname,1);
880
        $sSInfo = $this->secure->checkStr($sinfo,1);
881
 
540 alex-w 882
        $query = "INSERT INTO ".$this->prefix."signs SET sname='".$sSName."', sinfo='".$sSInfo."'";
539 alex-w 883
        $rq =& $this->db->query($query);
884
        if (PEAR::isError($this->db)) {
885
            $result["ERR"] = 1;
886
            $result["ERRINFO"] = $this->db->getMessage();
887
        } else {
888
            $result["ERR"] = 0;
889
        }
890
 
891
        return $result;
892
    }
540 alex-w 893
 
539 alex-w 894
    /**
463 alex-w 895
     * Проверка пароля (из формы авторизации)
896
     *
897
     * @author Alexander Wolf
898
     * @category Core
899
     *
900
     * @param string $word
901
     * @return array
902
     */
368 alex-w 903
    public function checkSign($word) {
359 alex-w 904
        $result = array();
905
 
906
        $sHash = $this->secure->encryptStr($word);
907
        $pwd   = $this->getOption("passwd");
908
        if ($sHash == $pwd["OptValue"]) {
909
            $result["ERR"] = 0;
910
            $result["Location"] = "manager.php";
911
            setcookie($this->cookie, $sHash);
912
        } else {
913
            $result["ERR"] = 1;
914
            $result["ERRINFO"] = "Password not valid";
368 alex-w 915
            $result["Location"] = "manager.php?error=1";
359 alex-w 916
        }
917
 
918
        return $result;
358 alex-w 919
    }
357 alex-w 920
 
463 alex-w 921
    /**
922
     * Проверка пароля (из cookies)
923
     *
924
     * @author Alexander Wolf
925
     * @category Core
926
     *
927
     * @param string $hash
928
     * @return array
929
     */
368 alex-w 930
    public function checkCookieSign($hash) {
359 alex-w 931
        $result = array();
932
 
933
        $pwd = $this->getOption("passwd");
934
        if ($hash == $pwd["OptValue"]) {
935
            $result["ERR"] = 0;
936
        } else {
937
            $result["ERR"] = 1;
938
            $result["ERRINFO"] = "Hash not valid";
368 alex-w 939
            $result["Location"] = "manager.php";
359 alex-w 940
        }
941
 
942
        return $result;
943
    }
944
 
463 alex-w 945
    /**
946
     * Форма ввода пароля
947
     *
948
     * @author Alexander Wolf
949
     * @category Core
950
     *
951
     * @return string
952
     */
368 alex-w 953
    public function showSigninForm() {
425 alex-w 954
        $show  = "<div id='regform'>";
955
        $show .= "<form action='process.php' method='post'>\n";
368 alex-w 956
        $show .= "<fieldset><legend>Пароль</legend>\n";
957
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
427 alex-w 958
        $show .= "<input type='password' name='word' value=''>\n";
368 alex-w 959
        $show .= "<input type='submit' value=' Войти '>\n";
425 alex-w 960
        $show .= "</fieldset>\n</form></div>\n";
368 alex-w 961
 
962
        return $show;
963
    }
964
 
463 alex-w 965
    /**
966
     * Обновление пароля
967
     *
968
     * @author Alexander Wolf
969
     * @category Core
970
     *
971
     * @param string $word1
972
     * @param string $word2
973
     * @return array
974
     */
368 alex-w 975
    public function updatePassword($word1, $word2) {
359 alex-w 976
        $result = array();
977
 
978
        if ($word1 == $word2) {
979
            $sWord = $this->secure->encryptStr($word1);
980
            $r = $this->setOption("passwd", $sWord);
981
            $result = $r;
982
        } else {
983
            $result["ERR"] = 1;
984
            $result["ERRINFO"] = "Passwords is mismatch";
985
        }
986
 
987
        return $result;
988
    }
989
 
504 alex-w 990
    /**
509 alex-w 991
     * Отображение формы создания и редактирования версии apt-дистрибутива
504 alex-w 992
     *
993
     * @author Alexander Wolf
994
     * @category Core
995
     *
996
     * @param string $name
997
     * @param string $actor
998
     * @param integer $versionID
999
     * @return string
1000
     */
511 alex-w 1001
    public function showDistVersionsForm($versionID = 0, $info = '') {
509 alex-w 1002
        $sVersionID = $this->secure->checkInt($versionID);
511 alex-w 1003
        $sInfo = $this->secure->checkStr($info, 1);
1004
        if ($sInfo == "") {
1005
            $sInfo = "Версия дистрибутива";
1006
        }
509 alex-w 1007
        if ($sVersionID != 0) {
1008
            // Режим редактирования
556 alex-w 1009
            $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 1010
            $rq =& $this->db->query($query);
1011
            $rq->fetchInto($element);
509 alex-w 1012
        }
1013
 
511 alex-w 1014
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
510 alex-w 1015
        if ($sVersionID != 0) {
1016
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
1017
        } else {
1018
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
1019
        }
509 alex-w 1020
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
1021
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
1022
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
1023
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
495 alex-w 1024
 
504 alex-w 1025
        return $show;
509 alex-w 1026
    }    
504 alex-w 1027
 
520 alex-w 1028
    /**
1029
     * Парсер схемы адреса репозитория
1030
     * FIXME Возможно не потребуется
1031
     *
1032
     * @author Alexander Wolf
1033
     * @category Core
1034
     *
1035
     * @param string $repstring
1036
     * @return integer
1037
     */
1038
    public function repositoryParser($repstring) {
1039
        $tokens = array();
1040
        $sections = array();
1041
        $tokens = split(" ",$repstring);
1042
 
1043
        if ($tokens[0] == "deb") {
1044
            // debian/ubuntu репозиторий "type proto://host/folder distr sections"
1045
            $url = parse_url($tokens[1]);
1046
            $distr  = $tokens[2];
1047
 
1048
            for($i=3;$i<count($tokens);$i++) {
1049
                $sections[] = $tokens[$i];
1050
            }
1051
        } else {
1052
            // altlinux репозиторий "type [sign] proto://host/folder base repname"
1053
            if (stripos($tokens[1],"]")!=0) {
1054
                $sign = $tokens[1];
1055
                $url = parse_url($tokens[2]);
1056
                $base = $tokens[3];
1057
                $repname = $tokens[4];
1058
            } else {
1059
                $url = parse_url($tokens[1]);
1060
                $base = $tokens[2];
1061
                $repname = $tokens[3];
1062
            }
1063
        }
1064
 
1065
        $proto      = $url["scheme"]."://";
1066
        $addr       = $url["host"];
1067
        if ($url["port"]!="") {
1068
            $addr .= ":".$url["port"];
1069
        }
1070
        $path       = $url["path"];
1071
 
1072
        return 0;
1073
    }
1074
 
539 alex-w 1075
    /**
1076
     * Выгрузка картинок логотипов дистрибутивов
1077
     *
1078
     * @author Alexander Wolf
1079
     * @category Core
1080
     *
1081
     * @param string $path
1082
     * @param string $dist
1083
     * @param array $datafile
1084
     * @return integer
1085
     */
535 alex-w 1086
    public function uploadPicture($path, $dist, $datafile) {
1087
        $folder   = $path.$dist."-orig.png";
1088
        $folderN  = $path.$dist.".png";
1089
        $folderEM = $path.$dist."-em.png";
1090
 
1091
        $distlogo = 0;
1092
        if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
1093
            chmod($folder, 0644);
1094
            list($width, $height) = GetImageSize($folder);
1095
            $percent = 32/$height;
1096
            $newwidth = $width * $percent;
1097
            $newheight = $height * $percent;
1098
 
1099
            $output = ImageCreateTrueColor($newwidth, $newheight);
1100
            $source = ImageCreateFromPNG($folder);
1101
 
1102
            ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1103
            ImagePNG($output, $folderEM);
1104
 
1105
            $percent = 15/$height;
1106
            $newwidth = $width * $percent;
1107
            $newheight = $height * $percent;
1108
 
1109
            $output = ImageCreateTrueColor($newwidth, $newheight);
1110
 
1111
            ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
1112
            ImagePNG($output, $folderN);
1113
 
1114
            unlink($folder);
1115
            $distlogo = 1;
1116
        }
1117
        return $distlogo;
1118
    }
547 alex-w 1119
 
1120
    /**
1121
     * Показ списка репозиториев
1122
     *
1123
     * @author Alexander Wolf
1124
     * @category Core
1125
     *
1126
     * @param string $name
1127
     * @param string $actor
1128
     * @param string $format
1129
     * @return string
1130
     */
548 alex-w 1131
    public function showRepositoriesList($name, $actor, $format = 'list') {
549 alex-w 1132
        $query  = "SELECT * FROM ".$this->prefix."repository r ";
548 alex-w 1133
        $query .= "JOIN ".$this->prefix."rtype rt ON rt.rtype_id=r.rtype_id ";
1134
        $rq =& $this->db->query($query);
1135
        $show = "<ul>";
1136
        while ($rq->fetchInto($element)) {
1137
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["rep_id"])."' class='edit'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["rep_id"])."' class='delete'>удалить</a>] ".$this->secure->checkStr($element["repname"],1)." (".$this->secure->checkStr($element["rtype"],1).")</li>\n";
1138
        }
1139
        $show .= "</ul>";
547 alex-w 1140
        return $show;
1141
    }
1142
 
1143
    /**
558 alex-w 1144
     * Вывод списка типов репозиториев
1145
     *
1146
     * @author Alexander Wolf
1147
     * @category Core
1148
     *
1149
     * @param integer $reptype
1150
     * @param string $name
1151
     * @return string
1152
     */
1153
    public function showRepType($reptype = 0, $name = "") {
1154
        $sRT = $this->secure->checkInt($reptype);
1155
        $sNM = $this->secure->checkStr($name,1);
559 alex-w 1156
        $query = "SELECT * FROM ".$this->prefix."rtype";
558 alex-w 1157
        $rq =& $this->db->query($query);
1158
        $show = "<select name='".$sNM."' id='".$sNM."'>\n";
1159
        while ($rq->fetchInto($element)) {
1160
            if ($element["rtype_id"]==$sRT) {
1161
                $show .= "<option value='".$this->secure->checkInt($element["rtype_id"])."' selected>".$this->secure->checkStr($element["rtype"],1)."</option>\n";
1162
            } else {
1163
                $show .= "<option value='".$this->secure->checkInt($element["rtype_id"])."'>".$this->secure->checkStr($element["rtype"],1)."</option>\n";
1164
            }
1165
        }
1166
        $show .= "</select>";
1167
 
1168
        return $show;
1169
    }
1170
 
1171
    /**
547 alex-w 1172
     * Форма создания/редактирвоания репозиториев
1173
     *
1174
     * @author Alexander Wolf
1175
     * @category Core
1176
     *
1177
     * @param integer $repID
1178
     * @param string $info
1179
     * @param string $reptype
1180
     * @return string
1181
     */
1182
    public function showRepositoriesForm($repID = 0, $info = "", $reptype = "") {
556 alex-w 1183
        $sRepID = $this->secure->checkInt($repID);
1184
        $sInfo  = $this->secure->checkStr($info, 1);
1185
        $sRType = $this->secure->checkStr($reptype, 1);
1186
        if ($sInfo == "") {
1187
            $sInfo = "Репозиторий";
1188
        }
1189
        if ($sRType == "") {
1190
            $sRType = "deb";
1191
        }
1192
        if ($sRepID != 0) {
1193
            // Режим редактирования
558 alex-w 1194
            $query  = "SELECT r.rtype_id,r.repname,r.repinfo,r.repkey,p.proto,h.rhost,f.rfolder,v.*,d.distname,dt.type FROM ".$this->prefix."repository r ";
1195
            //$query .= "JOIN ".$this->prefix."rtype rt ON r.rtype_id=rt.rtype_id ";
556 alex-w 1196
            $query .= "JOIN ".$this->prefix."protos p ON r.proto_id=p.proto_id ";
1197
            $query .= "JOIN ".$this->prefix."rephost h ON r.rhost_id=h.rhost_id ";
1198
            $query .= "JOIN ".$this->prefix."repfolder f ON r.rfolder_id=f.rfolder_id ";
1199
            $query .= "JOIN ".$this->prefix."version v ON r.version=v.version_id ";
1200
            $query .= "JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id ";
1201
            $query .= "JOIN ".$this->prefix."dtype dt ON d.disttype=dt.type_id ";
1202
            $query .= "WHERE r.rep_id='".$sRepID."'";
1203
            $rq =& $this->db->query($query);
1204
            $rq->fetchInto($element);
1205
            $sRType = $this->secure->checkStr($element["type"],1);
1206
        }
1207
 
1208
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
1209
        $show .= "<div class='inputbox'><label for='rname'>Название репозитория:</label> <input type='text' name='rname' value='".$this->secure->checkStr($element["repname"],1)."'></div>\n";
1210
        $show .= "<div class='inputbox'><label for='rinfo'>Описание репозитория:</label> <input type='text' name='rinfo' value='".$this->secure->checkStr($element["repinfo"],1)."'></div>\n";
1211
        $show .= "<div class='inputbox'><label for='rkey'>Ключ подписи репозитория:</label> <input type='text' name='rkey' value='".$this->secure->checkStr($element["repkey"],1)."'></div>\n";
1212
        $show .= "<div class='inputbox'><label for='rproto'>Протокол доступа:</label> <input type='text' name='rproto' value='".$this->secure->checkStr($element["proto"],1)."'></div>\n";
1213
        $show .= "<div class='inputbox'><label for='rhost'>Хост репозитория:</label> <input type='text' name='rhost' value='".$this->secure->checkStr($element["rhost"],1)."'></div>\n";
1214
        $show .= "<div class='inputbox'><label for='rfolder'>Корневая папка:</label> <input type='text' name='rfolder' value='".$this->secure->checkStr($element["rfolder"],1)."'></div>\n";
558 alex-w 1215
        $show .= "<div class='inputbox'><label for='rtype'>Тип репозитория:</label> ".$this->showRepType($this->secure->checkInt($element["rtype_id"]), "rtype")."</div>\n";
564 alex-w 1216
        $show .= "<div class='inputbox'><label for='rsects'>Секции репозитория:</label> <div class='formwrapper'>".$this->showSectionsList("rsects",$sRepID,"innerhtml")."</div></div>\n";
556 alex-w 1217
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
1218
 
547 alex-w 1219
        return $show;
556 alex-w 1220
        return $show;
547 alex-w 1221
    }
560 alex-w 1222
 
304 alex-w 1223
}
1224
 
356 alex-w 1225
?>