forked from heroiclabs/nakama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_match.go
110 lines (96 loc) · 4.47 KB
/
api_match.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright 2018 The Nakama 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 server
import (
"fmt"
"github.com/gofrs/uuid"
"github.com/heroiclabs/nakama/api"
"go.opencensus.io/stats"
"go.opencensus.io/tag"
"go.opencensus.io/trace"
"go.uber.org/zap"
"golang.org/x/net/context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"time"
)
func (s *ApiServer) ListMatches(ctx context.Context, in *api.ListMatchesRequest) (*api.MatchList, error) {
// Before hook.
if fn := s.runtime.BeforeListMatches(); fn != nil {
// Stats measurement start boundary.
fullMethod := ctx.Value(ctxFullMethodKey{}).(string)
name := fmt.Sprintf("%v-before", fullMethod)
statsCtx, _ := tag.New(context.Background(), tag.Upsert(MetricsFunction, name))
startNanos := time.Now().UTC().UnixNano()
span := trace.NewSpan(name, nil, trace.StartOptions{})
// Extract request information and execute the hook.
clientIP, clientPort := extractClientAddress(s.logger, ctx)
result, err, code := fn(ctx, s.logger, ctx.Value(ctxUserIDKey{}).(uuid.UUID).String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, in)
if err != nil {
return nil, status.Error(code, err.Error())
}
if result == nil {
// If result is nil, requested resource is disabled.
s.logger.Warn("Intercepted a disabled resource.", zap.Any("resource", fullMethod), zap.String("uid", ctx.Value(ctxUserIDKey{}).(uuid.UUID).String()))
return nil, status.Error(codes.NotFound, "Requested resource was not found.")
}
in = result
// Stats measurement end boundary.
span.End()
stats.Record(statsCtx, MetricsApiTimeSpentMsec.M(float64(time.Now().UTC().UnixNano()-startNanos)/1000), MetricsApiCount.M(1))
}
limit := 1
if in.GetLimit() != nil {
if in.GetLimit().Value < 1 || in.GetLimit().Value > 100 {
return nil, status.Error(codes.InvalidArgument, "Invalid limit - limit must be between 1 and 100.")
}
limit = int(in.GetLimit().Value)
}
if in.Label != nil && (in.Authoritative != nil && !in.Authoritative.Value) {
return nil, status.Error(codes.InvalidArgument, "Label filtering is not supported for non-authoritative matches.")
}
if in.Query != nil && (in.Authoritative != nil && !in.Authoritative.Value) {
return nil, status.Error(codes.InvalidArgument, "Query filtering is not supported for non-authoritative matches.")
}
if in.MinSize != nil && in.MinSize.Value < 0 {
return nil, status.Error(codes.InvalidArgument, "Minimum size must be 0 or above.")
}
if in.MaxSize != nil && in.MaxSize.Value < 0 {
return nil, status.Error(codes.InvalidArgument, "Maximum size must be 0 or above.")
}
if in.MinSize != nil && in.MaxSize != nil && in.MinSize.Value > in.MaxSize.Value {
return nil, status.Error(codes.InvalidArgument, "Maximum size must be greater than or equal to minimum size when both are specified.")
}
results, err := s.matchRegistry.ListMatches(ctx, limit, in.Authoritative, in.Label, in.MinSize, in.MaxSize, in.Query)
if err != nil {
s.logger.Error("Error listing matches", zap.Error(err))
return nil, status.Error(codes.Internal, "Error listing matches.")
}
list := &api.MatchList{Matches: results}
// After hook.
if fn := s.runtime.AfterListMatches(); fn != nil {
// Stats measurement start boundary.
name := fmt.Sprintf("%v-after", ctx.Value(ctxFullMethodKey{}).(string))
statsCtx, _ := tag.New(context.Background(), tag.Upsert(MetricsFunction, name))
startNanos := time.Now().UTC().UnixNano()
span := trace.NewSpan(name, nil, trace.StartOptions{})
// Extract request information and execute the hook.
clientIP, clientPort := extractClientAddress(s.logger, ctx)
fn(ctx, s.logger, ctx.Value(ctxUserIDKey{}).(uuid.UUID).String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, list, in)
// Stats measurement end boundary.
span.End()
stats.Record(statsCtx, MetricsApiTimeSpentMsec.M(float64(time.Now().UTC().UnixNano()-startNanos)/1000), MetricsApiCount.M(1))
}
return list, nil
}