mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:01:24 +01:00
Merge pull request '[v1.21/forgejo] [BUG] Don't delete inactive emails explicitly' (#2885) from bp-v1.21/forgejo-190383d into v1.21/forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2885 Reviewed-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
commit
59bc466ad5
3 changed files with 33 additions and 9 deletions
|
@ -320,14 +320,6 @@ func DeleteEmailAddresses(ctx context.Context, emails []*EmailAddress) (err erro
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// DeleteInactiveEmailAddresses deletes inactive email addresses
|
|
||||||
func DeleteInactiveEmailAddresses(ctx context.Context) error {
|
|
||||||
_, err := db.GetEngine(ctx).
|
|
||||||
Where("is_activated = ?", false).
|
|
||||||
Delete(new(EmailAddress))
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// ActivateEmail activates the email address to given user.
|
// ActivateEmail activates the email address to given user.
|
||||||
func ActivateEmail(ctx context.Context, email *EmailAddress) error {
|
func ActivateEmail(ctx context.Context, email *EmailAddress) error {
|
||||||
ctx, committer, err := db.TxContext(ctx)
|
ctx, committer, err := db.TxContext(ctx)
|
||||||
|
|
|
@ -307,5 +307,5 @@ func DeleteInactiveUsers(ctx context.Context, olderThan time.Duration) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return user_model.DeleteInactiveEmailAddresses(ctx)
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
"code.gitea.io/gitea/models/auth"
|
"code.gitea.io/gitea/models/auth"
|
||||||
|
@ -17,6 +18,7 @@ import (
|
||||||
"code.gitea.io/gitea/models/unittest"
|
"code.gitea.io/gitea/models/unittest"
|
||||||
user_model "code.gitea.io/gitea/models/user"
|
user_model "code.gitea.io/gitea/models/user"
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
|
"code.gitea.io/gitea/modules/timeutil"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
@ -187,3 +189,33 @@ func TestCreateUser_Issue5882(t *testing.T) {
|
||||||
assert.NoError(t, DeleteUser(db.DefaultContext, v.user, false))
|
assert.NoError(t, DeleteUser(db.DefaultContext, v.user, false))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestDeleteInactiveUsers(t *testing.T) {
|
||||||
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
||||||
|
// Add an inactive user older than a minute, with an associated email_address record.
|
||||||
|
oldUser := &user_model.User{Name: "OldInactive", LowerName: "oldinactive", Email: "old@example.com", CreatedUnix: timeutil.TimeStampNow().Add(-120)}
|
||||||
|
_, err := db.GetEngine(db.DefaultContext).NoAutoTime().Insert(oldUser)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
oldEmail := &user_model.EmailAddress{UID: oldUser.ID, IsPrimary: true, Email: "old@example.com", LowerEmail: "old@example.com"}
|
||||||
|
err = db.Insert(db.DefaultContext, oldEmail)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// Add an inactive user that's not older than a minute, with an associated email_address record.
|
||||||
|
newUser := &user_model.User{Name: "NewInactive", LowerName: "newinactive", Email: "new@example.com"}
|
||||||
|
err = db.Insert(db.DefaultContext, newUser)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
newEmail := &user_model.EmailAddress{UID: newUser.ID, IsPrimary: true, Email: "new@example.com", LowerEmail: "new@example.com"}
|
||||||
|
err = db.Insert(db.DefaultContext, newEmail)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
err = DeleteInactiveUsers(db.DefaultContext, time.Minute)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
// User older than a minute should be deleted along with their email address.
|
||||||
|
unittest.AssertExistsIf(t, false, oldUser)
|
||||||
|
unittest.AssertExistsIf(t, false, oldEmail)
|
||||||
|
|
||||||
|
// User not older than a minute shouldn't be deleted and their emaill address should still exist.
|
||||||
|
unittest.AssertExistsIf(t, true, newUser)
|
||||||
|
unittest.AssertExistsIf(t, true, newEmail)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue