0) { return TRUE; } } return FALSE; } # see if this Users.ID can manage the package # function canManagePackage($uid=0,$AURMUID=0, $MUID=0, $SUID=0, $managed=0) { if (!$uid) {return 0;} # The uid of the TU/Dev that manages the package # if ($uid == $AURMUID) {return 1;} # If the package isn't maintained by a TU/Dev, is this the user-maintainer? # if ($uid == $MUID && !$managed) {return 1;} # If the package isn't maintained by a TU/Dev, is this the user-submitter? # if ($uid == $SUID && !$managed) {return 1;} # otherwise, no right to manage this package # return 0; } # grab the current list of PackageCategories # function pkgCategories() { $cats = array(); $dbh = db_connect(); $q = "SELECT * FROM PackageCategories WHERE ID != 1 "; $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 WHERE ID != 1 AND ID < 4 "; $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; } # check to see if the package name exists # function package_exists($name="") { if (!$name) {return NULL;} $dbh = db_connect(); $q = "SELECT ID FROM Packages "; $q.= "WHERE Name = '".mysql_real_escape_string($name)."' "; $q.= "AND DummyPkg = 0"; $result = db_query($q, $dbh); if (!$result) {return NULL;} $row = mysql_fetch_row($result); return $row[0]; } # grab package dependencies # function package_dependencies($pkgid=0) { $deps = array(); if ($pkgid) { $dbh = db_connect(); $q = "SELECT DepPkgID, Name, DummyPkg, DepCondition FROM PackageDepends, Packages "; $q.= "WHERE PackageDepends.DepPkgID = Packages.ID "; $q.= "AND PackageDepends.PackageID = ".mysql_real_escape_string($pkgid); $q.= " ORDER BY Name"; $result = db_query($q, $dbh); if (!$result) {return array();} while ($row = mysql_fetch_row($result)) { $deps[] = $row; } } return $deps; } # reverse deps by tardo # function package_required($pkgid=0) { $deps = array(); if ($pkgid) { $dbh = db_connect(); $q = "SELECT PackageID, Name, DummyPkg from PackageDepends, Packages "; $q.= "WHERE PackageDepends.PackageID = Packages.ID "; $q.= "AND PackageDepends.DepPkgID = "; $q.= mysql_real_escape_string($pkgid); $result = db_query($q, $dbh); if (!$result) {return array();} while ($row = mysql_fetch_row($result)) { $deps[] = $row; } } return $deps; } # create a dummy package and return it's Packages.ID if it already exists, # return the existing ID # function create_dummy($pname="", $sid="") { if ($pname && $sid) { $uid = uid_from_sid($sid); if (!$uid) {return NULL;} $dbh = db_connect(); $q = "SELECT ID FROM Packages WHERE Name = '"; $q.= mysql_real_escape_string($pname)."'"; $result = db_query($q, $dbh); if (!mysql_num_rows($result)) { # Insert the dummy # $q = "INSERT INTO Packages (Name, Description, URL, SubmittedTS, "; $q.= "SubmitterUID, DummyPkg) VALUES ('"; $q.= mysql_real_escape_string($pname)."', 'A dummy package', '/#', "; $q.= "UNIX_TIMESTAMP(), ".$uid.", 1)"; $result = db_query($q, $dbh); if (!$result) { return NULL; } return mysql_insert_id($dbh); } else { $data = mysql_fetch_row($result); return $data[0]; } } return NULL; } # grab package comments # function package_comments($pkgid=0) { $comments = array(); if ($pkgid) { $dbh = db_connect(); $q = "SELECT PackageComments.ID, UserName, UsersID, Comments, CommentTS "; $q.= "FROM PackageComments, Users "; $q.= "WHERE PackageComments.UsersID = Users.ID"; $q.= " AND PackageID = ".mysql_real_escape_string($pkgid); $q.= " AND DelUsersID = 0"; # only display non-deleted comments $q.= " ORDER BY CommentTS DESC"; $result = db_query($q, $dbh); if (!$result) {return array();} while ($row = mysql_fetch_assoc($result)) { $comments[] = $row; } } return $comments; } # grab package sources # function package_sources($pkgid=0) { $sources = array(); if ($pkgid) { $dbh = db_connect(); $q = "SELECT Source FROM PackageSources "; $q.= "WHERE PackageID = ".mysql_real_escape_string($pkgid); $q.= " ORDER BY Source"; $result = db_query($q, $dbh); if (!$result) {return array();} while ($row = mysql_fetch_row($result)) { $sources[] = $row[0]; } } return $sources; } # grab array of Package.IDs that I've voted for: $pkgs[1234] = 1, ... # function pkgvotes_from_sid($sid="") { $pkgs = array(); if (!$sid) {return $pkgs;} $dbh = db_connect(); $q = "SELECT PackageID "; $q.= "FROM PackageVotes, Users, Sessions "; $q.= "WHERE Users.ID = Sessions.UsersID "; $q.= "AND Users.ID = PackageVotes.UsersID "; $q.= "AND Sessions.SessionID = '".mysql_real_escape_string($sid)."'"; $result = db_query($q, $dbh); if ($result) { while ($row = mysql_fetch_row($result)) { $pkgs[$row[0]] = 1; } } return $pkgs; } # array of package ids that you're being notified for # *yoink* # function pkgnotify_from_sid($sid="") { $pkgs = array(); if (!$sid) {return $pkgs;} $dbh = db_connect(); $q = "SELECT PkgID "; $q.= "FROM CommentNotify, Users, Sessions "; $q.= "WHERE Users.ID = Sessions.UsersID "; $q.= "AND Users.ID = CommentNotify.UserID "; $q.= "AND Sessions.SessionID = '".mysql_real_escape_string($sid)."'"; $result = db_query($q, $dbh); if ($result) { while ($row = mysql_fetch_row($result)) { $pkgs[$row[0]] = 1; } } return $pkgs; } # get name of package based on pkgid # function pkgname_from_id($id="") { if (!empty($id)) { $dbh = db_connect(); $id = intval($id); $q = "SELECT Name FROM Packages WHERE ID = " . mysql_real_escape_string($id); $result = db_query($q, $dbh); if (mysql_num_rows($result) > 0) { $id = mysql_result($result, 0); } else { $id = ""; } } return $id; } # display package details # function package_details($id=0, $SID="") { global $_REQUEST; global $pkgsearch_vars; $q = "SELECT Packages.*,Location,Category "; $q.= "FROM Packages,PackageLocations,PackageCategories "; $q.= "WHERE Packages.LocationID = PackageLocations.ID "; $q.= "AND Packages.CategoryID = PackageCategories.ID "; $q.= "AND Packages.ID = ".intval($_REQUEST["ID"]); $dbh = db_connect(); $results = db_query($q, $dbh); if (!$results) { print __("Error retrieving package details.")."
\n"; } else { $row = mysql_fetch_assoc($results); if (empty($row)) { print __("Package details could not be found.")."
\n"; } else { # print out package details # echo "
\n"; echo "
".__("Package Details")."
\n"; echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " "; } else { echo $maintainer . ""; } } else { $maintainer = "None"; echo $maintainer . ""; } echo " \n"; echo " \n"; # In case of wanting to put a custom message $msg = __("unknown"); $license = $row["License"] == "" ? $msg : $row["License"]; echo " \n"; echo " \n"; # Print the timestamps for last updates $updated_time = ($row["ModifiedTS"] == 0) ? "(unknown)" : gmdate("r", intval($row["ModifiedTS"])); $submitted_time = ($row["SubmittedTS"] == 0) ? "(unknown)" : gmdate("r", intval($row["SubmittedTS"])); echo " \n"; echo " \n"; echo " "; } elseif ($row["LocationID"] == 3) { echo "CVS"; } echo "\n"; if ($row["OutOfDate"] == 1) { echo "\n"; } echo " \n"; $deps = package_dependencies($row["ID"]); # $deps[0] = array('id','name', 'dummy'); if (count($deps) > 0) { echo " \n"; echo " "; } # reverse-deps by tardo - could use some beautification $deps = package_required($row["ID"]); if (count($deps) > 0) { echo " \n"; } $sources = package_sources($row["ID"]); # $sources[0] = 'src'; if (count($sources) > 0) { echo " \n"; } echo " \n"; echo "
"; echo $row["Name"] . " " . $row["Version"]."
"; echo "".$row["URL"]."
".$row["Description"]; echo "
"; if ($row["Location"] == "unsupported" and ( uid_from_sid($SID) == $row["MaintainerUID"] or (account_from_sid($SID) == "Developer" or account_from_sid($SID) == "Trusted User"))) { $edit_cat = "".$row["Category"].""; $edit_cat .= "  ("; $edit_cat .= __("change category").")"; } else { $edit_cat = $row["Category"]; } echo $row["Location"]." :: ".$edit_cat."
".__("Maintainer").": "; if ($row["MaintainerUID"]) { $maintainer = username_from_id($row["MaintainerUID"]); if ($SID) { echo ""; echo $maintainer . "
".__("Votes").": "; echo $row["NumVotes"] . "

".__("License").": ".$license; echo "
"; echo __("Last Updated").": ".$updated_time."
"; echo __("First Submitted").": ".$submitted_time."
"; if ($row["LocationID"] == 2) { $urlpath = URL_DIR.$row["Name"]."/".$row["Name"]; print "".__("Tarball")." :: ".__("Files")." :: PKGBUILD
"; echo "".__("This package has been flagged out of date.")."
\n"; echo " \n"; echo " \n"; echo " \n"; echo "
"; echo __("Dependencies")."
"; while (list($k, $darr) = each($deps)) { $url = "".$darr[1].$darr[3]."
\n"; else echo "".$darr[1].$darr[3]."
\n"; } echo "
"; echo ""; echo "\n"; echo "\n"; echo "
"; echo __("Required by")."
"; while (list($k, $darr) = each($deps)) { $url = "".$darr[1].$darr[3]."
\n"; else print "".$darr[1].$darr[3]."
\n"; } echo "
\n"; echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo "
"; echo __("Sources")."
"; while (list($k, $src) = each($sources)) { $parsed_url = parse_url($src); if ($parsed_url['scheme']) { //It is an external source echo "".$src."
\n"; } else { //It is presumably an internal source if ($row["LocationID"] == 2) { echo "".$src."
\n"; } elseif ($row["LocationID"] == 3) { echo ""; echo $src."
\n"; } } } echo "
\n"; echo "
\n"; echo "
\n"; echo "
\n\n"; echo "
\n\n"; # Actions Bar # if ($SID) { echo "
\n"; echo "
".__("Actions")."
\n"; echo "
\n"; echo "
\n"; echo " \n"; echo " \n"; # Voting Button # $q = "SELECT * FROM PackageVotes WHERE UsersID = ".uid_from_sid($SID); $q.= " AND PackageID = ".$row["ID"]; if (!mysql_num_rows(db_query($q, $dbh))) { echo " "; } else { echo ""; } # Comment Nofify Button # $q = "SELECT * FROM CommentNotify WHERE UserID = ".uid_from_sid($SID); $q.= " AND PkgID = ".$row["ID"]; if (!mysql_num_rows(db_query($q, $dbh))) { echo ""; } else { echo ""; } if ($row["OutOfDate"] == 0) { echo "\n"; } else { echo "\n"; } if ($row["MaintainerUID"] == 0) { echo "\n"; } if ($row["MaintainerUID"] == uid_from_sid($SID) || account_from_sid($SID) == "Trusted User" || account_from_sid($SID) == "Developer") { echo "\n"; } if (account_from_sid($SID) == "Trusted User" || account_from_sid($SID) == "Developer") { echo "\n"; } echo "
\n"; echo "
\n"; echo "
\n"; echo "\n
\n\n"; } # Comments # echo "
\n"; echo "
".__("Comments")."
\n"; echo "
\n"; echo " \n"; if (isset($_COOKIE['AURSID'])) { echo ""; //echo "
\n"; } $comments = package_comments($row["ID"]); if (!empty($comments)) { while (list($indx, $carr) = each($comments)) { echo " \n"; echo " \n"; echo " \n"; } } else { print "\n"; } echo "
"; echo "
\n"; echo " \n"; echo " \n"; echo "
\n"; echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
"; if (canDeleteComment($carr["ID"], account_from_sid($SID), $SID)) { $durl = ""; echo $durl . "  "; } if ($SID) { echo __("Comment by: %h%s%h on %h%s%h", array("",$carr["UserName"],"", "",gmdate("Ymd [H:i:s]",$carr["CommentTS"]),"")); } else { echo __("Comment by: %h%s%h on %h%s%h", array("",$carr["UserName"],"", "",gmdate("Ymd [H:i:s]",$carr["CommentTS"]),"")); } echo "
"; echo "\n"; echo nl2br(htmlspecialchars($carr["Comments"])); echo "
\n"; echo "
None
\n"; echo "
\n"; echo "
\n"; } } return; } /* pkg_search_page(SID) * outputs the body of search/search results page * * parameters: * SID - current Session ID * preconditions: * package search page has been accessed * request variables have not been sanitized * * request vars: * O - starting result number * PP - number of search hits per page * L - package location ID number * C - package category ID number * K - package search string * SO - search hit sort order: * values: a - ascending * d - descending * SB - sort search hits by: * values: l - package location * c - package category * n - package name * v - number of votes * m - maintainer username * SeB- property that search string (K) represents * values: nd - package name&description * m - package maintainer's username * s - package submitter's username * do_Orphans - boolean. whether to search packages * without a maintainer * * * These two are actually handled in packages.php. * * IDs- integer array of ticked packages' IDs * action - action to be taken on ticked packages * values: do_Flag - Flag out-of-date * do_UnFlag - Remove out-of-date flag * do_Adopt - Adopt * do_Disown - Disown * do_Delete - Delete * do_Notify - Toggle notification */ function pkg_search_page($SID="") { // establish a db connection $dbh = db_connect(); // get commonly used variables... // TODO: REDUCE DB HITS. // grab info for user if they're logged in if ($SID) $myuid = uid_from_sid($SID); // get a list of package locations $locs = pkgLocations(); // get a list of package categories $cats = pkgCategories(); //meow // sanitize paging variables // if (isset($_REQUEST['O'])) { $O = intval($_REQUEST['O']); if ($O < 0) $O = 0; } else { $O = 0; } if (isset($_REQUEST["PP"])) { $PP = intval($_REQUEST["PP"]); if ($PP < 25) $PP = 25; else if ($PP > 100) $PP = 100; } else { $PP = 25; } include('../template/pkg_search_form.php'); // FIXME: pull out DB-related code. all of it. // this one's worth a choco-chip cookie, // one of those nice big soft ones // build the package search query // $q = "SELECT SQL_CALC_FOUND_ROWS "; if ($SID) { $q .= "CommentNotify.UserID AS Notify, PackageVotes.UsersID AS Voted, "; } $q .= "Users.Username AS Maintainer, PackageCategories.Category, PackageLocations.Location, Packages.Name, Packages.Version, Packages.Description, Packages.NumVotes, Packages.ID, Packages.OutOfDate FROM PackageCategories, PackageLocations, Packages LEFT JOIN Users ON (Packages.MaintainerUID = Users.ID) "; if ($SID) { $q .= "LEFT JOIN PackageVotes ON (Packages.ID = PackageVotes.PackageID AND PackageVotes.UsersID = ".$myuid.") LEFT JOIN CommentNotify ON (Packages.ID = CommentNotify.PkgID AND CommentNotify.UserID = ".$myuid.") "; } $q .= "WHERE Packages.CategoryID = PackageCategories.ID AND Packages.LocationID = PackageLocations.ID AND Packages.DummyPkg = 0 "; // TODO: possibly do string matching on category and // location to make request variable values more sensible if (intval($_REQUEST["L"])) { $q .= "AND Packages.LocationID = ".intval($_REQUEST["L"])." "; } if (intval($_REQUEST["C"])) { $q.= "AND Packages.CategoryID = ".intval($_REQUEST["C"])." "; } if ($_REQUEST['K']) { $K = mysql_real_escape_string(trim($_REQUEST['K'])); //search by maintainer if ($_REQUEST["SeB"] == "m"){ $q.= "AND Users.Username = '".$K."' "; } elseif ($_REQUEST["SeB"] == "s") { // FIXME: this shouldn't be making 2 queries // kill the call to uid_from_username $q.= "AND SubmitterUID = ".uid_from_username($_REQUEST['K'])." "; // the default behavior, query the name/description } else { $q.= "AND (Name LIKE '%".$K."%' OR "; $q.= "Description LIKE '%".$K."%') "; } } if ($_REQUEST["do_Orphans"]) { $q.= "AND MaintainerUID = 0 "; } $order = $_REQUEST["SO"] == 'd' ? 'DESC' : 'ASC'; switch ($_REQUEST["SB"]) { case 'c': $q.= "ORDER BY CategoryID ".$order.", Name ASC, LocationID ASC "; $SB = 'c'; break; case 'l': $q.= "ORDER BY LocationID ".$order.", Name ASC, CategoryID DESC "; $SB = 'l'; break; case 'v': $q.= "ORDER BY NumVotes ".$order.", Name ASC, CategoryID DESC "; $SB = 'v'; break; case 'm': $q.= "ORDER BY Maintainer ".$order.", Name ASC, LocationID ASC "; $SB = 'm'; break; case 'a': $q.= "ORDER BY GREATEST(SubmittedTS,ModifiedTS) ".$order.", Name ASC, LocationID ASC "; $SB = 'a'; break; default: $q.= "ORDER BY Name ".$order.", LocationID ASC, CategoryID DESC "; break; } $q.= "LIMIT ".$O.", ".$PP; $result = db_query($q, $dbh); $total = mysql_result(db_query('SELECT FOUND_ROWS() AS Total', $dbh), 0); print "
\n"; print "
\n"; print "\n"; print "\n"; print " \n"; print "\n"; print "\n"; print " \n"; print "\n"; print "
\n"; print " ".__("Package Listing")."\n"; print "
\n"; print "\n"; if (!$result) { print "
"; print __("Error retrieving package list."); print "
"; } elseif ($total == 0) { print "
"; print __("No packages matched your search criteria."); print "
"; } else { // print out package search results // // SO_next used to change sort order on header click if ($_REQUEST["SO"] == "d"){ $SO_next="a"; $SO = 'd'; } else { $SO_next="d"; $SO = 'a'; } print "\n"; if ($SID) { print " \n"; } print " \n"; print " \n"; print " \n"; print " \n"; if ($SID) { print " \n"; } if ($SID) { print " \n"; } print " \n"; print " \n"; print "\n"; for ($i=0; $row = mysql_fetch_assoc($result); $i++) { (($i % 2) == 0) ? $c = "data1" : $c = "data2"; print "\n"; if ($SID) { if ($row["OutOfDate"]) { $c = "outofdate"; } print " \n"; } print " \n"; print " \n"; print " \n"; print " \n"; if ($SID) { print " \n"; } else { print " \n"; } print " \n"; } else { print " \n"; } } print " \n"; print " \n"; print "\n"; } print "
 "; print "".__("Location").""; print ""; print "".__("Category").""; print ""; print "".__("Name").""; print ""; print "".__("Votes").""; print "".__("Voted")."".__("Notify")."".__("Description").""; print ""; print "".__("Maintainer").""; print "
"; print ""; if ($row["OutOfDate"]) { print ""; } print ""; print $row["Location"].""; print $row["Category"].""; $url = ""; $url.=""; $url.=$row["Name"]; $url.= " ".$row["Version"].""; print $url.""; print "   ".$row["NumVotes"].""; if (isset($row["Voted"])) { print "  ".__("Yes").""; if (isset($row["Notify"])) { print "  ".__("Yes").""; print $row["Description"].""; if (isset($row["Maintainer"])) { print "".$row['Maintainer'].""; } else { print ""; print __("orphan"); print ""; } print "
\n"; print "
\n"; if ($SID) { // The 'Actions' box // print "
"; print ""; print ""; print "
"; } print "\n"; print "\n"; print " \n"; print "\n"; print "
\n"; print " \n"; print " \n"; // figure out the results to use $first = $O + 1; if (($PP+$O) > $total) { $last = $total; } else { $last = $PP + $O; } // print number of results // ok this styling sucks // patches welcome! print ""; // first print the legend print " \n"; print " "; // now print the forward and back buttons on the bottom // LEFT print " "; print " "; // RIGHT print " \n"; print " \n"; } print "
"; print __("Showing results %s - %s of %s", array($first, $last, $total)); print "
"; print " \n"; if ($SID) { print ' '.__("Out of Date").' '."    "; } print "
"; if (($O-$PP) >= 0) { print "" . __("Less") . ""; } else if ($O<$PP && $O>0) { print "" . __("Less") . ""; } print " "; if ($total - $PP - $O > 0) { print "" . __("More") . ""; } print "
\n"; print "
\n"; print "
\n"; print "
\n"; return; } # vim: ts=4 sw=4 et ft=php ?>