mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
feat: add field "Submitter" to metadata-archives
This commit is contained in:
parent
48e5dc6763
commit
333051ab1f
2 changed files with 12 additions and 1 deletions
|
@ -163,6 +163,7 @@ def as_dict(package: Package) -> dict[str, Any]:
|
|||
"Popularity": float(package.Popularity),
|
||||
"OutOfDate": package.OutOfDate,
|
||||
"Maintainer": package.Maintainer,
|
||||
"Submitter": package.Submitter,
|
||||
"FirstSubmitted": package.FirstSubmitted,
|
||||
"LastModified": package.LastModified,
|
||||
}
|
||||
|
@ -190,10 +191,13 @@ def _main():
|
|||
logger.warning(f"{sys.argv[0]} is deprecated and will be soon be removed")
|
||||
logger.info("Started re-creating archives, wait a while...")
|
||||
|
||||
Submitter = orm.aliased(User)
|
||||
|
||||
query = (
|
||||
db.query(Package)
|
||||
.join(PackageBase, PackageBase.ID == Package.PackageBaseID)
|
||||
.join(User, PackageBase.MaintainerUID == User.ID, isouter=True)
|
||||
.join(Submitter, PackageBase.SubmitterUID == Submitter.ID, isouter=True)
|
||||
.filter(PackageBase.PackagerUID.isnot(None))
|
||||
.with_entities(
|
||||
Package.ID,
|
||||
|
@ -207,6 +211,7 @@ def _main():
|
|||
PackageBase.Popularity,
|
||||
PackageBase.OutOfDateTS.label("OutOfDate"),
|
||||
User.Username.label("Maintainer"),
|
||||
Submitter.Username.label("Submitter"),
|
||||
PackageBase.SubmittedTS.label("FirstSubmitted"),
|
||||
PackageBase.ModifiedTS.label("LastModified"),
|
||||
)
|
||||
|
|
|
@ -30,6 +30,7 @@ META_KEYS = [
|
|||
"Popularity",
|
||||
"OutOfDate",
|
||||
"Maintainer",
|
||||
"Submitter",
|
||||
"FirstSubmitted",
|
||||
"LastModified",
|
||||
"URLPath",
|
||||
|
@ -61,7 +62,12 @@ def packages(user: User) -> list[Package]:
|
|||
lic = db.create(License, Name="GPL")
|
||||
for i in range(5):
|
||||
# Create the package.
|
||||
pkgbase = db.create(PackageBase, Name=f"pkgbase_{i}", Packager=user)
|
||||
pkgbase = db.create(
|
||||
PackageBase,
|
||||
Name=f"pkgbase_{i}",
|
||||
Packager=user,
|
||||
Submitter=user,
|
||||
)
|
||||
pkg = db.create(Package, PackageBase=pkgbase, Name=f"pkg_{i}")
|
||||
|
||||
# Create some related records.
|
||||
|
|
Loading…
Add table
Reference in a new issue