Хранилища Subversion ant

Редакция

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

Редакция Автор № строки Строка
41 alex-w 1
<?php
2
 
198 alex-w 3
/**
4
 * Project:     Ant: sources.list generator
5
 * File:        core.php
6
 *
7
 * This library is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * This library is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
 *
21
 */
22
 
23
 
41 alex-w 24
class Core {
59 alex-w 25
 
217 diffor 26
	function getSourceList($distro,$version,$repos,$dblink) {
201 diffor 27
		// Fetch settings
59 alex-w 28
		$query =& $dblink->query("SELECT * FROM settings");
29
		$settings = array();
30
		while ($query->fetchInto($setting, DB_FETCHMODE_ASSOC)) {
202 diffor 31
		    $settings[stripslashes($setting["opt"])] = stripslashes($setting["optvalue"]);
59 alex-w 32
		};
202 diffor 33
		// Fetch info about distribution
201 diffor 34
		$query =& $dblink->query("SELECT * FROM version v JOIN distribution d ON d.dist_id=v.dist_id JOIN dtype p ON d.disttype=p.type_id WHERE v.dist_id='$distro' AND v.version_id='$version'");
35
		$query->fetchInto($infodist, DB_FETCHMODE_ASSOC);
36
		// Fetch repos
202 diffor 37
		$porigid = -1; // Previous origin id
203 diffor 38
 
39
		for($i=0;$i<count($repos);$i++) {
217 diffor 40
		    $id=$repos[$i];
202 diffor 41
		    // Fetch info about origin and scheme
42
		    $sql =& $dblink->query("SELECT * FROM repository r JOIN ver2rep v ON r.rep_id=v.rep_id JOIN origin o ON o.orig_id=r.orig_id JOIN version v2 ON v.ver_id=v2.version_id JOIN scheme s ON s.scheme_id=r.scheme_id JOIN root r2 ON r2.root_id=r.root_id WHERE r.rep_id=".$id);
43
		    $sql->fetchInto($resinfo, DB_FETCHMODE_ASSOC);
44
		    $repscheme = stripslashes($resinfo["scheme"]);
45
		    // Fetch info about sections
46
		    $querysect =& $dblink->query("SELECT * FROM section s JOIN sect2rep r ON s.sect_id=r.sect_id WHERE r.rep_id='$resinfo[rep_id]'");
47
		    $sections = "";
48
		    while ($querysect->fetchInto($section,DB_FETCHMODE_ASSOC)) {
49
			$sections .= stripslashes($section["sectname"])." ";
50
		    }
51
		    // Conversion scheme
52
		    $repscheme = str_replace("{TYPE}",stripslashes($infodist["type"]),$repscheme);
53
		    $repscheme = str_replace("{PROTO}",$settings["proto"],$repscheme);
54
		    $repscheme = str_replace("{URL}",$settings["url"],$repscheme);
55
		    $repscheme = str_replace("{REP}",stripslashes($resinfo["repname"]),$repscheme);
56
		    $repscheme = str_replace("{DIST}",stripslashes($infodist["vcodename"]),$repscheme);
57
		    $repscheme = str_replace("{SECT}",$sections,$repscheme);
58
		    $repscheme = str_replace("{ROOT}",stripslashes($resinfo["root_folder"]),$repscheme);
59
		    // Comment if another origin
60
		    if($porigid != $resinfo["orig_id"]) {
203 diffor 61
			$result .= "### ".$resinfo["origin"]." ( ".$resinfo["desk"]." ) - ".$resinfo["homeurl"]." ###\n";
202 diffor 62
		    }
63
		    $porigid = $resinfo["orig_id"];
64
		    // Result
65
		    $result .= "# ".stripslashes($resinfo["repdescribe"])."\n".$repscheme."\n\n";
66
		}
67
		return $result;
59 alex-w 68
	}
69
 
205 alex-w 70
	// For backward compatibility for Modern and Telepathy interfaces. Current getRepList() crushed his.
204 alex-w 71
	function getRepListLegacy($distro,$version,$dblink) {
72
		$query =& $dblink->query("SELECT * FROM settings");
73
		$settings = array();
74
		while ($query->fetchInto($setting, DB_FETCHMODE_ASSOC)) {
75
			$settings[stripslashes($setting["opt"])] = stripslashes($setting["optvalue"]);
76
		};
77
		$query =& $dblink->query("SELECT * FROM version v JOIN distribution d ON d.dist_id=v.dist_id JOIN dtype p ON d.disttype=p.type_id WHERE v.dist_id='$distro' AND v.version_id='$version'");
78
		$query->fetchInto($infodist, DB_FETCHMODE_ASSOC);
79
		$query =& $dblink->query("SELECT * FROM repository r JOIN ver2rep v ON r.rep_id=v.rep_id JOIN version v2 ON v.ver_id=v2.version_id JOIN scheme s ON s.scheme_id=r.scheme_id JOIN root r2 ON r2.root_id=r.root_id WHERE v.ver_id='$version' ORDER BY r.rtype_id, r.scheme_id ASC");
80
		while ($query->fetchInto($resinfo, DB_FETCHMODE_ASSOC)) {
81
	    		$repscheme = stripslashes($resinfo["scheme"]);
82
 
83
	    		$querysect =& $dblink->query("SELECT * FROM section s JOIN sect2rep r ON s.sect_id=r.sect_id WHERE
84
r.rep_id='$resinfo[rep_id]'");
85
	    		$sections = "";
86
            		while ($querysect->fetchInto($section,DB_FETCHMODE_ASSOC)) {
87
                    		$sections .= stripslashes($section["sectname"])." ";
88
            		}
89
 
90
	    		$repscheme = str_replace("{TYPE}",stripslashes($infodist["type"]),$repscheme);
91
	    		$repscheme = str_replace("{PROTO}",$settings["proto"],$repscheme);
92
	    		$repscheme = str_replace("{URL}",$settings["url"],$repscheme);
93
            		$repscheme = str_replace("{REP}",stripslashes($resinfo["repname"]),$repscheme);
94
	    		$repscheme = str_replace("{DIST}",stripslashes($infodist["vcodename"]),$repscheme);
95
	    		$repscheme = str_replace("{SECT}",$sections,$repscheme);
96
			$repscheme = str_replace("{ROOT}",stripslashes($resinfo["root_folder"]),$repscheme);
97
 
98
	    		$result .= "# ".stripslashes($resinfo["repdescribe"])."\n".$repscheme."\n\n";
99
        	}
100
		return $result;
101
	}
102
 
62 alex-w 103
	function getInfo($message,$dblink){
104
		$answer = array();
105
 
41 alex-w 106
		if (preg_match("/linux/i",$message)) {
62 alex-w 107
			$dist_id = 0;
108
			$dist_info = "";
63 alex-w 109
			$vers_id = 0;
110
			$vers_info = "";
62 alex-w 111
			$qd =& $dblink->query("SELECT * FROM distribution");
112
			while ($qd->fetchInto($res, DB_FETCHMODE_ASSOC)) {
113
				if (preg_match("/".stripslashes($res["distua"])."/i",$message)) {
114
					$dist_id = $res["dist_id"];
115
					$dist_info = stripslashes($res["distname"]);
116
					$qv =& $dblink->query("SELECT * FROM version WHERE dist_id='$dist_id'");
117
					while($qv->fetchInto($rev, DB_FETCHMODE_ASSOC)) {
63 alex-w 118
						if (preg_match("/".stripslashes($rev["vcodename"])."/i",$message)) {
119
							$vers_id = $rev["version_id"];
120
							$vers_info = stripslashes($rev["version"])." &#8220;".stripslashes($rev["vname"])."&#8221;";
121
						}
62 alex-w 122
					}
123
				}
124
			}
125
			$answer[] = "Linux";
126
			$answer[] = "Судя по всему у Вас операционная система ";
127
			if ($dist_id!=0) {
128
				$answer[] = $dist_id;
129
				$answer[] = $dist_info;
130
			}
131
			if ($vers_id!=0) {
132
				$answer[] = $vers_id;
133
				$answer[] = $vers_info;
134
			}
135
 
41 alex-w 136
		} else {
62 alex-w 137
			$answer[] = "unknown";
138
			$answer[] = "Ресурс рассчитан явно не на Вашу операционную систему!";
41 alex-w 139
		}
62 alex-w 140
 
42 alex-w 141
		return $answer;
142
	}
70 alex-w 143
 
144
	function getInterfacesList($current,$dblink) {
145
		$url  = parse_url($current);
146
		$path = array();
147
		$path = split("/",$url["path"]);
148
		$currentIF = str_replace(".php","",$path[count($path)-1]);
149
		$req =& $dblink->query("SELECT * FROM interfaces WHERE interface NOT LIKE '$currentIF'");
74 alex-w 150
		$iflist = "<a href='./'>Интерфейсы</a>: ";
70 alex-w 151
		while ($req->fetchInto($if, DB_FETCHMODE_ASSOC)) {
152
			$iflist .= "<a href='./".stripslashes($if["interface"]).".php'>".strtolower(stripslashes($if["interfaceinfo"]))."</a>, ";
153
		}
154
		$iflist = substr($iflist, 0, strlen($iflist)-2);
155
		return $iflist;
156
	}
79 alex-w 157
 
158
	function getCSSList($dblink) {
159
		$req =& $dblink->query("SELECT * FROM distribution");
160
		if ($req->numRows()>0) {
83 alex-w 161
			$css = "<style type=\"text/css\">\n";
79 alex-w 162
			while ($req->fetchInto($dist, DB_FETCHMODE_ASSOC)) {
163
				if ($dist["distlogo"]) {
83 alex-w 164
					$css .= ".".stripslashes($dist["distua"])." { display: inline; padding-left: 15px; background: transparent url(./img/logo/".stripslashes($dist["distua"]).".png) top left no-repeat; }\n";
165
					$css .= ".".stripslashes($dist["distua"])."-em { display: inline; padding-left: 30px; background: transparent url(./img/logo/".stripslashes($dist["distua"])."-em.png) top left no-repeat; }\n";
79 alex-w 166
				} else {
167
					$css .= "";
168
				}
169
			}
83 alex-w 170
			$css .= "</style>";
79 alex-w 171
		} else {
172
			$css = "";
173
		}
174
		return $css;
175
	}
132 alex-w 176
 
133 alex-w 177
	function getSetting($setting, $dblink) {
132 alex-w 178
		$query =& $dblink->query("SELECT * FROM settings WHERE opt LIKE '".$setting."'");
179
		$query->fetchInto($sett, DB_FETCHMODE_ASSOC);
180
		return stripslashes($sett["optvalue"]);
181
	}
138 alex-w 182
 
183
	function getUUID($param) {
184
		$param_s = md5($param);
185
        	$time_low = bin2hex(substr($param_s,0, 4));
186
        	$time_mid = bin2hex(substr($param_s,4, 2));
187
        	$time_hi_and_version = bin2hex(substr($param_s,6, 2));
188
        	$clock_seq_hi_and_reserved = bin2hex(substr($param_s,8, 2));
189
        	$node = bin2hex(substr($param_s,10, 6));
190
 
191
	        $time_hi_and_version = hexdec($time_hi_and_version);
192
 	        $time_hi_and_version = $time_hi_and_version >> 4;
193
	        $time_hi_and_version = $time_hi_and_version | 0x4000;
194
 
195
        	$clock_seq_hi_and_reserved = hexdec($clock_seq_hi_and_reserved);
196
        	$clock_seq_hi_and_reserved = $clock_seq_hi_and_reserved >> 2;
197
        	$clock_seq_hi_and_reserved = $clock_seq_hi_and_reserved | 0x8000;
198
 
199
        	return sprintf('%08s-%04s-%04x-%04x-%012s',$time_low, $time_mid, $time_hi_and_version, $clock_seq_hi_and_reserved, $node);
200
    	}
41 alex-w 201
 
192 sivan 202
 
217 diffor 203
    function getRepList($distro,$version,$dblink) {
203 diffor 204
	$query =& $dblink->query("SELECT * FROM repository r JOIN ver2rep v ON r.rep_id=v.rep_id JOIN origin o ON o.orig_id=r.orig_id JOIN version v2 ON v.ver_id=v2.version_id JOIN scheme s ON s.scheme_id=r.scheme_id JOIN root r2 ON r2.root_id=r.root_id WHERE v.ver_id='$version' ORDER BY r.rtype_id, r.scheme_id ASC");
217 diffor 205
	$i=-1;
203 diffor 206
	while ($query->fetchInto($resinfo, DB_FETCHMODE_ASSOC)) {
217 diffor 207
	    $i++;
208
	    $res[0][$i]=$resinfo["rep_id"];
209
	    $res[1][$i]=$resinfo["repname"];
210
	    $res[2][$i]=$resinfo["repdescribe"];
211
	    $res[3][$i]=$resinfo["defaultrep"];
203 diffor 212
	}
217 diffor 213
	return $res;
192 sivan 214
    }
203 diffor 215
}
41 alex-w 216
?>