2026-01-21 03:30:03 +00:00
|
|
|
package background
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"sync"
|
2026-01-23 20:36:16 +00:00
|
|
|
|
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/comms/email"
|
2026-01-27 19:56:26 +00:00
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/platform/text"
|
2026-01-21 03:30:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var waitGroup sync.WaitGroup
|
|
|
|
|
|
|
|
|
|
func Start(ctx context.Context) {
|
|
|
|
|
newOAuthTokenChannel = make(chan struct{}, 10)
|
|
|
|
|
|
2026-02-08 03:52:39 +00:00
|
|
|
channelJobAudio = make(chan jobAudio, 100) // Buffered channel to prevent blocking
|
|
|
|
|
channelJobImportCSVPool = make(chan jobImportCSVPool, 100) // Buffered channel to prevent blocking
|
|
|
|
|
channelJobEmail = make(chan email.Job, 100) // Buffered channel to prevent blocking
|
|
|
|
|
channelJobText = make(chan text.Job, 100) // Buffered channel to prevent blocking
|
2026-01-21 03:30:03 +00:00
|
|
|
|
|
|
|
|
waitGroup.Add(1)
|
|
|
|
|
go func() {
|
|
|
|
|
defer waitGroup.Done()
|
|
|
|
|
refreshFieldseekerData(ctx, newOAuthTokenChannel)
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
waitGroup.Add(1)
|
|
|
|
|
go func() {
|
|
|
|
|
defer waitGroup.Done()
|
|
|
|
|
startWorkerAudio(ctx, channelJobAudio)
|
|
|
|
|
}()
|
|
|
|
|
|
2026-02-08 03:52:39 +00:00
|
|
|
waitGroup.Add(1)
|
|
|
|
|
go func() {
|
|
|
|
|
defer waitGroup.Done()
|
|
|
|
|
startWorkerCSV(ctx, channelJobImportCSVPool)
|
|
|
|
|
}()
|
|
|
|
|
|
2026-01-21 03:30:03 +00:00
|
|
|
waitGroup.Add(1)
|
|
|
|
|
go func() {
|
|
|
|
|
defer waitGroup.Done()
|
|
|
|
|
startWorkerEmail(ctx, channelJobEmail)
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
waitGroup.Add(1)
|
|
|
|
|
go func() {
|
|
|
|
|
defer waitGroup.Done()
|
|
|
|
|
startWorkerText(ctx, channelJobText)
|
|
|
|
|
}()
|
|
|
|
|
}
|
|
|
|
|
func WaitForExit() {
|
|
|
|
|
|
|
|
|
|
waitGroup.Wait()
|
|
|
|
|
}
|