mirror of
https://github.com/openziti/zrok.git
synced 2025-01-20 12:58:59 +01:00
added go routine to cleaup expired access requests
This commit is contained in:
parent
c4c497b88e
commit
e69119896e
@ -1,6 +1,8 @@
|
|||||||
package controller
|
package controller
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/michaelquigley/cf"
|
"github.com/michaelquigley/cf"
|
||||||
"github.com/openziti-test-kitchen/zrok/controller/store"
|
"github.com/openziti-test-kitchen/zrok/controller/store"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
@ -18,6 +20,7 @@ type Config struct {
|
|||||||
Ziti *ZitiConfig
|
Ziti *ZitiConfig
|
||||||
Metrics *MetricsConfig
|
Metrics *MetricsConfig
|
||||||
Influx *InfluxConfig
|
Influx *InfluxConfig
|
||||||
|
Maintenance *MaintenanceConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
type AdminConfig struct {
|
type AdminConfig struct {
|
||||||
@ -58,6 +61,15 @@ type InfluxConfig struct {
|
|||||||
Token string `cf:"+secret"`
|
Token string `cf:"+secret"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type MaintenanceConfig struct {
|
||||||
|
Registration *RegistrationMaintenanceConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
type RegistrationMaintenanceConfig struct {
|
||||||
|
ExpirationTimeout time.Duration
|
||||||
|
CheckFrequency time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
func LoadConfig(path string) (*Config, error) {
|
func LoadConfig(path string) (*Config, error) {
|
||||||
cfg := &Config{
|
cfg := &Config{
|
||||||
Metrics: &MetricsConfig{ServiceName: "metrics"},
|
Metrics: &MetricsConfig{ServiceName: "metrics"},
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package controller
|
package controller
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
"github.com/go-openapi/loads"
|
"github.com/go-openapi/loads"
|
||||||
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
|
||||||
"github.com/openziti-test-kitchen/zrok/controller/store"
|
"github.com/openziti-test-kitchen/zrok/controller/store"
|
||||||
@ -70,6 +72,15 @@ func Run(inCfg *Config) error {
|
|||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer func() {
|
||||||
|
cancel()
|
||||||
|
}()
|
||||||
|
|
||||||
|
if cfg.Maintenance != nil && cfg.Maintenance.Registration != nil {
|
||||||
|
go newMaintenanceAgent(ctx, cfg.Maintenance.Registration.CheckFrequency, cfg.Maintenance.Registration.ExpirationTimeout).run()
|
||||||
|
}
|
||||||
|
|
||||||
server := rest_server_zrok.NewServer(api)
|
server := rest_server_zrok.NewServer(api)
|
||||||
defer func() { _ = server.Shutdown() }()
|
defer func() { _ = server.Shutdown() }()
|
||||||
server.Host = cfg.Endpoint.Host
|
server.Host = cfg.Endpoint.Host
|
||||||
|
61
controller/maintenance.go
Normal file
61
controller/maintenance.go
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
package controller
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
type maintenanceAgent struct {
|
||||||
|
ctx context.Context
|
||||||
|
frequency time.Duration
|
||||||
|
expiration time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
|
func newMaintenanceAgent(ctx context.Context, frequency, expiration time.Duration) *maintenanceAgent {
|
||||||
|
return &maintenanceAgent{
|
||||||
|
ctx: ctx,
|
||||||
|
frequency: frequency,
|
||||||
|
expiration: expiration,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ma *maintenanceAgent) run() {
|
||||||
|
ticker := time.NewTicker(ma.frequency)
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ma.ctx.Done():
|
||||||
|
{
|
||||||
|
ticker.Stop()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
case <-ticker.C:
|
||||||
|
{
|
||||||
|
logrus.Info("TICK")
|
||||||
|
if err := ma.deleteExpiredAccountRequests(); err != nil {
|
||||||
|
logrus.Error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ma *maintenanceAgent) deleteExpiredAccountRequests() error {
|
||||||
|
tx, err := str.Begin()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer func() { _ = tx.Rollback() }()
|
||||||
|
|
||||||
|
if err := str.DeleteExpiredAccountRequests(time.Now().UTC().Add(-ma.expiration), tx); err != nil {
|
||||||
|
return errors.Wrapf(err, "error deleting expired account requests")
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := tx.Commit(); err != nil {
|
||||||
|
return errors.Wrapf(err, "error committing expired acount requests deletion")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
@ -1,8 +1,11 @@
|
|||||||
package store
|
package store
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/jmoiron/sqlx"
|
"github.com/jmoiron/sqlx"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AccountRequest struct {
|
type AccountRequest struct {
|
||||||
@ -59,3 +62,16 @@ func (self *Store) DeleteAccountRequest(id int, tx *sqlx.Tx) error {
|
|||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (self *Store) DeleteExpiredAccountRequests(before time.Time, tx *sqlx.Tx) error {
|
||||||
|
stmt, err := tx.Prepare("delete from account_requests where created_at < $1")
|
||||||
|
logrus.Infof("Trying to delete account requests older than %v", before)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "error preparing account_requests delete expired statement")
|
||||||
|
}
|
||||||
|
_, err = stmt.Exec(before)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "error executing account_requests delete expired statement")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user