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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
|
<?php
/**
* trove.php
*
* SourceForge: Breaking Down the Barriers to Open Source Development
* Copyright 1999-2001 (c) VA Linux Systems
* http://sourceforge.net
*
* @version $Id: trove.php 1441 2003-01-11 05:15:37Z rts $
*/
// ################################## Trove Globals
$TROVE_MAXPERROOT = 3;
$TROVE_BROWSELIMIT = 20;
$TROVE_HARDQUERYLIMIT = -1;
// ##################################
/**
* trove_genfullpaths() - Regenerates full path entries for $node and all subnodes
*
* @param int The node
* @param string The full path for this node
* @param int The full path IDs
*/
function trove_genfullpaths($mynode,$myfullpath,$myfullpathids) {
// first generate own path
$res_update = db_query('UPDATE trove_cat SET fullpath=\''
.$myfullpath.'\',fullpath_ids=\''
.$myfullpathids.'\' WHERE trove_cat_id='.$mynode);
// now generate paths for all children by recursive call
if($mynode!=0)
{
$res_child = db_query("
SELECT trove_cat_id,fullname
FROM trove_cat
WHERE parent='$mynode'
AND trove_cat_id!=0;
", -1, 0, SYS_DB_TROVE);
while ($row_child = db_fetch_array($res_child)) {
trove_genfullpaths($row_child['trove_cat_id'],
addslashes(quotemeta($myfullpath)) . ' :: ' . addslashes(quotemeta($row_child['fullname'])),
$myfullpathids.' :: '.$row_child['trove_cat_id']);
}
}
}
// ##################################
/**
* trove_updaterootparent() - Regenerates full path entries for $node and all subnodes
*
* @param int The node
* @param int The root parent node
*/
function trove_updaterootparent($mynode,$rootnode) {
// first generate own path
if($mynode!=$rootnode) $res_update = db_query('UPDATE trove_cat SET root_parent=' .$rootnode. ' WHERE trove_cat_id='.$mynode);
else $res_update = db_query('UPDATE trove_cat SET root_parent=0 WHERE trove_cat_id='.$mynode);
// now generate paths for all children by recursive call
if($mynode!=0)
{
$res_child = db_query("
SELECT trove_cat_id
FROM trove_cat
WHERE parent='$mynode'
AND trove_cat_id!=0;
", -1, 0, SYS_DB_TROVE);
while ($row_child = db_fetch_array($res_child)) {
trove_updaterootparent($row_child['trove_cat_id'],$rootnode);
}
}
}
// #########################################
/**
* trove_setnode() - Adds a group to a trove node
*
* @param int The group ID
* @param int The trove category ID
* @param int The root node
*/
function trove_setnode($group_id,$trove_cat_id,$rootnode=0) {
// verify we were passed information
if ((!$group_id) || (!$trove_cat_id)) return 1;
// verify trove category exists
$res_verifycat = db_query("
SELECT trove_cat_id,fullpath_ids
FROM trove_cat
WHERE trove_cat_id='$trove_cat_id'
", -1, 0, SYS_DB_TROVE);
if (db_numrows($res_verifycat) != 1) return 1;
$row_verifycat = db_fetch_array($res_verifycat);
// if we didnt get a rootnode, find it
if (!$rootnode) {
$rootnode = trove_getrootcat($trove_cat_id);
}
// must first make sure that this is not a subnode of anything current
$res_topnodes = db_query("
SELECT trove_cat.trove_cat_id AS trove_cat_id,
trove_cat.fullpath_ids AS fullpath_ids
FROM trove_cat,trove_group_link
WHERE trove_cat.trove_cat_id=trove_group_link.trove_cat_id
AND trove_group_link.group_id='$group_id'
AND trove_cat.root_parent='$rootnode'");
while($row_topnodes = db_fetch_array($res_topnodes)) {
$pathids = explode(' :: ',$row_topnodes['fullpath_ids']);
for ($i=0;$i<count($pathids);$i++) {
// anything here will invalidate this setnode
if ($pathids[$i] == $trove_cat_id) {
return 1;
}
}
}
// need to see if this one is more specific than another
// if so, delete the other and proceed with this insertion
$subnodeids = explode(' :: ',$row_verifycat['fullpath_ids']);
$res_checksubs = db_query("
SELECT trove_cat_id
FROM trove_group_link
WHERE group_id='$group_id'
AND trove_cat_root='$rootnode'");
while ($row_checksubs = db_fetch_array($res_checksubs)) {
// check against all subnodeids
for ($i=0;$i<count($subnodeids);$i++) {
if ($subnodeids[$i] == $row_checksubs['trove_cat_id']) {
// then delete subnode
db_query('DELETE FROM trove_group_link WHERE '
.'group_id='.$group_id.' AND trove_cat_id='
.$subnodeids[$i]);
}
}
}
// if we got this far, must be ok
db_query('INSERT INTO trove_group_link (trove_cat_id,trove_cat_version,'
.'group_id,trove_cat_root) VALUES ('.$trove_cat_id.','
.time().','.$group_id.','.$rootnode.')');
return 0;
}
/**
* trove_getrootcat() - Get the root categegory
*
* @param int Trove category ID
*/
function trove_getrootcat($trove_cat_id) {
$parent = 1;
$current_cat = $trove_cat_id;
while ($parent > 0) {
$res_par = db_query("
SELECT parent
FROM trove_cat
WHERE trove_cat_id='$current_cat'");
$row_par = db_fetch_array($res_par);
$parent = $row_par["parent"];
if ($parent == 0) return $current_cat;
$current_cat = $parent;
}
return 0;
}
/**
* trove_getallroots() - Returns an associative array of all project roots
*/
function trove_getallroots() {
$res = db_query("
SELECT trove_cat_id,fullname
FROM trove_cat
WHERE parent=0
AND trove_cat_id!=0");
while ($row = db_fetch_array($res)) {
$tmpcatid = $row["trove_cat_id"];
$CATROOTS[$tmpcatid] = $row["fullname"];
}
return $CATROOTS;
}
/**
* trove_catselectfull() - Returns full select output for a particular root
*
* @param int The node
* @param string The category to pre-select
* @param string THe select-box name
*/
function trove_catselectfull($node,$selected,$name) {
print "<br /><select name=\"$name\">";
print ' <option value="0">None Selected'."</option>\n";
$res_cat = db_query("
SELECT trove_cat_id,fullpath
FROM trove_cat
WHERE root_parent='$node'
ORDER BY fullpath");
while ($row_cat = db_fetch_array($res_cat)) {
print ' <option value="'.$row_cat['trove_cat_id'].'"';
if ($selected == $row_cat['trove_cat_id']) print (' selected="selected"');
print '>'.$row_cat['fullpath']."</option>\n";
}
print "</select>\n";
}
/**
* trove_getcatlisting() - Gets discriminator listing for a group
*
* @param int The group ID
* @param bool Whether filters have already been applied
* @param bool Whether to print category links
*/
function trove_getcatlisting($group_id,$a_filter,$a_cats) {
global $discrim_url;
global $expl_discrim;
global $form_cat;
global $Language;
$res_trovecat = db_query("
SELECT trove_cat.fullpath AS fullpath,
trove_cat.fullpath_ids AS fullpath_ids,
trove_cat.trove_cat_id AS trove_cat_id
FROM trove_cat,trove_group_link
WHERE trove_cat.trove_cat_id=trove_group_link.trove_cat_id
AND trove_group_link.group_id='$group_id'
ORDER BY trove_cat.fullpath");
$return = '';
if (db_numrows($res_trovecat) < 1) {
$return .= $Language->getText('trove','not_categorized')
.' <a href="/softwaremap/trove_list.php">'
. $Language->getText('trove','title')
.'</a>.<p />';
} else {
$return .= '<ul>';
$need_close_ul_tag = 1;
}
// first unset the vars were using here
$proj_discrim_used='';
$isfirstdiscrim = 1;
while ($row_trovecat = db_fetch_array($res_trovecat)) {
$folders = explode(" :: ",$row_trovecat['fullpath']);
$folders_ids = explode(" :: ",$row_trovecat['fullpath_ids']);
$folders_len = count($folders);
// if first in discrim print root category
if (!$proj_discrim_used[$folders_ids[0]]) {
if (!$isfirstdiscrim) {
$return .= "</li>\n";
}
$return .= ('<li> '.$folders[0].': ');
}
// filter links, to add discriminators
// first check to see if filter is already applied
$filterisalreadyapplied = 0;
for ($i=0;$i<sizeof($expl_discrim);$i++) {
if ($folders_ids[$folders_len-1] == $expl_discrim[$i]) {
$filterisalreadyapplied = 1;
}
}
// then print the stuff
if ($proj_discrim_used[$folders_ids[0]]) {
$return .= ', ';
}
if ($a_cats) {
$return .= '<a href="/softwaremap/trove_list.php?form_cat='
.$folders_ids[$folders_len-1].$discrim_url.'">';
}
$return .= ($folders[$folders_len-1]);
if ($a_cats) {
$return .= '</a>';
}
if ($a_filter) {
if ($filterisalreadyapplied) {
$return .= ' <strong>(Now Filtering)</strong> ';
} else {
$return .= ' <a href="/softwaremap/trove_list.php?form_cat='
.$form_cat;
if ($discrim_url) {
$return .= $discrim_url.','.$folders_ids[$folders_len-1];
} else {
$return .= '&discrim='.$folders_ids[$folders_len-1];
}
$return .= '">[Filter]</a> ';
}
}
$proj_discrim_used[$folders_ids[0]] = 1;
$isfirstdiscrim = 0;
}
if ($need_close_ul_tag)
{
$return .= '</li></ul>';
}
return $return;
}
/**
* trove_getfullname() - Returns cat fullname
*
* @param int The node
*/
function trove_getfullname($node) {
$res = db_query("
SELECT fullname
FROM trove_cat
WHERE trove_cat_id='$node'");
$row = db_fetch_array($res);
return $row['fullname'];
}
/**
* trove_getfullpath() - Returns a full path for a trove category
*
* @param int The node
*/
function trove_getfullpath($node) {
$currentcat = $node;
$first = 1;
$return = '';
while ($currentcat > 0) {
$res = db_query("
SELECT trove_cat_id,parent,fullname
FROM trove_cat
WHERE trove_cat_id='$currentcat'");
$row = db_fetch_array($res);
$return = $row["fullname"] . ($first ? "" : " :: ") . $return;
$currentcat = $row["parent"];
$first = 0;
}
return $return;
}
?>
|