mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Instead of writing the output to hardcoded files (relative to the document root), make the output paths of mkpkglists configurable. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
38 lines
1.3 KiB
Python
Executable file
38 lines
1.3 KiB
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import datetime
|
|
import gzip
|
|
|
|
import aurweb.config
|
|
import aurweb.db
|
|
|
|
packagesfile = aurweb.config.get('mkpkglists', 'packagesfile')
|
|
pkgbasefile = aurweb.config.get('mkpkglists', 'pkgbasefile')
|
|
|
|
|
|
def main():
|
|
conn = aurweb.db.Connection()
|
|
|
|
datestr = datetime.datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S GMT")
|
|
pkglist_header = "# AUR package list, generated on " + datestr
|
|
pkgbaselist_header = "# AUR package base list, generated on " + datestr
|
|
|
|
with gzip.open(packagesfile, "w") as f:
|
|
f.write(bytes(pkglist_header + "\n", "UTF-8"))
|
|
cur = conn.execute("SELECT Packages.Name FROM Packages " +
|
|
"INNER JOIN PackageBases " +
|
|
"ON PackageBases.ID = Packages.PackageBaseID " +
|
|
"WHERE PackageBases.PackagerUID IS NOT NULL")
|
|
f.writelines([bytes(x[0] + "\n", "UTF-8") for x in cur.fetchall()])
|
|
|
|
with gzip.open(pkgbasefile, "w") as f:
|
|
f.write(bytes(pkgbaselist_header + "\n", "UTF-8"))
|
|
cur = conn.execute("SELECT Name FROM PackageBases " +
|
|
"WHERE PackagerUID IS NOT NULL")
|
|
f.writelines([bytes(x[0] + "\n", "UTF-8") for x in cur.fetchall()])
|
|
|
|
conn.close()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|