mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
started on the package submit script
This commit is contained in:
parent
7b9956f225
commit
cbe2050420
5 changed files with 81 additions and 8 deletions
Binary file not shown.
|
@ -13,7 +13,7 @@ DB_HOST = "localhost"
|
|||
DB_NAME = "AUR"
|
||||
DB_USER = "aur"
|
||||
DB_PASS = "aur"
|
||||
USER_ID = 5 # Users.ID of first user
|
||||
USER_ID = 5 # Users.ID of first bogus user
|
||||
PKG_ID = 1 # Packages.ID of first package
|
||||
MAX_USERS = 500 # how many users to 'register'
|
||||
MAX_DEVS = .1 # what percentage of MAX_USERS are Developers
|
||||
|
@ -123,8 +123,9 @@ if DBUG: print "Generating random user names..."
|
|||
user_id = USER_ID
|
||||
while len(seen_users) < MAX_USERS:
|
||||
user = random.randrange(0, len(contents))
|
||||
word = contents[user].strip().replace("'", "").replace(" ", "_")
|
||||
if not seen_users.has_key(user):
|
||||
word = contents[user].replace("'", "").replace(".","").replace(" ", "_")
|
||||
word = word.strip().lower()
|
||||
if not seen_users.has_key(word):
|
||||
seen_users[word] = user_id
|
||||
user_id += 1
|
||||
user_keys = seen_users.keys()
|
||||
|
@ -135,7 +136,8 @@ if DBUG: print "Generating random package names..."
|
|||
num_pkgs = PKG_ID
|
||||
while len(seen_pkgs) < MAX_PKGS:
|
||||
pkg = random.randrange(0, len(contents))
|
||||
word = contents[pkg].strip().replace("'", "").replace(" ", "_")
|
||||
word = contents[pkg].replace("'", "").replace(".","").replace(" ", "_")
|
||||
word = word.strip().lower()
|
||||
if not need_dupes:
|
||||
if not seen_pkgs.has_key(word) and not seen_users.has_key(word):
|
||||
seen_pkgs[word] = num_pkgs
|
||||
|
@ -145,6 +147,10 @@ while len(seen_pkgs) < MAX_PKGS:
|
|||
seen_pkgs[word] = num_pkgs
|
||||
num_pkgs += 1
|
||||
|
||||
# free up contents memory
|
||||
#
|
||||
contents = None
|
||||
|
||||
# Load package categories from database
|
||||
#
|
||||
if DBUG: print "Loading package categories/locations..."
|
||||
|
|
23
support/schema/reloadtestdb.sh
Executable file
23
support/schema/reloadtestdb.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
|
||||
mydir=`pwd`
|
||||
if [ `basename $mydir` != "schema" ]; then
|
||||
echo "you must be in the aur/support/schema directory to run this script"
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "dropping old database..."
|
||||
yes | mysqladmin -uaur -paur drop AUR
|
||||
|
||||
echo "recreating database..."
|
||||
mysqladmin -uaur -paur create AUR
|
||||
|
||||
echo "recreating tables..."
|
||||
mysql -uaur -paur AUR < ./aur-schema.sql
|
||||
|
||||
echo "loading dummy-data..."
|
||||
bzcat ./dummy-data.sql.bz2 | mysql -uaur -paur AUR
|
||||
|
||||
echo "done."
|
||||
exit
|
||||
|
|
@ -5,12 +5,33 @@ set_lang(); # this sets up the visitor's language
|
|||
check_sid(); # see if they're still logged in
|
||||
html_header(); # print out the HTML header
|
||||
|
||||
|
||||
# Any text you print out to the visitor, use the __() function
|
||||
# for i18n support. See 'testpo.php' for more details.
|
||||
# this is the directory that new packages will be uploaded to
|
||||
#
|
||||
print __("Under construction...")."<br />\n";
|
||||
$UPLOAD_DIR = "/tmp/aur/temp";
|
||||
|
||||
if ($_REQUEST["upload"]) {
|
||||
# try and process the upload
|
||||
#
|
||||
|
||||
} else {
|
||||
# give the visitor the default upload page
|
||||
#
|
||||
print "<center>\n";
|
||||
if (ini_get("file_uploads")) {
|
||||
print "<form action='/pkgsubmit.php' method='post'";
|
||||
print " enctype='multipart/form-data'>\n";
|
||||
print "<input type='hidden' name='MAX_FILE_SIZE' value='";
|
||||
print initeger(ini_get("upload_max_filesize"))."' />\n";
|
||||
print "Upload package: ";
|
||||
print "<input type='file' name='pfile' size='30' />\n";
|
||||
print " ";
|
||||
print "<input class='button' type='submit' value='Upload' />\n";
|
||||
print "</form>\n";
|
||||
} else {
|
||||
print "Sorry, uploads are not permitted by this server.\n<br />\n";
|
||||
}
|
||||
print "</center>\n";
|
||||
}
|
||||
|
||||
html_footer("\$Id$");
|
||||
?>
|
||||
|
|
|
@ -444,5 +444,28 @@ function dbug($msg) {
|
|||
return;
|
||||
}
|
||||
|
||||
# convert an ini_get number to a real integer - stupid PHP!
|
||||
#
|
||||
function initeger($inival="0", $isbytes=1) {
|
||||
$last_char = strtolower(substr($inival, -1));
|
||||
if ($isbytes) {
|
||||
switch ($last_char) {
|
||||
case 't': $multiplier = 1024 * 1024 * 1024; break;
|
||||
case 'm': $multiplier = 1024 * 1024; break;
|
||||
case 'k': $multiplier = 1024; break;
|
||||
default: $multiplier = 1; break;
|
||||
}
|
||||
} else {
|
||||
switch ($last_char) {
|
||||
case 't': $multiplier = 1000 * 1000 * 1000; break;
|
||||
case 'm': $multiplier = 1000 * 1000; break;
|
||||
case 'k': $multiplier = 1000; break;
|
||||
default: $multiplier = 1; break;
|
||||
}
|
||||
}
|
||||
|
||||
return intval($inival) * $multiplier;
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 noet ft=php
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue