Хранилища Subversion ant

Редакция

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

Редакция 526 Редакция 527
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 *  
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for Debian and
5
 *  Codename: ant-ng - generator of sources.list for Debian and
6
 *  distributives, based on Debian
6
 *  distributives, based on Debian
7
 *  http://alex-w.org.ru/p/antng/
7
 *  http://alex-w.org.ru/p/antng/
8
 *
8
 *
9
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Copyright (c) 2009 Alexander Wolf
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
11
 *  http://alex-w.org.ru/p/antng/license
11
 *  http://alex-w.org.ru/p/antng/license
12
 *
12
 *
13
 */
13
 */
14
14
15
require_once dirname(__FILE__)."/init.php";
15
require_once dirname(__FILE__)."/init.php";
16
16
17
$mode = $_POST["mode"];
17
$mode = $_POST["mode"];
18
18
19
switch ($mode) {
19
switch ($mode) {
20
    case 'authorize':
20
    case 'authorize':
21
        $r = $core->checkSign($_POST["word"]);
21
        $r = $core->checkSign($_POST["word"]);
22
        header("Location: ".$r["Location"]."\n\n");
22
        header("Location: ".$r["Location"]."\n\n");
23
        break;
23
        break;
24
    case 'distributive-add':
24
    case 'distributive-add':
25
        // Добавление нового дистрибутива
25
        // Добавление нового дистрибутива
26
        $DName  = $secure->checkStr($_POST["dname"],1);
26
        $DName  = $secure->checkStr($_POST["dname"],1);
27
        $DUA    = $secure->checkStr($_POST["dua"],1);
27
        $DUA    = $secure->checkStr($_POST["dua"],1);
28
        $DType  = $secure->checkInt($_POST["dtype"]);
28
        $DType  = $secure->checkInt($_POST["dtype"]);
29
        $DLogo  = 0;
29
        $DLogo  = 0;
30
30
31
        if ($_FILES["distlogo"]["type"]!=0) {
31
        if ($_POST["distlogo"]!="") {
32
            $folder   = $picture.$DUA."-orig.png";
32
            $folder   = $picture.$DUA."-orig.png";
33
            $folderN  = $picture.$DUA.".png";
33
            $folderN  = $picture.$DUA.".png";
34
            $folderEM = $picture.$DUA."-em.png";
34
            $folderEM = $picture.$DUA."-em.png";
35
35
36
            if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
36
            if (move_uploaded_file($_FILES["distlogo"]["tmp_name"],$folder)) {
37
                chmod($folder, 0644);
37
                chmod($folder, 0644);
38
                list($width, $height) = GetImageSize($folder);
38
                list($width, $height) = GetImageSize($folder);
39
                $percent = 32/$height;
39
                $percent = 32/$height;
40
                $newwidth = $width * $percent;
40
                $newwidth = $width * $percent;
41
                $newheight = $height * $percent;
41
                $newheight = $height * $percent;
42
42
43
                $output = ImageCreateTrueColor($newwidth, $newheight);
43
                $output = ImageCreateTrueColor($newwidth, $newheight);
44
                $source = ImageCreateFromPNG($folder);
44
                $source = ImageCreateFromPNG($folder);
45
45
46
                ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
46
                ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
47
                ImagePNG($output, $folderEM);
47
                ImagePNG($output, $folderEM);
48
48
49
                $percent = 15/$height;
49
                $percent = 15/$height;
50
                $newwidth = $width * $percent;
50
                $newwidth = $width * $percent;
51
                $newheight = $height * $percent;
51
                $newheight = $height * $percent;
52
52
53
                $output = ImageCreateTrueColor($newwidth, $newheight);
53
                $output = ImageCreateTrueColor($newwidth, $newheight);
54
54
55
                ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
55
                ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
56
                ImagePNG($output, $folderN);
56
                ImagePNG($output, $folderN);
57
57
58
                unlink($folder);
58
                unlink($folder);
59
                $DLogo = 1;
59
                $DLogo = 1;
60
            }
60
            }
61
        }
61
        }
62
62
63
        $r = $core->addDistribution($DName, $DType, $DUA, $DLogo);
63
        $r = $core->addDistribution($DName, $DType, $DUA, $DLogo);
64
        if ($r["ERR"]==0) {
64
        if ($r["ERR"]==0) {
65
            header("Location: ".$manager."\n\n");
65
            header("Location: ".$manager."\n\n");
66
        } else {
66
        } else {
67
            echo $r["ERRINFO"];
67
            echo $r["ERRINFO"];
68
        }
68
        }
69
69
70
        break;
70
        break;
71
    case 'distributive-edit':
71
    case 'distributive-edit':
72
        // Редактирование информации о дистрибутиве
72
        // Редактирование информации о дистрибутиве
73
        $ID     = $secure->checkInt($_POST["distID"]);
73
        $ID     = $secure->checkInt($_POST["distID"]);
74
        $DName  = $secure->checkStr($_POST["dname"],1);
74
        $DName  = $secure->checkStr($_POST["dname"],1);
75
        $DUA    = $secure->checkStr($_POST["dua"],1);
75
        $DUA    = $secure->checkStr($_POST["dua"],1);
76
        $DType  = $secure->checkInt($_POST["dtype"]);
76
        $DType  = $secure->checkInt($_POST["dtype"]);
77
        $DLogo  = 0;
77
        $DLogo  = 0;
78
78
79
        // debug patch
-
 
80
        phpinfo();
-
 
81
-
 
82
        if ($_FILES["distlogo"]["type"]!=0) {
79
        if ($_POST["distlogo"]!="") {
83
            $folder   = $picture.$DUA."-orig.png";
80
            $folder   = $picture.$DUA."-orig.png";
84
            $folderN  = $picture.$DUA.".png";
81
            $folderN  = $picture.$DUA.".png";
85
            $folderEM = $picture.$DUA."-em.png";
82
            $folderEM = $picture.$DUA."-em.png";
86
83
87
            if (move_uploaded_file($datafile["distlogo"]["tmp_name"],$folder)) {
84
            if (move_uploaded_file($_FILES["distlogo"]["tmp_name"],$folder)) {
88
                chmod($folder, 0644);
85
                chmod($folder, 0644);
89
                list($width, $height) = GetImageSize($folder);
86
                list($width, $height) = GetImageSize($folder);
90
                $percent = 32/$height;
87
                $percent = 32/$height;
91
                $newwidth = $width * $percent;
88
                $newwidth = $width * $percent;
92
                $newheight = $height * $percent;
89
                $newheight = $height * $percent;
93
90
94
                $output = ImageCreateTrueColor($newwidth, $newheight);
91
                $output = ImageCreateTrueColor($newwidth, $newheight);
95
                $source = ImageCreateFromPNG($folder);
92
                $source = ImageCreateFromPNG($folder);
96
93
97
                ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
94
                ImageCopyResampled($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
98
                ImagePNG($output, $folderEM);
95
                ImagePNG($output, $folderEM);
99
96
100
                $percent = 15/$height;
97
                $percent = 15/$height;
101
                $newwidth = $width * $percent;
98
                $newwidth = $width * $percent;
102
                $newheight = $height * $percent;
99
                $newheight = $height * $percent;
103
100
104
                $output = ImageCreateTrueColor($newwidth, $newheight);
101
                $output = ImageCreateTrueColor($newwidth, $newheight);
105
102
106
                ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
103
                ImageCopyResized($output, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
107
                ImagePNG($output, $folderN);
104
                ImagePNG($output, $folderN);
108
105
109
                unlink($folder);
106
                unlink($folder);
110
                $DLogo = 1;
107
                $DLogo = 1;
111
            }
108
            }
112
        }
109
        }
113
110
114
        $r = $core->updateDistribution($ID, $DName, $DType, $DUA, $DLogo);
111
        $r = $core->updateDistribution($ID, $DName, $DType, $DUA, $DLogo);
115
        if ($r["ERR"]==0) {
112
        if ($r["ERR"]==0) {
116
           // header("Location: ".$manager."\n\n");
113
            header("Location: ".$manager."\n\n");
117
        } else {
114
        } else {
118
            echo $r["ERRINFO"];
115
            echo $r["ERRINFO"];
119
        }
116
        }
120
117
121
        break;
118
        break;
122
    case 'distributive-delete':
119
    case 'distributive-delete':
123
        // Удаление информации о дистрибутиве
120
        // Удаление информации о дистрибутиве
124
        $ID     = $secure->checkInt($_POST["distID"]);
121
        $ID     = $secure->checkInt($_POST["distID"]);
125
122
126
        $r = $core->dropDistribution($ID);
123
        $r = $core->dropDistribution($ID);
127
        if ($r["ERR"]==0) {
124
        if ($r["ERR"]==0) {
128
            header("Location: ".$manager."\n\n");
125
            header("Location: ".$manager."\n\n");
129
        } else {
126
        } else {
130
            echo $r["ERRINFO"];
127
            echo $r["ERRINFO"];
131
        }
128
        }
132
129
133
        break;
130
        break;
134
    case 'version-add':
131
    case 'version-add':
135
        // Добавление новой версии дистрибутива
132
        // Добавление новой версии дистрибутива
136
        $DistID = $secure->checkInt($_POST["distname"]);
133
        $DistID = $secure->checkInt($_POST["distname"]);
137
        $VName  = $secure->checkStr($_POST["vname"],1);
134
        $VName  = $secure->checkStr($_POST["vname"],1);
138
        $VNmbr  = $secure->checkStr($_POST["version"],1);
135
        $VNmbr  = $secure->checkStr($_POST["version"],1);
139
        $VCNme  = $secure->checkStr($_POST["vcodename"],1);
136
        $VCNme  = $secure->checkStr($_POST["vcodename"],1);
140
137
141
        $r = $core->addDistVersion($DistID, $VNmbr, $VName, $VCNme);
138
        $r = $core->addDistVersion($DistID, $VNmbr, $VName, $VCNme);
142
        if ($r["ERR"]==0) {
139
        if ($r["ERR"]==0) {
143
            header("Location: ".$manager."\n\n");
140
            header("Location: ".$manager."\n\n");
144
        } else {
141
        } else {
145
            echo $r["ERRINFO"];
142
            echo $r["ERRINFO"];
146
        }
143
        }
147
144
148
        break;
145
        break;
149
    case 'version-edit':
146
    case 'version-edit':
150
        // Редактирование версии дистрибутива
147
        // Редактирование версии дистрибутива
151
        $versID = $secure->checkInt($_POST["versionID"]);
148
        $versID = $secure->checkInt($_POST["versionID"]);
152
        $VName  = $secure->checkStr($_POST["vname"],1);
149
        $VName  = $secure->checkStr($_POST["vname"],1);
153
        $VNmbr  = $secure->checkStr($_POST["version"],1);
150
        $VNmbr  = $secure->checkStr($_POST["version"],1);
154
        $VCNme  = $secure->checkStr($_POST["vcodename"],1);
151
        $VCNme  = $secure->checkStr($_POST["vcodename"],1);
155
152
156
        $r = $core->updateDistVersion($versID, $VNmbr, $VName, $VCNme);
153
        $r = $core->updateDistVersion($versID, $VNmbr, $VName, $VCNme);
157
        if ($r["ERR"]==0) {
154
        if ($r["ERR"]==0) {
158
            header("Location: ".$manager."\n\n");
155
            header("Location: ".$manager."\n\n");
159
        } else {
156
        } else {
160
            echo $r["ERRINFO"];
157
            echo $r["ERRINFO"];
161
        }
158
        }
162
159
163
        break;
160
        break;
164
    case 'version-delete':
161
    case 'version-delete':
165
        // Удаление версии дистрибутива
162
        // Удаление версии дистрибутива
166
        $versID = $secure->checkInt($_POST["versionID"]);
163
        $versID = $secure->checkInt($_POST["versionID"]);
167
164
168
        $r = $core->dropDistVersion($versID);
165
        $r = $core->dropDistVersion($versID);
169
        if ($r["ERR"]==0) {
166
        if ($r["ERR"]==0) {
170
            header("Location: ".$manager."\n\n");
167
            header("Location: ".$manager."\n\n");
171
        } else {
168
        } else {
172
            echo $r["ERRINFO"];
169
            echo $r["ERRINFO"];
173
        }
170
        }
174
171
175
        break;
172
        break;
176
    case 'section-add':
173
    case 'section-add':
177
        // Добавление новой секции
174
        // Добавление новой секции
178
        $SName  = $secure->checkStr($_POST["sname"],1);
175
        $SName  = $secure->checkStr($_POST["sname"],1);
179
        $SInfo  = $secure->checkStr($_POST["sinfo"],1);
176
        $SInfo  = $secure->checkStr($_POST["sinfo"],1);
180
177
181
        $r = $core->addSection($SName, $SInfo);
178
        $r = $core->addSection($SName, $SInfo);
182
        if ($r["ERR"]==0) {
179
        if ($r["ERR"]==0) {
183
            header("Location: ".$manager."\n\n");
180
            header("Location: ".$manager."\n\n");
184
        } else {
181
        } else {
185
            echo $r["ERRINFO"];
182
            echo $r["ERRINFO"];
186
        }
183
        }
187
184
188
        break;
185
        break;
189
    case 'section-edit':
186
    case 'section-edit':
190
        // Редактирование информации о секции
187
        // Редактирование информации о секции
191
        $sectID = $secure->checkInt($_POST["sectionID"]);
188
        $sectID = $secure->checkInt($_POST["sectionID"]);
192
        $SName  = $secure->checkStr($_POST["sname"],1);
189
        $SName  = $secure->checkStr($_POST["sname"],1);
193
        $SInfo  = $secure->checkStr($_POST["sinfo"],1);
190
        $SInfo  = $secure->checkStr($_POST["sinfo"],1);
194
191
195
        $r = $core->updateSection($sectID, $SName, $SInfo);
192
        $r = $core->updateSection($sectID, $SName, $SInfo);
196
        if ($r["ERR"]==0) {
193
        if ($r["ERR"]==0) {
197
            header("Location: ".$manager."\n\n");
194
            header("Location: ".$manager."\n\n");
198
        } else {
195
        } else {
199
            echo $r["ERRINFO"];
196
            echo $r["ERRINFO"];
200
        }
197
        }
201
198
202
        break;
199
        break;
203
    case 'section-delete':
200
    case 'section-delete':
204
        // Удаление информации о секции
201
        // Удаление информации о секции
205
        $sectID = $secure->checkInt($_POST["sectionID"]);
202
        $sectID = $secure->checkInt($_POST["sectionID"]);
206
203
207
        $r = $core->dropSection($sectID);
204
        $r = $core->dropSection($sectID);
208
        if ($r["ERR"]==0) {
205
        if ($r["ERR"]==0) {
209
            header("Location: ".$manager."\n\n");
206
            header("Location: ".$manager."\n\n");
210
        } else {
207
        } else {
211
            echo $r["ERRINFO"];
208
            echo $r["ERRINFO"];
212
        }
209
        }
213
210
214
        break;
211
        break;
215
}
212
}
216
213
217
?>
214
?>
218
 
215