Gisle Aune
5 years ago
16 changed files with 498 additions and 97 deletions
-
2database/mongodb/changes.go
-
29database/mongodb/channels.go
-
7database/mongodb/db.go
-
3graph2/complexity.go
-
2graph2/gqlgen.yml
-
79graph2/resolvers/channel.go
-
12graph2/types/log.go
-
16models/change.go
-
9models/channel.go
-
5services/changes.go
-
137services/channels.go
-
1services/characters.go
-
224services/loaders/channelloader_gen.go
-
44services/loaders/loaders.go
-
19services/logs.go
-
6services/services.go
@ -0,0 +1,137 @@ |
|||
package services |
|||
|
|||
import ( |
|||
"context" |
|||
"git.aiterp.net/rpdata/api/internal/auth" |
|||
"git.aiterp.net/rpdata/api/models" |
|||
"git.aiterp.net/rpdata/api/models/changekeys" |
|||
"git.aiterp.net/rpdata/api/repositories" |
|||
"git.aiterp.net/rpdata/api/services/loaders" |
|||
) |
|||
|
|||
// ChannelService is an application service for dealing with channels.
|
|||
type ChannelService struct { |
|||
channels repositories.ChannelRepository |
|||
loader *loaders.ChannelLoader |
|||
changeService *ChangeService |
|||
} |
|||
|
|||
func (s *ChannelService) Find(ctx context.Context, id string) (*models.Channel, error) { |
|||
return s.loader.Load(id) |
|||
} |
|||
|
|||
func (s *ChannelService) List(ctx context.Context, filter models.ChannelFilter) ([]*models.Channel, error) { |
|||
if filter.LocationName != nil && filter.EventName != nil && filter.Logged != nil && filter.Limit == 0 && len(filter.Names) > 0 { |
|||
channels, errs := s.loader.LoadAll(filter.Names) |
|||
for _, err := range errs { |
|||
if err != nil && err != repositories.ErrNotFound { |
|||
return nil, err |
|||
} |
|||
} |
|||
|
|||
output := make([]*models.Channel, 0, len(channels)) |
|||
for _, channel := range channels { |
|||
if channel == nil { |
|||
continue |
|||
} |
|||
output = append(output, channel) |
|||
} |
|||
|
|||
return output, nil |
|||
} |
|||
|
|||
return s.channels.List(ctx, filter) |
|||
} |
|||
|
|||
func (s *ChannelService) Create(ctx context.Context, name string, logged, hub bool, eventName, locationName string) (*models.Channel, error) { |
|||
err := auth.CheckPermission(ctx, "add", &models.Channel{}) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
channel, err := s.channels.Insert(ctx, models.Channel{ |
|||
Name: name, |
|||
Logged: logged, |
|||
Hub: hub, |
|||
EventName: eventName, |
|||
LocationName: locationName, |
|||
}) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
s.changeService.Submit(ctx, "Channel", "add", true, changekeys.Listed(channel), channel) |
|||
|
|||
return channel, nil |
|||
} |
|||
|
|||
func (s *ChannelService) Ensure(ctx context.Context, name string) (*models.Channel, error) { |
|||
err := auth.CheckPermission(ctx, "add", &models.Channel{}) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
channel, err := s.channels.Find(ctx, name) |
|||
if err != nil { |
|||
channel, err = s.channels.Insert(ctx, models.Channel{ |
|||
Name: name, |
|||
Logged: false, |
|||
Hub: false, |
|||
EventName: "", |
|||
LocationName: "", |
|||
}) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
s.changeService.Submit(ctx, "Channel", "add", true, changekeys.Listed(channel), channel) |
|||
} |
|||
|
|||
return channel, nil |
|||
} |
|||
|
|||
func (s *ChannelService) Update(ctx context.Context, name string, update models.ChannelUpdate) (*models.Channel, error) { |
|||
channel, err := s.channels.Find(ctx, name) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
err = auth.CheckPermission(ctx, "edit", channel) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
channel, err = s.channels.Update(ctx, *channel, update) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
s.loader.Clear(channel.Name) |
|||
|
|||
s.changeService.Submit(ctx, "Channel", "edit", true, changekeys.Listed(channel), channel) |
|||
|
|||
return channel, nil |
|||
} |
|||
|
|||
func (s *ChannelService) Delete(ctx context.Context, name string) (*models.Channel, error) { |
|||
channel, err := s.channels.Find(ctx, name) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
err = auth.CheckPermission(ctx, "remove", channel) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
err = s.channels.Remove(ctx, *channel) |
|||
if err != nil { |
|||
return nil, err |
|||
} |
|||
|
|||
s.changeService.Submit(ctx, "Channel", "remove", true, changekeys.Listed(channel), channel) |
|||
|
|||
s.loader.Clear(channel.Name) |
|||
|
|||
return channel, nil |
|||
} |
@ -0,0 +1,224 @@ |
|||
// Code generated by github.com/vektah/dataloaden, DO NOT EDIT.
|
|||
|
|||
package loaders |
|||
|
|||
import ( |
|||
"sync" |
|||
"time" |
|||
|
|||
"git.aiterp.net/rpdata/api/models" |
|||
) |
|||
|
|||
// ChannelLoaderConfig captures the config to create a new ChannelLoader
|
|||
type ChannelLoaderConfig struct { |
|||
// Fetch is a method that provides the data for the loader
|
|||
Fetch func(keys []string) ([]*models.Channel, []error) |
|||
|
|||
// Wait is how long wait before sending a batch
|
|||
Wait time.Duration |
|||
|
|||
// MaxBatch will limit the maximum number of keys to send in one batch, 0 = not limit
|
|||
MaxBatch int |
|||
} |
|||
|
|||
// NewChannelLoader creates a new ChannelLoader given a fetch, wait, and maxBatch
|
|||
func NewChannelLoader(config ChannelLoaderConfig) *ChannelLoader { |
|||
return &ChannelLoader{ |
|||
fetch: config.Fetch, |
|||
wait: config.Wait, |
|||
maxBatch: config.MaxBatch, |
|||
} |
|||
} |
|||
|
|||
// ChannelLoader batches and caches requests
|
|||
type ChannelLoader struct { |
|||
// this method provides the data for the loader
|
|||
fetch func(keys []string) ([]*models.Channel, []error) |
|||
|
|||
// how long to done before sending a batch
|
|||
wait time.Duration |
|||
|
|||
// this will limit the maximum number of keys to send in one batch, 0 = no limit
|
|||
maxBatch int |
|||
|
|||
// INTERNAL
|
|||
|
|||
// lazily created cache
|
|||
cache map[string]*models.Channel |
|||
|
|||
// the current batch. keys will continue to be collected until timeout is hit,
|
|||
// then everything will be sent to the fetch method and out to the listeners
|
|||
batch *channelLoaderBatch |
|||
|
|||
// mutex to prevent races
|
|||
mu sync.Mutex |
|||
} |
|||
|
|||
type channelLoaderBatch struct { |
|||
keys []string |
|||
data []*models.Channel |
|||
error []error |
|||
closing bool |
|||
done chan struct{} |
|||
} |
|||
|
|||
// Load a Channel by key, batching and caching will be applied automatically
|
|||
func (l *ChannelLoader) Load(key string) (*models.Channel, error) { |
|||
return l.LoadThunk(key)() |
|||
} |
|||
|
|||
// LoadThunk returns a function that when called will block waiting for a Channel.
|
|||
// This method should be used if you want one goroutine to make requests to many
|
|||
// different data loaders without blocking until the thunk is called.
|
|||
func (l *ChannelLoader) LoadThunk(key string) func() (*models.Channel, error) { |
|||
l.mu.Lock() |
|||
if it, ok := l.cache[key]; ok { |
|||
l.mu.Unlock() |
|||
return func() (*models.Channel, error) { |
|||
return it, nil |
|||
} |
|||
} |
|||
if l.batch == nil { |
|||
l.batch = &channelLoaderBatch{done: make(chan struct{})} |
|||
} |
|||
batch := l.batch |
|||
pos := batch.keyIndex(l, key) |
|||
l.mu.Unlock() |
|||
|
|||
return func() (*models.Channel, error) { |
|||
<-batch.done |
|||
|
|||
var data *models.Channel |
|||
if pos < len(batch.data) { |
|||
data = batch.data[pos] |
|||
} |
|||
|
|||
var err error |
|||
// its convenient to be able to return a single error for everything
|
|||
if len(batch.error) == 1 { |
|||
err = batch.error[0] |
|||
} else if batch.error != nil { |
|||
err = batch.error[pos] |
|||
} |
|||
|
|||
if err == nil { |
|||
l.mu.Lock() |
|||
l.unsafeSet(key, data) |
|||
l.mu.Unlock() |
|||
} |
|||
|
|||
return data, err |
|||
} |
|||
} |
|||
|
|||
// LoadAll fetches many keys at once. It will be broken into appropriate sized
|
|||
// sub batches depending on how the loader is configured
|
|||
func (l *ChannelLoader) LoadAll(keys []string) ([]*models.Channel, []error) { |
|||
results := make([]func() (*models.Channel, error), len(keys)) |
|||
|
|||
for i, key := range keys { |
|||
results[i] = l.LoadThunk(key) |
|||
} |
|||
|
|||
channels := make([]*models.Channel, len(keys)) |
|||
errors := make([]error, len(keys)) |
|||
for i, thunk := range results { |
|||
channels[i], errors[i] = thunk() |
|||
} |
|||
return channels, errors |
|||
} |
|||
|
|||
// LoadAllThunk returns a function that when called will block waiting for a Channels.
|
|||
// This method should be used if you want one goroutine to make requests to many
|
|||
// different data loaders without blocking until the thunk is called.
|
|||
func (l *ChannelLoader) LoadAllThunk(keys []string) func() ([]*models.Channel, []error) { |
|||
results := make([]func() (*models.Channel, error), len(keys)) |
|||
for i, key := range keys { |
|||
results[i] = l.LoadThunk(key) |
|||
} |
|||
return func() ([]*models.Channel, []error) { |
|||
channels := make([]*models.Channel, len(keys)) |
|||
errors := make([]error, len(keys)) |
|||
for i, thunk := range results { |
|||
channels[i], errors[i] = thunk() |
|||
} |
|||
return channels, errors |
|||
} |
|||
} |
|||
|
|||
// Prime the cache with the provided key and value. If the key already exists, no change is made
|
|||
// and false is returned.
|
|||
// (To forcefully prime the cache, clear the key first with loader.clear(key).prime(key, value).)
|
|||
func (l *ChannelLoader) Prime(key string, value *models.Channel) bool { |
|||
l.mu.Lock() |
|||
var found bool |
|||
if _, found = l.cache[key]; !found { |
|||
// make a copy when writing to the cache, its easy to pass a pointer in from a loop var
|
|||
// and end up with the whole cache pointing to the same value.
|
|||
cpy := *value |
|||
l.unsafeSet(key, &cpy) |
|||
} |
|||
l.mu.Unlock() |
|||
return !found |
|||
} |
|||
|
|||
// Clear the value at key from the cache, if it exists
|
|||
func (l *ChannelLoader) Clear(key string) { |
|||
l.mu.Lock() |
|||
delete(l.cache, key) |
|||
l.mu.Unlock() |
|||
} |
|||
|
|||
func (l *ChannelLoader) unsafeSet(key string, value *models.Channel) { |
|||
if l.cache == nil { |
|||
l.cache = map[string]*models.Channel{} |
|||
} |
|||
l.cache[key] = value |
|||
} |
|||
|
|||
// keyIndex will return the location of the key in the batch, if its not found
|
|||
// it will add the key to the batch
|
|||
func (b *channelLoaderBatch) keyIndex(l *ChannelLoader, key string) int { |
|||
for i, existingKey := range b.keys { |
|||
if key == existingKey { |
|||
return i |
|||
} |
|||
} |
|||
|
|||
pos := len(b.keys) |
|||
b.keys = append(b.keys, key) |
|||
if pos == 0 { |
|||
go b.startTimer(l) |
|||
} |
|||
|
|||
if l.maxBatch != 0 && pos >= l.maxBatch-1 { |
|||
if !b.closing { |
|||
b.closing = true |
|||
l.batch = nil |
|||
go b.end(l) |
|||
} |
|||
} |
|||
|
|||
return pos |
|||
} |
|||
|
|||
func (b *channelLoaderBatch) startTimer(l *ChannelLoader) { |
|||
time.Sleep(l.wait) |
|||
l.mu.Lock() |
|||
|
|||
// we must have hit a batch limit and are already finalizing this batch
|
|||
if b.closing { |
|||
l.mu.Unlock() |
|||
return |
|||
} |
|||
|
|||
l.batch = nil |
|||
l.mu.Unlock() |
|||
|
|||
b.end(l) |
|||
} |
|||
|
|||
func (b *channelLoaderBatch) end(l *ChannelLoader) { |
|||
b.data, b.error = l.fetch(b.keys) |
|||
close(b.done) |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue