summaryrefslogtreecommitdiffstats
path: root/web/lib/pkgs.inc
blob: bd63ee2e47b8363f786ddc24bbec84cd3bd9e238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?
include_once("pkgs_po.inc");

# grab the current list of PackageCategories
#
function pkgCategories() {
	$cats = array();
	$dbh = db_connect();
	$q = "SELECT * FROM PackageCategories ";
	$q.= "ORDER BY Category ASC";
	$result = db_query($q, $dbh);
	if ($result) {
		while ($row = mysql_fetch_row($result)) {
			$cats[$row[0]] = $row[1];
		}
	}
	return $cats;
}

# grab the current list of PackageLocations
#
function pkgLocations() {
	$locs = array();
	$dbh = db_connect();
	$q = "SELECT * FROM PackageLocations ";
	$q.= "ORDER BY Location ASC";
	$result = db_query($q, $dbh);
	if ($result) {
		while ($row = mysql_fetch_row($result)) {
			$locs[$row[0]] = $row[1];
		}
	}
	return $locs;
}

# display the search form in a boxSoft style
#
function pkg_search_page($L="",$C="",$K="",$SB="",$O=0,$PP=25) {
	# L: PackageLocations.ID
	# C: PackageCategories.ID
	# K: Keywords
	# SB: Sort by
	# O: Row offset
	# PP: Per page
	$locs = pkgLocations();
	$cats = pkgCategories();
	$devs = getDevelopers();
	$tus = getTrustedUsers();
	$dbh = db_connect();

	print "<center>\n";
	print "<table cellspacing='3' class='boxSoft'>\n";
	print "<tr>\n";
	print "  <td class='boxSoftTitle' align='right'>\n";
	print "    <span class='boxSoftTitle'>".__("Search Criteria")."</span>\n";
	print "  </td>\n";
	print "</tr>\n";
	print "<tr>\n";
	print "  <td class='boxSoft'>\n";
	print "<form action='/pkgsearch.php' method='post'>\n";
	print "<input type='hidden' name='Action' value='SearchPkgs'>\n";
	print "<table style='width: 100%' align='center'>\n";

	print "<tr>\n";
	print "<td align='right'>\n";
	print "  <span class='f5'><span class='blue'>".__("Location");
	print "</span></span><br />\n";
	print "  <select name='L'>\n";
	print "  <option value=0> ".__("Any")."\n";
	while (list($id, $loc) = each($locs)) {
		if ($L == $id) {
			print "  <option value=".$id." selected> ".$loc."\n";
		} else {
			print "  <option value=".$id."> ".$loc."\n";
		}
	}
	print "  </select>\n";
	print "</td>\n";

	print "<td align='right'>\n";
	print "  <span class='f5'><span class='blue'>".__("Category");
	print "</span></span><br />\n";
	print "  <select name='C'>\n";
	print "  <option value=0> ".__("Any")."\n";
	while (list($id, $cat) = each($cats)) {
		if ($C == $id) {
			print "  <option value=".$id." selected> ".$cat."\n";
		} else {
			print "  <option value=".$id."> ".$cat."\n";
		}
	}
	print "  </select>\n";
	print "</td>\n";

	print "<td align='right'>\n";
	print "  <span class='f5'><span class='blue'>".__("Keywords");
	print "</span></span><br />\n";
	print "  <input type='text' name='K' size='35'";
	print " value='".$K."' maxlength='35'>\n";
	print "</td>\n";

	print "<td align='right'>\n";
	print "  <span class='f5'><span class='blue'>".__("Sort by");
	print "</span></span><br />\n";
	print "  <select name='SB'>\n";
	print "  <option value=n";
	$SB == "n" ? print "selected> " : print "> ";
	print __("Name")."\n";
	print "  <option value=c";
	$SB == "c" ? print "selected> " : print "> ";
	print __("Category")."\n";
	print "  <option value=l";
	$SB == "l" ? print "selected> " : print "> ";
	print __("Location")."\n";
	print "  <option value=p";
	$SB == "p" ? print "selected> " : print "> ";
	print __("Popularity")."\n";
	print "  </select>\n";
	print "</td>\n";

	print "<td align='right'>\n";
	print "  <span class='f5'><span class='blue'>".__("Per page");
	print "</span></span><br />\n";
	print "  <select name='PP'>\n";
	print "  <option value=25";
	$PP == 25 ? print "selected> 25\n" : print "> 25\n";
	print "  <option value=50";
	$PP == 50 ? print "selected> 50\n" : print "> 50\n";
	print "  <option value=75";
	$PP == 75 ? print "selected> 75\n" : print "> 75\n";
	print "  <option value=100";
	$PP == 100 ? print "selected> 100\n" : print "> 100\n";
	print "  </select>\n";
	print "</td>\n";

	print "<td align='right' valign='bottom'>&nbsp;\n";
	print "  <input type='submit' class='button' value='Go'>\n";
	print "</td>\n";

	print "</tr>\n";
	print "</table>\n";

	print "</form>\n";
	print "  </td>\n";
	print "</tr>\n";
	print "</table>\n";
	print "</center>\n";
	print "<br />\n";

	print "<center>\n";
	print "<table cellspacing='3' class='boxSoft'>\n";
	print "<tr>\n";
	print "  <td class='boxSoftTitle' align='right'>\n";
	print "    <span class='f3'Package Listing</span>\n";
	print "  </td>\n";
	print "  <td class='boxSoft'>\n";

	# query to pull out package info
	#
	$q = "SELECT Packages.*, IF(ISNULL(PackageID), 0, COUNT(*)) AS Popularity ";
	$q.= "FROM Packages LEFT JOIN PackageVotes ";
	$q.= "ON Packages.ID = PackageVotes.PackageID ";
	$has_where = 0;
	if ($L) {
		$q.= "WHERE LocationID = ".intval($L)." ";
		$has_where = 1;
	}
	if ($C) {
		if (!$has_where) {
			$q.= "WHERE CategoryID = ".intval($C)." ";
			$has_where = 1;
		} else {
			$q.= "AND CategoryID = ".intval($C)." ";
		}
	}
	if ($K) {
		if (!$has_where) {
			$q.= "WHERE (Name LIKE '".mysql_escape_string($K)."%' OR ";
			$q.= "Description LIKE '%".mysql_escape_string($K)."%') ";
			$has_where = 1;
		} else {
			$q.= "AND (Name LIKE '".mysql_escape_string($K)."%' OR ";
			$q.= "Description LIKE '%".mysql_escape_string($K)."%') ";
		}
	}

	$q.= "GROUP BY PackageID ";
	switch ($SB) {
		case 'c':
			$q.= "ORDER BY CategoryID ASC, Name ASC, LocationID ASC ";
			break;
		case 'l':
			$q.= "ORDER BY LocationID ASC, Name ASC, CategoryID ASC ";
			break;
		default:
			$q.= "ORDER BY Name ASC, LocationID ASC, CategoryID ASC ";
			break;
	}
	$q.= "LIMIT ".intval($O).", ".intval($PP);
	$result = db_query($q, $dbh);
	if (!$result) {
		print $q."<br />\n";
		print __("No packages matched your search criteria.");
	} else {

		# print out package search results
		#
		print "<center>\n";
		print "<table cellspacing='3' class='boxSoft'>\n";
		print "<tr>\n";
		print "  <td class='boxSoftTitle' align='right'>\n";
		print "    <span class='f3'Package Listing</span>\n";
		print "  </td>\n";
		print "  <td class='boxSoft'>\n";

#		for ($i=0; $row = mysql_fetch_assoc($result); $i++) {
#			(($i % 2) == 0) ? $c = "data1" : $c = "data2";
#			print "<tr>\n";
#			print "<td ";
#			print "</tr>\n";
#
#		}
		print "Yippie!  You found some packages!";

		print "  </td>\n";
		print "</tr>\n";
		print "</table>\n";
		print "</center>\n";
	}


	print "  </td>\n";
	print "</tr>\n";
	print "</table>\n";
	print "</center>\n";
	return;
}

# vim: ts=2 sw=2 noet ft=php
?>