giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
32 lines
994 B
Go
32 lines
994 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"xorm.io/builder"
|
|
)
|
|
|
|
// CountOrphanedObjects count subjects with have no existing refobject anymore
|
|
func CountOrphanedObjects(ctx context.Context, subject, refObject, joinCond string) (int64, error) {
|
|
return GetEngine(ctx).
|
|
Table("`"+subject+"`").
|
|
Join("LEFT", "`"+refObject+"`", joinCond).
|
|
Where(builder.IsNull{"`" + refObject + "`.id"}).
|
|
Select("COUNT(`" + subject + "`.`id`)").
|
|
Count()
|
|
}
|
|
|
|
// DeleteOrphanedObjects delete subjects with have no existing refobject anymore
|
|
func DeleteOrphanedObjects(ctx context.Context, subject, refObject, joinCond string) error {
|
|
subQuery := builder.Select("`"+subject+"`.id").
|
|
From("`"+subject+"`").
|
|
Join("LEFT", "`"+refObject+"`", joinCond).
|
|
Where(builder.IsNull{"`" + refObject + "`.id"})
|
|
b := builder.Delete(builder.In("id", subQuery)).From("`" + subject + "`")
|
|
_, err := GetEngine(ctx).Exec(b)
|
|
return err
|
|
}
|