-
Notifications
You must be signed in to change notification settings - Fork 3
/
api_server.go
65 lines (58 loc) · 2.24 KB
/
api_server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright 2021 Monoskope Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eventstore
import (
"github.com/finleap-connect/monoskope/internal/eventstore/metrics"
"github.com/finleap-connect/monoskope/internal/eventstore/usecases"
esApi "github.com/finleap-connect/monoskope/pkg/api/eventsourcing"
"github.com/finleap-connect/monoskope/pkg/domain/errors"
es "github.com/finleap-connect/monoskope/pkg/eventsourcing"
"github.com/finleap-connect/monoskope/pkg/logger"
)
// apiServer is the implementation of the EventStore API
type apiServer struct {
esApi.UnimplementedEventStoreServer
// Logger interface
log logger.Logger
store es.EventStore
bus es.EventBusPublisher
metrics *metrics.EventStoreMetrics
}
// NewApiServer returns a new configured instance of apiServer
func NewApiServer(store es.EventStore, bus es.EventBusPublisher) *apiServer {
s := &apiServer{
log: logger.WithName("server"),
store: store,
bus: bus,
metrics: metrics.NewEventStoreMetrics(),
}
return s
}
// Store implements the API method for storing events
func (s *apiServer) Store(stream esApi.EventStore_StoreServer) error {
// Perform the use case for storing events
if err := usecases.NewStoreEventsUseCase(stream, s.store, s.bus, s.metrics).Run(stream.Context()); err != nil {
return errors.TranslateToGrpcError(err)
}
return nil
}
// Retrieve implements the API method for retrieving events from the store
func (s *apiServer) Retrieve(filter *esApi.EventFilter, stream esApi.EventStore_RetrieveServer) error {
// Perform the use case for storing events
err := usecases.NewRetrieveEventsUseCase(stream, s.store, filter, s.metrics).Run(stream.Context())
if err != nil {
return errors.TranslateToGrpcError(err)
}
return nil
}