mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
tweaks to package functions and schema
This commit is contained in:
parent
7549ca2d96
commit
252afad9fc
4 changed files with 57 additions and 17 deletions
|
@ -12,8 +12,8 @@ $DBUG = 1;
|
|||
|
||||
# this is the directory that new packages will be uploaded to
|
||||
#
|
||||
$UPLOAD_DIR = "/tmp/aur/temp/";
|
||||
$INCOMING_DIR = "/tmp/aur/incoming/";
|
||||
$UPLOAD_DIR = "/aur/temp/";
|
||||
$INCOMING_DIR = "/aur/incoming/";
|
||||
|
||||
|
||||
if ($_COOKIE["AURSID"]) {
|
||||
|
|
|
@ -444,19 +444,6 @@ function dbug($msg) {
|
|||
return;
|
||||
}
|
||||
|
||||
# check to see if the package name exists
|
||||
#
|
||||
function package_exists($name="") {
|
||||
if (!$name) {return 0;}
|
||||
$dbh = db_connect();
|
||||
$q = "SELECT COUNT(*) FROM Packages ";
|
||||
$q.= "WHERE Name = '".mysql_escape_string($name)."'";
|
||||
$result = db_query($q, $dbh);
|
||||
if (!$result) {return 0;}
|
||||
$row = mysql_fetch_row($result);
|
||||
return $row[0];
|
||||
}
|
||||
|
||||
# check to see if the user can overwrite an existing package
|
||||
#
|
||||
function can_overwrite_pkg($name="", $sid="") {
|
||||
|
|
|
@ -83,6 +83,20 @@ function pkgLocations() {
|
|||
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_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) {
|
||||
|
@ -102,6 +116,39 @@ function package_dependencies($pkgid=0) {
|
|||
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_escape_string($pname)."'";
|
||||
$result = db_query($q, $dbh);
|
||||
if (!$result) {
|
||||
# Insert the dummy
|
||||
#
|
||||
$q = "INSERT INTO Packages (Name, CategoryID, Description, ";
|
||||
$q.= "URL, LocationID, SubmittedTS, SubmitterUID) VALUES ('";
|
||||
$q.= mysql_escape_string($pname)."', 0, ";
|
||||
$q.= "'A dummy package', '/#', 0, UNIX_TIMESTAMP(), ";
|
||||
$q.= $uid.")";
|
||||
$result = db_query($q, $dbh);
|
||||
if (!$result) {
|
||||
return NULL;
|
||||
}
|
||||
return mysql_insert_id($result);
|
||||
} else {
|
||||
$data = mysql_fetch_row($result);
|
||||
return $data['ID'];
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
|
||||
}
|
||||
|
||||
# grab package sources
|
||||
#
|
||||
function package_sources($pkgid=0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue