summaryrefslogtreecommitdiff
path: root/scripts/to-delete.php
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-04-12 10:28:31 +0200
committerErich Eckner <git@eckner.net>2018-04-12 10:28:31 +0200
commit5036d7a7172055a24ae9fa493e37998b725966eb (patch)
tree82956ba699664612f283109c104ae4533c5fc080 /scripts/to-delete.php
parent4b2dcc3b53fafcab1f1912990fd5468795108a18 (diff)
downloadarchweb32-5036d7a7172055a24ae9fa493e37998b725966eb.tar.xz
move buildmaster stuff to separate directory
Diffstat (limited to 'scripts/to-delete.php')
-rw-r--r--scripts/to-delete.php61
1 files changed, 0 insertions, 61 deletions
diff --git a/scripts/to-delete.php b/scripts/to-delete.php
deleted file mode 100644
index dfa5a39..0000000
--- a/scripts/to-delete.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<html>
-<head>
-<title>List of packages to be deleted</title>
-<link rel="stylesheet" type="text/css" href="/static/style.css">
-</head>
-<body>
-<?php
-
-$mysql = new mysqli("localhost", "webserver", "empty", "buildmaster");
-if ($mysql->connect_error) {
- die("Connection failed: " . $mysql->connect_error);
-}
-
-$result = $mysql -> query(
- "SELECT " .
- "`repositories`.`name` AS `repo`," .
- "`binary_packages`.`pkgname`," .
- "`binary_packages`.`epoch`," .
- "`binary_packages`.`pkgver`," .
- "`binary_packages`.`pkgrel`," .
- "`binary_packages`.`sub_pkgrel`," .
- "`architectures`.`name` AS `arch` " .
- "FROM `binary_packages` " .
- "JOIN `architectures` ON `binary_packages`.`architecture`=`architectures`.`id` " .
- "JOIN `repositories` ON `binary_packages`.`repository`=`repositories`.`id` " .
- "WHERE `binary_packages`.`is_to_be_deleted` " .
- "AND NOT `repositories`.`name` IN (\"build-support\",\"build-list\",\"deletion-list\")"
-);
-if ($result -> num_rows > 0) {
-
- $count = 0;
-
- while ($row = $result->fetch_assoc()) {
- $rows[$count] =
- $row["repo"] . "/" .
- $row["pkgname"] . "-";
- if ($row["epoch"] != "0")
- $rows[$count] =
- $rows[$count] .
- $row["epoch"] . ":";
- $rows[$count] =
- $rows[$count] .
- $row["pkgver"] . "-" .
- $row["pkgrel"] . "." .
- $row["sub_pkgrel"] . "-" .
- $row["arch"] . ".pkg.tar.xz";
- $count++;
- }
-
- sort($rows);
-
- foreach ($rows as $row) {
- print $row."<br>\n";
- }
-} else {
- print "No packages are to be deleted.\n";
-}
-
-?>
-</body>
-</html>