user: take context in user.stop

This commit is contained in:
Simon Ser 2023-01-26 16:32:21 +01:00
parent 5a9dced249
commit bbf234d441
2 changed files with 24 additions and 7 deletions

View file

@ -1076,15 +1076,19 @@ func handleUserDelete(ctx *serviceContext, params []string) error {
return fmt.Errorf("provided confirmation token doesn't match user")
}
c := ctx.Context
var deleteCtx context.Context = ctx
if self {
ctx.print(fmt.Sprintf("Goodbye %s, deleting your account. There will be no further confirmation.", username))
c = context.TODO()
// We can't use ctx here, because it'll be cancelled once we close the
// downstream connection
deleteCtx = context.TODO()
}
u.stop()
if err := u.stop(deleteCtx); err != nil {
return fmt.Errorf("failed to stop user: %v", err)
}
if err := ctx.user.srv.db.DeleteUser(c, u.ID); err != nil {
if err := ctx.user.srv.db.DeleteUser(deleteCtx, u.ID); err != nil {
return fmt.Errorf("failed to delete user: %v", err)
}

19
user.go
View file

@ -1126,9 +1126,22 @@ func (u *user) updateUser(ctx context.Context, record *database.User) error {
return nil
}
func (u *user) stop() {
u.events <- eventStop{}
<-u.done
func (u *user) stop(ctx context.Context) error {
select {
case <-u.done:
return nil // already stopped
case u.events <- eventStop{}:
// we've requested to stop, let's wait for the user goroutine to exit
case <-ctx.Done():
return ctx.Err()
}
select {
case <-u.done:
return nil
case <-ctx.Done():
return ctx.Err()
}
}
func (u *user) hasPersistentMsgStore() bool {