2021-02-11 04:43:07 +05:30
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2021-05-26 18:20:35 +05:30
|
|
|
"context"
|
2021-02-11 04:43:07 +05:30
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NewCustomHealthCheckFunc returns a new health check function.
|
2021-05-26 18:20:35 +05:30
|
|
|
func NewCustomHealthCheckFunc(s Storage, now func() time.Time) func(context.Context) (details interface{}, err error) {
|
|
|
|
return func(_ context.Context) (details interface{}, err error) {
|
2021-02-11 04:43:07 +05:30
|
|
|
a := AuthRequest{
|
|
|
|
ID: NewID(),
|
|
|
|
ClientID: NewID(),
|
|
|
|
|
|
|
|
// Set a short expiry so if the delete fails this will be cleaned up quickly by garbage collection.
|
|
|
|
Expiry: now().Add(time.Minute),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.CreateAuthRequest(a); err != nil {
|
|
|
|
return nil, fmt.Errorf("create auth request: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.DeleteAuthRequest(a.ID); err != nil {
|
|
|
|
return nil, fmt.Errorf("delete auth request: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}
|