mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-22 14:16:47 +01:00
67 lines
2.2 KiB
Go
67 lines
2.2 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/grassrootseconomics/cic-custodial/internal/tasker"
|
||
|
"github.com/grassrootseconomics/cic-custodial/internal/tasker/task"
|
||
|
"github.com/grassrootseconomics/cic-custodial/pkg/redis"
|
||
|
"github.com/hibiken/asynq"
|
||
|
)
|
||
|
|
||
|
// Load tasker handlers injecting necessary handler dependencies from the system container.
|
||
|
func initTasker(custodialContainer *custodial, redisPool *redis.RedisPool) *tasker.TaskerServer {
|
||
|
lo.Debug("Bootstrapping tasker")
|
||
|
|
||
|
taskerServerOpts := tasker.TaskerServerOpts{
|
||
|
Concurrency: ko.MustInt("asynq.worker_count"),
|
||
|
Logg: lo,
|
||
|
RedisPool: redisPool,
|
||
|
SystemContainer: custodialContainer.systemContainer,
|
||
|
TaskerClient: custodialContainer.taskerClient,
|
||
|
}
|
||
|
|
||
|
if debugFlag {
|
||
|
taskerServerOpts.LogLevel = asynq.DebugLevel
|
||
|
}
|
||
|
|
||
|
taskerServer := tasker.NewTaskerServer(taskerServerOpts)
|
||
|
|
||
|
taskerServer.RegisterHandlers(tasker.PrepareAccountTask, task.PrepareAccount(
|
||
|
custodialContainer.noncestore,
|
||
|
custodialContainer.taskerClient,
|
||
|
))
|
||
|
taskerServer.RegisterHandlers(tasker.GiftGasTask, task.GiftGasProcessor(
|
||
|
custodialContainer.celoProvider,
|
||
|
custodialContainer.noncestore,
|
||
|
custodialContainer.lockProvider,
|
||
|
custodialContainer.systemContainer,
|
||
|
custodialContainer.taskerClient,
|
||
|
))
|
||
|
taskerServer.RegisterHandlers(tasker.GiftTokenTask, task.GiftTokenProcessor(
|
||
|
custodialContainer.celoProvider,
|
||
|
custodialContainer.noncestore,
|
||
|
custodialContainer.lockProvider,
|
||
|
custodialContainer.systemContainer,
|
||
|
custodialContainer.taskerClient,
|
||
|
))
|
||
|
taskerServer.RegisterHandlers(tasker.RefillGasTask, task.RefillGasProcessor(
|
||
|
custodialContainer.celoProvider,
|
||
|
custodialContainer.noncestore,
|
||
|
custodialContainer.lockProvider,
|
||
|
custodialContainer.systemContainer,
|
||
|
custodialContainer.taskerClient,
|
||
|
))
|
||
|
taskerServer.RegisterHandlers(tasker.TransferTokenTask, task.TransferToken(
|
||
|
custodialContainer.celoProvider,
|
||
|
custodialContainer.noncestore,
|
||
|
custodialContainer.keystore,
|
||
|
custodialContainer.lockProvider,
|
||
|
custodialContainer.systemContainer,
|
||
|
custodialContainer.taskerClient,
|
||
|
))
|
||
|
taskerServer.RegisterHandlers(tasker.TxDispatchTask, task.TxDispatch(
|
||
|
custodialContainer.celoProvider,
|
||
|
))
|
||
|
|
||
|
return taskerServer
|
||
|
}
|