]> source.dussan.org Git - gitea.git/commitdiff
Fix `DeleteCollaboration` transaction behaviour (#28886) (#28889)
authorGiteabot <teabot@gitea.io>
Mon, 22 Jan 2024 08:10:45 +0000 (16:10 +0800)
committerGitHub <noreply@github.com>
Mon, 22 Jan 2024 08:10:45 +0000 (09:10 +0100)
Backport #28886 by @KN4CK3R

The method can't be called with an outer transaction because if the user
is not a collaborator the outer transaction will be rolled back even if
the inner transaction uses the no-error path.

`has == 0` leads to `return nil` which cancels the transaction. A
standalone call of this method does nothing but if used with an outer
transaction, that will be canceled.

Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
services/repository/collaboration.go

index eff33c71f3ccf3fb942ecc8cd9f9976e37d86f4d..dccc124748136a459a81e5f0d2075df155c453e6 100644 (file)
@@ -26,9 +26,12 @@ func DeleteCollaboration(ctx context.Context, repo *repo_model.Repository, uid i
        }
        defer committer.Close()
 
-       if has, err := db.GetEngine(ctx).Delete(collaboration); err != nil || has == 0 {
+       if has, err := db.GetEngine(ctx).Delete(collaboration); err != nil {
                return err
-       } else if err = access_model.RecalculateAccesses(ctx, repo); err != nil {
+       } else if has == 0 {
+               return committer.Commit()
+       }
+       if err = access_model.RecalculateAccesses(ctx, repo); err != nil {
                return err
        }