mirror of
https://github.com/GrassrootsEconomics/cic-dw.git
synced 2024-11-14 11:56:45 +01:00
Mohammed Sohail
1c65a11460
- no repeat on failure, picked up on next schedule - enforce uniq on users and tx table to prevent duplicates
35 lines
645 B
Go
35 lines
645 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"github.com/georgysavva/scany/pgxscan"
|
|
"github.com/hibiken/asynq"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type ussdSyncer struct {
|
|
app *App
|
|
}
|
|
|
|
func newUssdSyncer(app *App) *ussdSyncer {
|
|
return &ussdSyncer{
|
|
app: app,
|
|
}
|
|
}
|
|
|
|
func (s *ussdSyncer) ProcessTask(ctx context.Context, t *asynq.Task) error {
|
|
_, err := s.app.db.Exec(ctx, s.app.queries["ussd-syncer"])
|
|
if err != nil {
|
|
return asynq.SkipRetry
|
|
}
|
|
|
|
var count tableCount
|
|
if err := pgxscan.Get(ctx, s.app.db, &count, "SELECT COUNT(*) from users"); err != nil {
|
|
return asynq.SkipRetry
|
|
}
|
|
|
|
log.Info().Msgf("=> %d users synced", count.Count)
|
|
|
|
return nil
|
|
}
|