Хранилища Subversion ant

Редакция

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

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for Debian and
6
 *  distributives, based on Debian
7
 *  http://alex-w.org.ru/p/antng/
8
 *
9
 *  Copyright (c) 2009 Alexander Wolf
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
11
 *  http://alex-w.org.ru/p/antng/license
12
 *
13
 */
14
 
15
class Core {
308 alex-w 16
    protected $db       = NULL;
17
    protected $prefix   = NULL;
313 alex-w 18
    protected $secure   = NULL;    
359 alex-w 19
    protected $cookie   = NULL;
304 alex-w 20
 
463 alex-w 21
    /**
22
     * Конструктор класса Core - ядро генератора
23
     *
24
     * @author Alexander Wolf
25
     * @category Core
26
     *
27
     * @param string $database
28
     * @param string $prefix
29
     * @param object $secure
30
     * @param string $cookie
31
     */
368 alex-w 32
    public function __construct($database, $prefix, $secure, $cookie) {
308 alex-w 33
        $this->db       = $database;
34
        $this->prefix   = $prefix;
359 alex-w 35
        $this->secure   = $secure;
36
        $this->cookie   = $cookie;
307 alex-w 37
    }
38
 
463 alex-w 39
    /**
40
     * Получение данных о настройке
41
     *
42
     * @author Alexander Wolf
43
     * @category Core
44
     *
45
     * @param string $attr
46
     * @return array
47
     */
368 alex-w 48
    public function getOption($attr) {
308 alex-w 49
        $result = array();
315 alex-w 50
        $query = "SELECT optvalue FROM ".$this->prefix."settings WHERE opt='".$this->secure->checkStr($attr)."'";
314 alex-w 51
        $rq =& $this->db->query($query);
308 alex-w 52
        if ($rq->numRows()!=0) {
53
            $rq->fetchInto($element);
54
            $result["ERR"] = 0;
55
            $result["OptValue"] = $element["optvalue"];
56
        } else {
57
            $result["ERR"] = 1;
58
            $result["ERRINFO"] = "Empty result";
59
        }
60
        return $result;
61
    }
62
 
463 alex-w 63
    /**
64
     * Установка данных о настройке
65
     *
66
     * @author Alexander Wolf
67
     * @category Core
68
     *
69
     * @param string $attr
70
     * @param string $value
71
     * @return array
72
     */
368 alex-w 73
    public function setOption($attr, $value) {
359 alex-w 74
        $result = array();
75
 
76
        if ($attr != "passwd") {
77
            $sValue = $this->secure->checkStr($value);
78
        } else {
79
            $sValue = $value;
80
        }
81
 
82
        $query = "UPDATE ".$this->prefix."settings SET optvalue='".$sValue."' WHERE opt='".$attr."'";
83
        $rq =& $this->db->query($query);
84
        if (PEAR::isError($this->db)) {
85
            $result["ERR"] = 1;
86
            $result["ERRINFO"] = $this->db->getMessage();
87
        } else {
88
            $result["ERR"] = 0;
89
        }
90
 
91
        return $result;
92
    }
93
 
463 alex-w 94
    /**
95
     * Создание настройки
96
     *
97
     * @author Alexander Wolf
98
     * @category Core
99
     *
100
     * @param string $attr
101
     * @param string $value
102
     * @return array
103
     */
368 alex-w 104
    public function addOption($attr, $value) {
359 alex-w 105
        $result = array();
106
        $sValue = $this->secure->checkStr($value);
107
 
108
        $query = "INSERT INTO ".$this->prefix."settings SET opt='".$attr."', optvalue='".$sValue."'";
109
        $rq =& $this->db->query($query);
110
        if (PEAR::isError($this->db)) {
111
            $result["ERR"] = 1;
112
            $result["ERRINFO"] = $this->db->getMessage();
113
        } else {
114
            $result["ERR"] = 0;
115
        }
116
 
117
        return $result;
118
    }
463 alex-w 119
 
120
    /**
467 alex-w 121
     * Получение и отображение списка дистрибутвов
463 alex-w 122
     *
123
     * @author Alexander Wolf
124
     * @category Core
125
     * @deprecated may be deprecated XXX
126
     *
127
     * @param string $name
128
     * @param string $heads
129
     * @param string $info
130
     * @param string $format
131
     * @return string
132
     */
393 alex-w 133
    public function showDistributionList($name, $heads = "", $info = "", $format = 'html') {
315 alex-w 134
        $query = "SELECT * FROM ".$this->prefix."distribution ORDER BY dist_id ASC";
317 alex-w 135
        $rq =& $this->db->query($query);
315 alex-w 136
        switch ($format) {
137
            case 'html':
394 alex-w 138
                $show  = "<fieldset><legend>".$heads."</legend>\n<select id='".$name."' name='".$name."'>\n";
390 alex-w 139
                $show .= "<option value=''>".$info."</option>\n";
315 alex-w 140
                while ($rq->fetchInto($element)) {
141
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
142
                }
317 alex-w 143
                $show .= "</select></fieldset>";
315 alex-w 144
                break;
145
            case 'json':
317 alex-w 146
                $show = '[{value:"",text:"'.$info.'"}';                
315 alex-w 147
                while ($rq->fetchInto($element)) {
148
                    $show .= ',{value:"'.$this->secure->checkInt($element["dist_id"]).'",text:"'.$this->secure->checkStr($element["distname"],1).'"}';
149
                }
150
                $show .= ']';
151
                break;
504 alex-w 152
            case 'innerhtml':
153
                $show = "<select id='".$name."' name='".$name."'>\n";
154
                while ($rq->fetchInto($element)) {
155
                    $show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
156
                }
157
                $show .= "</select>";
158
                break;
506 alex-w 159
            case 'list':
160
                $show = "<ul>";
161
                while ($rq->fetchInto($element)) {
509 alex-w 162
                    $show .= "<li>[<a href='".$heads."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["dist_id"])."'>править</a>][<a href='".$heads."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["dist_id"])."'>удалить</a>] ".$this->secure->checkStr($element["distname"],1)."</li>\n";
506 alex-w 163
                }
164
                $show .= "</ul>";
165
                break;
315 alex-w 166
        }
167
        return $show;
168
    }
169
 
463 alex-w 170
    /**
171
     * Получение названия дистрибутива
172
     *
173
     * @author Alexander Wolf
174
     * @category Core
175
     *
176
     * @param integer $distID
177
     * @return array
178
     */
368 alex-w 179
    public function getDistName($distID) {
315 alex-w 180
        $result = array();
181
        $query = "SELECT distname FROM ".$this->prefix."distribution WHERE dist_id='".$this->secure->checkInt($distID)."'";
182
        $rq =& $this->db->query($query);
183
        if (PEAR::isError($this->db)) {
184
            $result["ERR"] = 1;
185
            $result["ERRINFO"] = $this->db->getMessage();
186
        } else {
187
            $rq->fetchInto($element);
188
            $result["ERR"] = 0;
189
            $result["DistName"] = $this->secure->checkStr($element["distname"],1);
190
        }
191
 
192
        return $result;
193
    }
194
 
463 alex-w 195
    /**
196
     * Получение названия программы, ее версии и описания
197
     *
198
     * @author Alexander Wolf
199
     * @category Core
200
     *
201
     * @param string $attr
202
     * @return string
203
     */
383 alex-w 204
    public function getEngineAttr($attr = 'codename') {
205
        $cname = $this->getOption($attr);
382 alex-w 206
        return $this->secure->checkStr($cname["OptValue"],1);
381 alex-w 207
    }
208
 
463 alex-w 209
    /**
210
     * Получение и отображение списка версий дистрибутива
211
     *
212
     * @author Alexander Wolf
213
     * @category Core
214
     *
215
     * @param string $name
216
     * @param integer $distID
217
     * @param string $format
218
     * @return string
219
     */
509 alex-w 220
    public function showDistVersionsList($name, $distID, $format = 'html', $actor = '') {
316 alex-w 221
        $distname = $this->getDistName($distID);
509 alex-w 222
        if ($distID == 0) {
223
            $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";
224
        } else {
225
            $query = "SELECT * FROM ".$this->prefix."version WHERE dist_id='".$this->secure->checkInt($distID)."' ORDER BY version ASC";
226
        }
317 alex-w 227
        $rq =& $this->db->query($query);
315 alex-w 228
        switch ($format) {
229
            case 'html':
394 alex-w 230
                $show  = "<fieldset><legend>Версии ".$distname["DistName"]."</legend>\n<select id='".$name."' name='".$name."'>\n";
231
                $show .= "<option value=''>Выбери версию ".$distname["DistName"]."</option>\n";
315 alex-w 232
                while ($rq->fetchInto($element)) {
316 alex-w 233
                    $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 234
                }
317 alex-w 235
                $show .= "</select></fieldset>";
315 alex-w 236
                break;
237
            case 'json':
317 alex-w 238
                $show = '[{value:"",text:"Выбери версию '.$distname["DistName"].'"}';                
315 alex-w 239
                while ($rq->fetchInto($element)) {
316 alex-w 240
                    $show .= ',{value:"'.$this->secure->checkInt($element["version_id"]).'",text:"'.$this->secure->checkStr($element["version"],1).' '.$this->secure->checkStr($element["vname"],1).'"}';
315 alex-w 241
                }
242
                $show .= ']';
243
                break;
509 alex-w 244
            case 'list':
245
                $show = "<ul>\n";
246
                while ($rq->fetchInto($element)) {
247
                    $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$this->secure->checkInt($element["version_id"])."'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$this->secure->checkInt($element["version_id"])."'>удалить</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";
248
                }
249
                $show .= "</ul>";
250
                break;
315 alex-w 251
        }
252
        return $show;
253
    }
254
 
463 alex-w 255
    /**
256
     * Получение и отображение списка секций основного (официального) репозитория
257
     *
258
     * @author Alexander Wolf
259
     * @category Core
260
     *
261
     * @param integer $version
262
     * @param string $format
263
     * @return string
264
     */
368 alex-w 265
    public function showBranchesList($version, $format = 'html') {
317 alex-w 266
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='1'";
267
        $rq =& $this->db->query($query);
268
        $rq->fetchInto($types);
269
        $query  = "SELECT s.*,t.rtype FROM ".$this->prefix."section s ";
270
        $query .= "JOIN ".$this->prefix."sect2rep l ON s.sect_id=l.sect_id ";
271
        $query .= "JOIN ".$this->prefix."repository r ON r.rep_id=l.rep_id ";
272
        $query .= "JOIN ".$this->prefix."rtype t ON r.rtype_id=t.rtype_id ";
273
        $query .= "WHERE t.rtype_id='1' AND r.version='".$this->secure->checkInt($version)."'";
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') {
406 alex-w 303
        $query  = "SELECT rtype FROM ".$this->prefix."rtype WHERE rtype_id='".$this->secure->checkInt($reptype)."'";
317 alex-w 304
        $rq =& $this->db->query($query);
305
        $rq->fetchInto($types);
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':
310
                $show = "<fieldset><legend>".$this->secure->checkStr($types["rtype"],1)."</legend>\n";
311
                while ($rq->fetchInto($types)) {
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();
516 alex-w 338
        $sDName = $this->secure->checkStr($distname,1);
321 alex-w 339
        $sDType = $this->secure->checkInt($disttype);
516 alex-w 340
        $sDUAgt = $this->secure->checkStr($distua,1);
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
     */
368
    public function updateDistribution($distID, $distname, $disttype, $distua, $distlogo) {
369
        $result = array();
370
        $sDID   = $this->secure->checkInt($distID);
516 alex-w 371
        $sDName = $this->secure->checkStr($distname,1);
514 alex-w 372
        $sDType = $this->secure->checkInt($disttype);
516 alex-w 373
        $sDUAgt = $this->secure->checkStr($distua,1);
514 alex-w 374
        $sDLogo = $this->secure->checkInt($distlogo);
375
 
376
        $query = "UPDATE ".$this->prefix."distribution SET distname='".$sDName."', distua='".$sDUAgt."', disttype='".$sDType."', distlogo='".$sDLogo."' WHERE dist_id='".$sDID."'";
377
        $rq =& $this->db->query($query);
378
        if (PEAR::isError($this->db)) {
379
            $result["ERR"] = 1;
380
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 381
        } else {            
514 alex-w 382
            $result["ERR"] = 0;
383
        }
384
 
385
        return $result;
386
    }
387
 
388
    /**
389
     * Удаление информации о дистрибутиве
390
     *
391
     * @author Alexander Wolf
392
     * @category Core
393
     *
394
     * @param integer $distID
395
     * @return array
396
     */
397
    public function dropDistribution($distID) {
398
        $result = array();
399
        $sDID   = $this->secure->checkInt($distID);
400
 
401
        // Удаление дистрибутива
402
        $query = "DELETE FROM ".$this->prefix."distribution WHERE dist_id='".$sDID."'";
403
        $rq =& $this->db->query($query);
404
        if (PEAR::isError($this->db)) {
405
            $result["ERR"] = 1;
406
            $result["ERRINFO"] = $this->db->getMessage();
519 alex-w 407
        } else {            
514 alex-w 408
            $result["ERR"] = 0;
409
        }
410
 
411
        // Удаление версий дистрибутива
412
        $query = "DELETE FROM ".$this->prefix."version WHERE dist_id='".$sDID."'";
413
        $rq =& $this->db->query($query);
414
        if (PEAR::isError($this->db)) {
415
            $result["ERR"] = 1;
416
            $result["ERRINFO"] = $this->db->getMessage();
519 alex-w 417
        } else {            
514 alex-w 418
            $result["ERR"] = 0;
419
        }
420
 
421
        return $result;
422
    }
423
 
424
    /**
463 alex-w 425
     * Добавление поддержки новой версии apt-дистрибутива
426
     *
427
     * @author Alexander Wolf
428
     * @category Core
429
     *
430
     * @param integer $distID
431
     * @param integer $version
432
     * @param string $vname
433
     * @param integer $vcodename
434
     * @return array
435
     */
368 alex-w 436
    public function addDistVersion($distID, $version, $vname = "", $vcodename = "") {
356 alex-w 437
        $result = array();
463 alex-w 438
        $sDistID    = $this->secure->checkInt($distID);
516 alex-w 439
        $sDVersion  = $this->secure->checkStr($version,1);
440
        $sDVName    = $this->secure->checkStr($vname,1);
441
        $sDVCName   = $this->secure->checkStr($vcodename,1);
356 alex-w 442
 
443
        $query = "INSERT INTO ".$this->prefix."version SET dist_id='".$sDistID."', vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."'";
444
        $rq =& $this->db->query($query);
445
        if (PEAR::isError($this->db)) {
446
            $result["ERR"] = 1;
447
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 448
        } else {            
356 alex-w 449
            $result["ERR"] = 0;
450
        }
451
 
452
        return $result;
453
    }
358 alex-w 454
 
463 alex-w 455
    /**
514 alex-w 456
     * Редактирование информации о версии дистрибутива
457
     *
458
     * @author Alexander Wolf
459
     * @category Core
460
     *
461
     * @param integer $versionID
462
     * @param string $version
463
     * @param string $vname
464
     * @param string $vcodename
465
     * @return array
466
     */
467
    public function updateDistVersion($versionID, $version, $vname = "", $vcodename = "") {
468
        $result = array();
469
        $sVersID    = $this->secure->checkInt($versionID);
516 alex-w 470
        $sDVersion  = $this->secure->checkStr($version,1);
471
        $sDVName    = $this->secure->checkStr($vname,1);
472
        $sDVCName   = $this->secure->checkStr($vcodename,1);
514 alex-w 473
 
474
        $query = "UPDATE ".$this->prefix."version SET vname='".$sDVName."', version='".$sDVersion."', vcodename='".$sDVCName."' WHERE version_id='".$sVersID."'";
475
        $rq =& $this->db->query($query);
476
        if (PEAR::isError($this->db)) {
477
            $result["ERR"] = 1;
478
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 479
        } else {            
514 alex-w 480
            $result["ERR"] = 0;
481
        }
482
 
483
        return $result;
484
    }
485
 
486
    /**
487
     * Удаление информации о версии дистрибутива
488
     *
489
     * @author Alexander Wolf
490
     * @category Core
491
     *
492
     * @param integer $versionID
493
     * @return array
494
     */
495
    public function dropDistVersion($versionID) {
496
        $result = array();
497
        $sVersID    = $this->secure->checkInt($versionID);
498
 
499
        // Удаление версии дистрибутива
500
        $query = "DELETE FROM ".$this->prefix."version WHERE version_id='".$sVersID."'";
501
        $rq =& $this->db->query($query);
502
        if (PEAR::isError($this->db)) {
503
            $result["ERR"] = 1;
504
            $result["ERRINFO"] = $this->db->getMessage();
515 alex-w 505
        } else {            
514 alex-w 506
            $result["ERR"] = 0;
507
        }
508
 
509
        // Удаление репозиториев этой версии дистрибутива
510
        $query = "DELETE FROM ".$this->prefix."repository WHERE version='".$sVersID."'";
511
        $rq =& $this->db->query($query);
512
        if (PEAR::isError($this->db)) {
513
            $result["ERR"] = 1;
514
            $result["ERRINFO"] = $this->db->getMessage();
517 alex-w 515
        } else {            
514 alex-w 516
            $result["ERR"] = 0;
517
        }
518
 
519
        return $result;
520
    }
521
 
522
    /**
463 alex-w 523
     * Отображение типа дистрибутива
524
     *
525
     * @author Alexander Wolf
526
     * @category Core
527
     *
528
     * @param string $name
529
     * @param byte $type
530
     * @return string
531
     */
368 alex-w 532
    public function showDistTypeForm($name = "dtype",$type = 0) {
329 alex-w 533
        $query = "SELECT * FROM ".$this->prefix."dtype";
534
        $rq =& $this->db->query($query);
535
        $show = "<select name='".$name."' id='".$name."'>\n";
536
        while ($rq->fetchInto($element)) {
347 alex-w 537
            if ($element["type_id"] == $type) {
538
                $show .= "<option value='".$element["type_id"]."' selected>".$this->secure->checkStr($element["type"],1)."</option>\n";
329 alex-w 539
            } else {
347 alex-w 540
                $show .= "<option value='".$element["type_id"]."'>".$this->secure->checkStr($element["type"],1)."</option>\n";
329 alex-w 541
            }
542
        }
543
        $show .= "</select>";
544
 
545
        return $show;
546
    }
547
 
463 alex-w 548
    /**
549
     * Отображение формы создания и редактирования apt-дистрибутива
550
     *
551
     * @author Alexander Wolf
552
     * @category Core
553
     *
554
     * @param integer $distID
555
     * @return string
556
     */
511 alex-w 557
    public function showDistributionForm($distID = 0, $info = '') {
329 alex-w 558
        $sDistID = $this->secure->checkInt($distID);
511 alex-w 559
        $sInfo = $this->secure->checkStr($info, 1);
560
        if ($sInfo == "") {
561
            $sInfo = "Дистрибутив";
562
        }
329 alex-w 563
        if ($sDistID != 0) {
564
            // Режим редактирования
565
            $query = "SELECT * FROM ".$this->prefix."distribution WHERE dist_id='".$sDistID."'";
566
            $rq =& $this->db->query($query);
567
            $rq->fetchInto($element);
568
        }
569
 
570
        if ($element["distlogo"] == 1) {
380 alex-w 571
            $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 572
        } else {
380 alex-w 573
            $image = "<img src='./img/d/empty-logo.png' width='32' height='32' id='adm-dist-logo' alt='Логотип дистрибутива' title='Логотип дистрибутива не загружен'>";
329 alex-w 574
        }
575
 
511 alex-w 576
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
350 alex-w 577
        $show .= "<div class='inputbox'><label for='dname'>Название дистрибутива:</label> <input type='text' name='dname' id='dname' value='".$this->secure->checkStr($element["distname"],1)."'></div>\n";
578
        $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 579
        $show .= "<div class='inputbox'><label for='dtype'>Тип дистрибутива:</label> ".$this->showDistTypeForm("dtype",$element["disttype"])."</div>\n";
348 alex-w 580
        $show .= "<div class='inputbox'><table><tr><td class='td-name'>Логотип дистрибутива:</td>\n";
329 alex-w 581
        $show .= "<td>".$image."</td>\n<td><input type='file' name='distlogo'></td>\n</tr></table>\n</div>\n";
350 alex-w 582
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
329 alex-w 583
 
584
        return $show;
585
    }
586
 
358 alex-w 587
    // sourses.list
423 alex-w 588
    public function showSourcesList($distID,$versID,$sectIDs,$repIDs) {
589
       //TODO Написать генератор sources.list       
358 alex-w 590
    }
522 alex-w 591
 
463 alex-w 592
    /**
522 alex-w 593
     * Показывает список секций
594
     *
595
     * @author Alexander Wolf
596
     * @category Core
597
     *
598
     * @param string $name
599
     * @param string $actor
600
     * @return string
601
     */
602
    public function showSectionsList($name, $actor) {
603
        $query = "SELECT * FROM ".$this->prefix."section";
604
        $rq =& $this->db->query($query);
605
        $show = "<ul>\n";
606
        while ($rq->fetchInto($element)) {
607
            $show .= "<li>[<a href='".$actor."?mode=".$name."&action=edit&uuid=".$element["sect_id"]."'>править</a>][<a href='".$actor."?mode=".$name."&action=delete&uuid=".$element["sect_id"]."'>удалить</a>] ".$this->secure->checkStr($element["secname"],1)."</li>\n";
608
        }
609
        $show .= "</ul>";
610
 
611
        return $show;
612
    }
613
 
523 alex-w 614
    /**
615
     * Вывод формы редактирования/добавления секций
616
     *
617
     * @author Alexander Wolf
618
     * @category Core
619
     *
620
     * @param integer $sectionID
621
     * @param string $info
622
     * @return string
623
     */
624
    public function showSectionsForm($sectionID = 0, $info = "") {
522 alex-w 625
        $sSectID = $this->secure->checkInt($sectionID);
626
        $sInfo = $this->secure->checkStr($info, 1);
627
        if ($sInfo == "") {
628
            $sInfo = "Секция";
629
        }
630
        if ($sSectID != 0) {
631
            // Режим редактирования
632
            $query = "SELECT * FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
633
            $rq =& $this->db->query($query);
634
            $rq->fetchInto($element);
635
        }
636
 
637
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
638
        $show .= "<div class='inputbox'><label for='sname'>Название секции:</label> <input type='text' name='sname' id='sname' value='".$this->secure->checkStr($element["secname"],1)."'></div>\n";
639
        $show .= "<div class='inputbox'><label for='sinfo'>Описание секции:</label> <input type='text' name='sinfo' id='sinfo' value='".$this->secure->checkStr($element["sectinfo"],1)."'></div>\n";
640
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div>\n</fieldset>\n";
641
 
642
        return $show;
643
    }
644
 
645
    /**
523 alex-w 646
     * Обновление информации о секции
647
     *
648
     * @author Alexander Wolf
649
     * @category Core
650
     *
651
     * @param integer $sectionID
652
     * @param string $sname
653
     * @param string $sinfo
654
     * @return array
655
     */
656
    public function updateSection($sectionID, $sname, $sinfo = "") {
657
        $result = array();
658
        $sSectID    = $this->secure->checkInt($sectionID);
659
        $sSName     = $this->secure->checkStr($sname,1);
660
        $sSInfo     = $this->secure->checkStr($sinfo,1);
661
 
662
        $query = "UPDATE ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."' WHERE sect_id='".$sSectID."'";
663
        $rq =& $this->db->query($query);
664
        if (PEAR::isError($this->db)) {
665
            $result["ERR"] = 1;
666
            $result["ERRINFO"] = $this->db->getMessage();
667
        } else {
668
            $result["ERR"] = 0;
669
        }
670
 
671
        return $result;
672
    }
673
 
674
    /**
675
     * Удаление информации о секции
676
     *
677
     * @author Alexander Wolf
678
     * @category Core
679
     *
680
     * @param integer $sectionID
681
     * @return array
682
     */
683
    public function dropSection($sectionID) {
684
        $result = array();
685
        $sSectID    = $this->secure->checkInt($sectionID);
686
 
687
        // Удаление секции
688
        $query = "DELETE FROM ".$this->prefix."section WHERE sect_id='".$sSectID."'";
689
        $rq =& $this->db->query($query);
690
        if (PEAR::isError($this->db)) {
691
            $result["ERR"] = 1;
692
            $result["ERRINFO"] = $this->db->getMessage();
693
        } else {
694
            $result["ERR"] = 0;
695
        }
696
 
697
        return $result;
698
    }
699
 
700
    /**
701
     * Добавление новой секции
702
     *
703
     * @author Alexander Wolf
704
     * @category Core
705
     *
706
     * @param string $sname
707
     * @param string $sinfo
708
     * @return array
709
     */
710
    public function addSection($sname, $sinfo = "") {
711
        $result = array();
712
        $sSName = $this->secure->checkStr($sname,1);
713
        $sSInfo = $this->secure->checkStr($sinfo,1);
714
 
715
        $query = "INSERT INTO ".$this->prefix."section SET secname='".$sSName."', sectinfo='".$sSInfo."'";
716
        $rq =& $this->db->query($query);
717
        if (PEAR::isError($this->db)) {
718
            $result["ERR"] = 1;
719
            $result["ERRINFO"] = $this->db->getMessage();
720
        } else {
721
            $result["ERR"] = 0;
722
        }
723
 
724
        return $result;
725
    }
726
 
727
    /**
463 alex-w 728
     * Проверка пароля (из формы авторизации)
729
     *
730
     * @author Alexander Wolf
731
     * @category Core
732
     *
733
     * @param string $word
734
     * @return array
735
     */
368 alex-w 736
    public function checkSign($word) {
359 alex-w 737
        $result = array();
738
 
739
        $sHash = $this->secure->encryptStr($word);
740
        $pwd   = $this->getOption("passwd");
741
        if ($sHash == $pwd["OptValue"]) {
742
            $result["ERR"] = 0;
743
            $result["Location"] = "manager.php";
744
            setcookie($this->cookie, $sHash);
745
        } else {
746
            $result["ERR"] = 1;
747
            $result["ERRINFO"] = "Password not valid";
368 alex-w 748
            $result["Location"] = "manager.php?error=1";
359 alex-w 749
        }
750
 
751
        return $result;
358 alex-w 752
    }
357 alex-w 753
 
463 alex-w 754
    /**
755
     * Проверка пароля (из cookies)
756
     *
757
     * @author Alexander Wolf
758
     * @category Core
759
     *
760
     * @param string $hash
761
     * @return array
762
     */
368 alex-w 763
    public function checkCookieSign($hash) {
359 alex-w 764
        $result = array();
765
 
766
        $pwd = $this->getOption("passwd");
767
        if ($hash == $pwd["OptValue"]) {
768
            $result["ERR"] = 0;
769
        } else {
770
            $result["ERR"] = 1;
771
            $result["ERRINFO"] = "Hash not valid";
368 alex-w 772
            $result["Location"] = "manager.php";
359 alex-w 773
        }
774
 
775
        return $result;
776
    }
777
 
463 alex-w 778
    /**
779
     * Форма ввода пароля
780
     *
781
     * @author Alexander Wolf
782
     * @category Core
783
     *
784
     * @return string
785
     */
368 alex-w 786
    public function showSigninForm() {
425 alex-w 787
        $show  = "<div id='regform'>";
788
        $show .= "<form action='process.php' method='post'>\n";
368 alex-w 789
        $show .= "<fieldset><legend>Пароль</legend>\n";
790
        $show .= "<input type='hidden' name='mode' value='authorize'>\n";
427 alex-w 791
        $show .= "<input type='password' name='word' value=''>\n";
368 alex-w 792
        $show .= "<input type='submit' value=' Войти '>\n";
425 alex-w 793
        $show .= "</fieldset>\n</form></div>\n";
368 alex-w 794
 
795
        return $show;
796
    }
797
 
463 alex-w 798
    /**
799
     * Обновление пароля
800
     *
801
     * @author Alexander Wolf
802
     * @category Core
803
     *
804
     * @param string $word1
805
     * @param string $word2
806
     * @return array
807
     */
368 alex-w 808
    public function updatePassword($word1, $word2) {
359 alex-w 809
        $result = array();
810
 
811
        if ($word1 == $word2) {
812
            $sWord = $this->secure->encryptStr($word1);
813
            $r = $this->setOption("passwd", $sWord);
814
            $result = $r;
815
        } else {
816
            $result["ERR"] = 1;
817
            $result["ERRINFO"] = "Passwords is mismatch";
818
        }
819
 
820
        return $result;
821
    }
822
 
504 alex-w 823
    /**
509 alex-w 824
     * Отображение формы создания и редактирования версии apt-дистрибутива
504 alex-w 825
     *
826
     * @author Alexander Wolf
827
     * @category Core
828
     *
829
     * @param string $name
830
     * @param string $actor
831
     * @param integer $versionID
832
     * @return string
833
     */
511 alex-w 834
    public function showDistVersionsForm($versionID = 0, $info = '') {
509 alex-w 835
        $sVersionID = $this->secure->checkInt($versionID);
511 alex-w 836
        $sInfo = $this->secure->checkStr($info, 1);
837
        if ($sInfo == "") {
838
            $sInfo = "Версия дистрибутива";
839
        }
509 alex-w 840
        if ($sVersionID != 0) {
841
            // Режим редактирования
497 alex-w 842
            $query = "SELECT * FROM ".$this->prefix."version v JOIN ".$this->prefix."distribution d ON v.dist_id=d.dist_id WHERE v.version_id='".$versionID."'";
843
            $rq =& $this->db->query($query);
844
            $rq->fetchInto($element);
509 alex-w 845
        }
846
 
511 alex-w 847
        $show  = "<fieldset><legend>".$sInfo."</legend>\n";
510 alex-w 848
        if ($sVersionID != 0) {
849
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> <input type='text' name='distname' value='".$this->secure->checkStr($element["distname"],1)."' readonly='readonly'></div>\n";
850
        } else {
851
            $show .= "<div class='inputbox'><label for='distname'>Дистрибутив:</label> ".$this->showDistributionList("distname", "", "", "innerhtml")."</div>\n";
852
        }
509 alex-w 853
        $show .= "<div class='inputbox'><label for='vname'>Название версии:</label> <input type='text' name='vname' value='".$this->secure->checkStr($element["vname"],1)."'></div>\n";
854
        $show .= "<div class='inputbox'><label for='version'>Номер версии:</label> <input type='text' name='version' value='".$this->secure->checkStr($element["version"],1)."'></div>\n";
855
        $show .= "<div class='inputbox'><label for='vcodename'>Кодовое имя версии:</label> <input type='text' name='vcodename' value='".$this->secure->checkStr($element["vcodename"],1)."'></div>\n";
856
        $show .= "<div class='inputbox'><input type='submit' value=' Отправить данные '></div></fieldset>\n";
495 alex-w 857
 
504 alex-w 858
        return $show;
509 alex-w 859
    }    
504 alex-w 860
 
520 alex-w 861
    /**
862
     * Парсер схемы адреса репозитория
863
     * FIXME Возможно не потребуется
864
     *
865
     * @author Alexander Wolf
866
     * @category Core
867
     *
868
     * @param string $repstring
869
     * @return integer
870
     */
871
    public function repositoryParser($repstring) {
872
        $tokens = array();
873
        $sections = array();
874
        $tokens = split(" ",$repstring);
875
 
876
        if ($tokens[0] == "deb") {
877
            // debian/ubuntu репозиторий "type proto://host/folder distr sections"
878
            $url = parse_url($tokens[1]);
879
            $distr  = $tokens[2];
880
 
881
            for($i=3;$i<count($tokens);$i++) {
882
                $sections[] = $tokens[$i];
883
            }
884
        } else {
885
            // altlinux репозиторий "type [sign] proto://host/folder base repname"
886
            if (stripos($tokens[1],"]")!=0) {
887
                $sign = $tokens[1];
888
                $url = parse_url($tokens[2]);
889
                $base = $tokens[3];
890
                $repname = $tokens[4];
891
            } else {
892
                $url = parse_url($tokens[1]);
893
                $base = $tokens[2];
894
                $repname = $tokens[3];
895
            }
896
        }
897
 
898
        $proto      = $url["scheme"]."://";
899
        $addr       = $url["host"];
900
        if ($url["port"]!="") {
901
            $addr .= ":".$url["port"];
902
        }
903
        $path       = $url["path"];
904
 
905
        return 0;
906
    }
907
 
535 alex-w 908
    public function uploadPicture($path, $dist, $datafile) {
909
        $folder   = $path.$dist."-orig.png";
910
        $folderN  = $path.$dist.".png";
911
        $folderEM = $path.$dist."-em.png";
912
 
913
        $distlogo = 0;
914
        if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
915
            chmod($folder, 0644);
916
            list($width, $height) = GetImageSize($folder);
917
            $percent = 32/$height;
918
            $newwidth = $width * $percent;
919
            $newheight = $height * $percent;
920
 
921
            $output = ImageCreateTrueColor($newwidth, $newheight);
922
            $source = ImageCreateFromPNG($folder);
923
 
924
            ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
925
            ImagePNG($output, $folderEM);
926
 
927
            $percent = 15/$height;
928
            $newwidth = $width * $percent;
929
            $newheight = $height * $percent;
930
 
931
            $output = ImageCreateTrueColor($newwidth, $newheight);
932
 
933
            ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
934
            ImagePNG($output, $folderN);
935
 
936
            unlink($folder);
937
            $distlogo = 1;
938
        }
939
        return $distlogo;
940
    }
304 alex-w 941
}
942
 
356 alex-w 943
?>