started working on package comments

This commit is contained in:
eric 2005-03-05 20:39:36 +00:00
parent 93ac7cb91d
commit aae43d9ad6
5 changed files with 49 additions and 16 deletions

View file

@ -209,7 +209,7 @@ if (isset($_REQUEST["do_Flag"])) {
}
}
if (!empty($ids_to_delete)) {
# TODO These are the packages that are safe to delete
# These are the packages that are safe to delete
#
foreach ($ids_to_delete as $id) {
# 1) delete from PackageVotes
@ -228,8 +228,8 @@ if (isset($_REQUEST["do_Flag"])) {
$q = "DELETE FROM PackageSources WHERE PackageID = " . $id;
$result = db_query($q, $dbh);
# 5) delete from PackageUploadHistory
$q = "DELETE FROM PackageUploadHistory WHERE PackageID = " . $id;
# 5) delete from PackageComments
$q = "DELETE FROM PackageComments WHERE PackageID = " . $id;
$result = db_query($q, $dbh);
# 6) delete from Packages
@ -239,6 +239,7 @@ if (isset($_REQUEST["do_Flag"])) {
# TODO question: Now that the package as been deleted, does
# the unsupported repo need to be regenerated?
# ANSWER: No, there is no actual repo for unsupported, so no worries! (PJM)
# TODO question: What about regenerating the AUR repo? (EJ)
# Print the success message
print "<p>\n";
@ -355,6 +356,12 @@ if (isset($_REQUEST["do_Flag"])) {
$q.= $vote_clauses;
db_query($q, $dbh);
# Update the LastVoted field for this user
#
$q = "UPDATE Users SET LastVoted = UNIX_TIMESTAMP() ";
$q.= "WHERE ID = ".$uid;
db_query($q, $dbh);
print "<p>\n";
print __("Your votes have been cast for the selected packages.");
print "</p>\n";

View file

@ -371,8 +371,8 @@ if ($_COOKIE["AURSID"]) {
# add upload history
#
$q = "INSERT INTO PackageUploadHistory ";
$q.= "(PackageID, UsersID, Comments, UploadTS) VALUES (";
$q = "INSERT INTO PackageComments ";
$q.= "(PackageID, UsersID, Comments, CommentTS) VALUES (";
$q.= $pdata["ID"] . ", " . uid_from_sid($_COOKIE['AURSID']);
$q.= ", '" . mysql_escape_string($_REQUEST["comments"]);
$q.= "', UNIX_TIMESTAMP())";
@ -434,8 +434,8 @@ if ($_COOKIE["AURSID"]) {
# add upload history
#
$q = "INSERT INTO PackageUploadHistory ";
$q.= "(PackageID, UsersID, Comments, UploadTS) VALUES (";
$q = "INSERT INTO PackageComments ";
$q.= "(PackageID, UsersID, Comments, CommentTS) VALUES (";
$q.= $packageID . ", " . uid_from_sid($_COOKIE["AURSID"]) . ", '";
$q.= mysql_escape_string($_REQUEST["comments"]);
$q.= "', UNIX_TIMESTAMP())";