Queueing, prepping to fetch
A lot more to go, but this is the core. Need to think about how to test the queue handlers.
This commit is contained in:
9
internal/types/base.go
Normal file
9
internal/types/base.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package types
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"git.jadud.com/jadudm/grosbeak/internal/liteq"
|
||||
)
|
||||
|
||||
type QueueWorker func(ctx context.Context, job *liteq.Job) error
|
||||
9
internal/types/constants.go
Normal file
9
internal/types/constants.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package types
|
||||
|
||||
type UpdateFrequency string
|
||||
|
||||
const (
|
||||
UPDATE_DAILY UpdateFrequency = "DAILY"
|
||||
UPDATE_WEEKLY UpdateFrequency = "WEEKLY"
|
||||
UPDATE_MONTHLY UpdateFrequency = "MONTHLY"
|
||||
)
|
||||
22
internal/types/jobs.go
Normal file
22
internal/types/jobs.go
Normal file
@@ -0,0 +1,22 @@
|
||||
package types
|
||||
|
||||
import "encoding/json"
|
||||
|
||||
type Job interface {
|
||||
AsJson() string
|
||||
}
|
||||
|
||||
// Used by all of the jobs.
|
||||
func _as_json(j Job) string {
|
||||
as_json, _ := json.Marshal(j)
|
||||
return string(as_json)
|
||||
}
|
||||
|
||||
type EntreJob struct {
|
||||
URL string `json:"url"`
|
||||
UpdateFrequency UpdateFrequency `json:"update_frequency"`
|
||||
}
|
||||
|
||||
func (ej *EntreJob) AsJson() string {
|
||||
return _as_json(ej)
|
||||
}
|
||||
Reference in New Issue
Block a user