forked from heroiclabs/nakama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_channel.go
94 lines (81 loc) · 3.45 KB
/
api_channel.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
// 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
//
// https://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 (
"github.com/gofrs/uuid"
"github.com/heroiclabs/nakama/api"
"go.uber.org/zap"
"golang.org/x/net/context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
func (s *ApiServer) ListChannelMessages(ctx context.Context, in *api.ListChannelMessagesRequest) (*api.ChannelMessageList, error) {
userID := ctx.Value(ctxUserIDKey{}).(uuid.UUID)
// Before hook.
if fn := s.runtime.BeforeListChannelMessages(); fn != nil {
beforeFn := func(clientIP, clientPort string) error {
result, err, code := fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, in)
if err != nil {
return 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", ctx.Value(ctxFullMethodKey{}).(string)), zap.String("uid", userID.String()))
return status.Error(codes.NotFound, "Requested resource was not found.")
}
in = result
return nil
}
// Execute the before function lambda wrapped in a trace for stats measurement.
err := traceApiBefore(ctx, s.logger, ctx.Value(ctxFullMethodKey{}).(string), beforeFn)
if err != nil {
return nil, err
}
}
if in.ChannelId == "" {
return nil, status.Error(codes.InvalidArgument, "Invalid channel ID.")
}
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)
}
forward := true
if in.GetForward() != nil {
forward = in.GetForward().Value
}
streamConversionResult, err := ChannelIdToStream(in.ChannelId)
if err != nil {
return nil, status.Error(codes.InvalidArgument, "Invalid channel ID.")
}
messageList, err := ChannelMessagesList(ctx, s.logger, s.db, userID, streamConversionResult.Stream, in.ChannelId, limit, forward, in.Cursor)
if err == ErrChannelCursorInvalid {
return nil, status.Error(codes.InvalidArgument, "Cursor is invalid or expired.")
} else if err == ErrChannelGroupNotFound {
return nil, status.Error(codes.InvalidArgument, "Group not found.")
} else if err != nil {
return nil, status.Error(codes.Internal, "Error listing messages from channel.")
}
// After hook.
if fn := s.runtime.AfterListChannelMessages(); fn != nil {
afterFn := func(clientIP, clientPort string) {
fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, messageList, in)
}
// Execute the after function lambda wrapped in a trace for stats measurement.
traceApiAfter(ctx, s.logger, ctx.Value(ctxFullMethodKey{}).(string), afterFn)
}
return messageList, nil
}