api.pb.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: riskcontrol.proto
  3. package v1
  4. import (
  5. context "context"
  6. fmt "fmt"
  7. _ "github.com/gogo/protobuf/gogoproto"
  8. proto "github.com/golang/protobuf/proto"
  9. grpc "google.golang.org/grpc"
  10. math "math"
  11. )
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  21. type GetForbiddenReply_ForbiddenRes int32
  22. const (
  23. GetForbiddenReply_PASS GetForbiddenReply_ForbiddenRes = 0
  24. GetForbiddenReply_FORBIDDEN GetForbiddenReply_ForbiddenRes = 1
  25. GetForbiddenReply_DOUBT GetForbiddenReply_ForbiddenRes = 2
  26. )
  27. var GetForbiddenReply_ForbiddenRes_name = map[int32]string{
  28. 0: "PASS",
  29. 1: "FORBIDDEN",
  30. 2: "DOUBT",
  31. }
  32. var GetForbiddenReply_ForbiddenRes_value = map[string]int32{
  33. "PASS": 0,
  34. "FORBIDDEN": 1,
  35. "DOUBT": 2,
  36. }
  37. func (x GetForbiddenReply_ForbiddenRes) String() string {
  38. return proto.EnumName(GetForbiddenReply_ForbiddenRes_name, int32(x))
  39. }
  40. func (GetForbiddenReply_ForbiddenRes) EnumDescriptor() ([]byte, []int) {
  41. return fileDescriptor_02186d23d36e97ba, []int{1, 0}
  42. }
  43. // GetForbiddenReq
  44. type GetForbiddenReq struct {
  45. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  46. Uri string `protobuf:"bytes,2,opt,name=uri,proto3" json:"uri,omitempty"`
  47. Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
  48. Method string `protobuf:"bytes,4,opt,name=method,proto3" json:"method,omitempty"`
  49. Header map[string]string `protobuf:"bytes,5,rep,name=header,proto3" json:"header,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  50. Body string `protobuf:"bytes,6,opt,name=body,proto3" json:"body,omitempty"`
  51. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  52. XXX_unrecognized []byte `json:"-"`
  53. XXX_sizecache int32 `json:"-"`
  54. }
  55. func (m *GetForbiddenReq) Reset() { *m = GetForbiddenReq{} }
  56. func (m *GetForbiddenReq) String() string { return proto.CompactTextString(m) }
  57. func (*GetForbiddenReq) ProtoMessage() {}
  58. func (*GetForbiddenReq) Descriptor() ([]byte, []int) {
  59. return fileDescriptor_02186d23d36e97ba, []int{0}
  60. }
  61. func (m *GetForbiddenReq) XXX_Unmarshal(b []byte) error {
  62. return xxx_messageInfo_GetForbiddenReq.Unmarshal(m, b)
  63. }
  64. func (m *GetForbiddenReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  65. return xxx_messageInfo_GetForbiddenReq.Marshal(b, m, deterministic)
  66. }
  67. func (m *GetForbiddenReq) XXX_Merge(src proto.Message) {
  68. xxx_messageInfo_GetForbiddenReq.Merge(m, src)
  69. }
  70. func (m *GetForbiddenReq) XXX_Size() int {
  71. return xxx_messageInfo_GetForbiddenReq.Size(m)
  72. }
  73. func (m *GetForbiddenReq) XXX_DiscardUnknown() {
  74. xxx_messageInfo_GetForbiddenReq.DiscardUnknown(m)
  75. }
  76. var xxx_messageInfo_GetForbiddenReq proto.InternalMessageInfo
  77. func (m *GetForbiddenReq) GetUid() int64 {
  78. if m != nil {
  79. return m.Uid
  80. }
  81. return 0
  82. }
  83. func (m *GetForbiddenReq) GetUri() string {
  84. if m != nil {
  85. return m.Uri
  86. }
  87. return ""
  88. }
  89. func (m *GetForbiddenReq) GetIp() string {
  90. if m != nil {
  91. return m.Ip
  92. }
  93. return ""
  94. }
  95. func (m *GetForbiddenReq) GetMethod() string {
  96. if m != nil {
  97. return m.Method
  98. }
  99. return ""
  100. }
  101. func (m *GetForbiddenReq) GetHeader() map[string]string {
  102. if m != nil {
  103. return m.Header
  104. }
  105. return nil
  106. }
  107. func (m *GetForbiddenReq) GetBody() string {
  108. if m != nil {
  109. return m.Body
  110. }
  111. return ""
  112. }
  113. // GetForbiddenReply
  114. type GetForbiddenReply struct {
  115. IsForbidden GetForbiddenReply_ForbiddenRes `protobuf:"varint,1,opt,name=is_forbidden,json=isForbidden,proto3,enum=live.riskcontrol.v1.GetForbiddenReply_ForbiddenRes" json:"is_forbidden,omitempty"`
  116. IsCache bool `protobuf:"varint,2,opt,name=is_cache,json=isCache,proto3" json:"is_cache,omitempty"`
  117. Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
  118. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  119. XXX_unrecognized []byte `json:"-"`
  120. XXX_sizecache int32 `json:"-"`
  121. }
  122. func (m *GetForbiddenReply) Reset() { *m = GetForbiddenReply{} }
  123. func (m *GetForbiddenReply) String() string { return proto.CompactTextString(m) }
  124. func (*GetForbiddenReply) ProtoMessage() {}
  125. func (*GetForbiddenReply) Descriptor() ([]byte, []int) {
  126. return fileDescriptor_02186d23d36e97ba, []int{1}
  127. }
  128. func (m *GetForbiddenReply) XXX_Unmarshal(b []byte) error {
  129. return xxx_messageInfo_GetForbiddenReply.Unmarshal(m, b)
  130. }
  131. func (m *GetForbiddenReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  132. return xxx_messageInfo_GetForbiddenReply.Marshal(b, m, deterministic)
  133. }
  134. func (m *GetForbiddenReply) XXX_Merge(src proto.Message) {
  135. xxx_messageInfo_GetForbiddenReply.Merge(m, src)
  136. }
  137. func (m *GetForbiddenReply) XXX_Size() int {
  138. return xxx_messageInfo_GetForbiddenReply.Size(m)
  139. }
  140. func (m *GetForbiddenReply) XXX_DiscardUnknown() {
  141. xxx_messageInfo_GetForbiddenReply.DiscardUnknown(m)
  142. }
  143. var xxx_messageInfo_GetForbiddenReply proto.InternalMessageInfo
  144. func (m *GetForbiddenReply) GetIsForbidden() GetForbiddenReply_ForbiddenRes {
  145. if m != nil {
  146. return m.IsForbidden
  147. }
  148. return GetForbiddenReply_PASS
  149. }
  150. func (m *GetForbiddenReply) GetIsCache() bool {
  151. if m != nil {
  152. return m.IsCache
  153. }
  154. return false
  155. }
  156. func (m *GetForbiddenReply) GetReason() string {
  157. if m != nil {
  158. return m.Reason
  159. }
  160. return ""
  161. }
  162. func init() {
  163. proto.RegisterEnum("live.riskcontrol.v1.GetForbiddenReply_ForbiddenRes", GetForbiddenReply_ForbiddenRes_name, GetForbiddenReply_ForbiddenRes_value)
  164. proto.RegisterType((*GetForbiddenReq)(nil), "live.riskcontrol.v1.GetForbiddenReq")
  165. proto.RegisterMapType((map[string]string)(nil), "live.riskcontrol.v1.GetForbiddenReq.HeaderEntry")
  166. proto.RegisterType((*GetForbiddenReply)(nil), "live.riskcontrol.v1.GetForbiddenReply")
  167. }
  168. func init() { proto.RegisterFile("riskcontrol.proto", fileDescriptor_02186d23d36e97ba) }
  169. var fileDescriptor_02186d23d36e97ba = []byte{
  170. // 482 bytes of a gzipped FileDescriptorProto
  171. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcf, 0x6e, 0xd3, 0x40,
  172. 0x10, 0xc6, 0xb1, 0x9d, 0x9a, 0x64, 0x12, 0xc0, 0x5d, 0x38, 0x58, 0x91, 0xc0, 0xee, 0xaa, 0x40,
  173. 0x2e, 0xb8, 0x24, 0xe5, 0x50, 0x22, 0x71, 0xc0, 0xa4, 0x85, 0x5e, 0x28, 0x72, 0xe1, 0x82, 0x90,
  174. 0x2a, 0x3b, 0xde, 0xc4, 0xab, 0x38, 0x59, 0x77, 0xfd, 0x47, 0xf2, 0x83, 0x72, 0xf5, 0x03, 0xe4,
  175. 0x98, 0x07, 0x40, 0x28, 0xbb, 0xa1, 0x72, 0x50, 0x2a, 0xe5, 0xe4, 0x99, 0xcf, 0xf3, 0x9b, 0x99,
  176. 0xfd, 0xd6, 0x86, 0x43, 0x4e, 0xd3, 0xd9, 0x98, 0x2d, 0x32, 0xce, 0x62, 0x27, 0xe1, 0x2c, 0x63,
  177. 0xe8, 0x69, 0x4c, 0x0b, 0xe2, 0xd4, 0xf5, 0xa2, 0xdf, 0x7d, 0x33, 0xa5, 0x59, 0x94, 0x07, 0xce,
  178. 0x98, 0xcd, 0x4f, 0xa6, 0x6c, 0xca, 0x4e, 0x44, 0x6d, 0x90, 0x4f, 0x44, 0x26, 0x12, 0x11, 0xc9,
  179. 0x1e, 0xf8, 0xb7, 0x06, 0x4f, 0x3e, 0x93, 0xec, 0x82, 0xf1, 0x80, 0x86, 0x21, 0x59, 0x78, 0xe4,
  180. 0x16, 0xbd, 0x03, 0x2d, 0xa7, 0xa1, 0xa9, 0xd8, 0x4a, 0x4f, 0x73, 0xf1, 0xaa, 0xb2, 0x5e, 0x4c,
  181. 0x18, 0x9f, 0x0f, 0x71, 0x4e, 0x43, 0x6c, 0x17, 0x7e, 0x4c, 0x43, 0x3f, 0x23, 0x43, 0xcc, 0xc9,
  182. 0x6d, 0x4e, 0x39, 0x09, 0xb1, 0xb7, 0x2e, 0x17, 0x14, 0xa7, 0xa6, 0x6a, 0x2b, 0xbd, 0xd6, 0x16,
  183. 0xc5, 0xe9, 0x7d, 0x14, 0xa7, 0xa8, 0x0f, 0x2a, 0x4d, 0x4c, 0x4d, 0x40, 0x47, 0xab, 0xca, 0x7a,
  184. 0x2e, 0x21, 0x9a, 0xec, 0x66, 0x54, 0x9a, 0xa0, 0x0f, 0xa0, 0xcf, 0x49, 0x16, 0xb1, 0xd0, 0x6c,
  185. 0x08, 0xec, 0xe5, 0xaa, 0xb2, 0x8e, 0x24, 0x26, 0xf5, 0xdd, 0xe8, 0x06, 0x42, 0x0c, 0xf4, 0x88,
  186. 0xf8, 0x21, 0xe1, 0xe6, 0x81, 0xad, 0xf5, 0xda, 0x83, 0xb7, 0xce, 0x0e, 0x1b, 0x9d, 0xff, 0x3c,
  187. 0x71, 0xbe, 0x08, 0xe4, 0x7c, 0x91, 0xf1, 0xb2, 0x3e, 0x50, 0x76, 0xba, 0x67, 0xa0, 0x7c, 0x89,
  188. 0xce, 0xa0, 0x11, 0xb0, 0xb0, 0x34, 0x75, 0xb1, 0xed, 0xf1, 0xaa, 0xb2, 0x6c, 0x09, 0xaf, 0x55,
  189. 0x6c, 0xef, 0x64, 0x05, 0xd1, 0x7d, 0x0f, 0xed, 0xda, 0x5c, 0x64, 0x80, 0x36, 0x23, 0xa5, 0xb8,
  190. 0x97, 0x96, 0xb7, 0x0e, 0xd1, 0x33, 0x38, 0x28, 0xfc, 0x38, 0x27, 0xd2, 0x75, 0x4f, 0x26, 0x43,
  191. 0xf5, 0x4c, 0xc1, 0x7f, 0x14, 0x38, 0xdc, 0x3e, 0x43, 0x12, 0x97, 0x28, 0x82, 0x0e, 0x4d, 0x6f,
  192. 0x26, 0xff, 0x44, 0xd1, 0xea, 0xf1, 0xe0, 0x74, 0x0f, 0x07, 0x92, 0xb8, 0x74, 0x6a, 0x69, 0xea,
  193. 0x1a, 0xcb, 0xca, 0xda, 0x6a, 0xe6, 0xb5, 0x69, 0x7a, 0x57, 0x81, 0x5e, 0x43, 0x93, 0xa6, 0x37,
  194. 0x63, 0x7f, 0x1c, 0xc9, 0xe5, 0x9a, 0x6e, 0x67, 0x59, 0x59, 0x77, 0x9a, 0xf7, 0x90, 0xa6, 0x9f,
  195. 0xd6, 0x01, 0xc2, 0xa0, 0x73, 0xe2, 0xa7, 0x6c, 0xb1, 0xf9, 0x08, 0x60, 0x59, 0x59, 0x1b, 0xc5,
  196. 0xdb, 0x3c, 0xf1, 0x00, 0x3a, 0xf5, 0xd9, 0xa8, 0x09, 0x8d, 0x6f, 0x1f, 0xaf, 0xaf, 0x8d, 0x07,
  197. 0xe8, 0x11, 0xb4, 0x2e, 0xae, 0x3c, 0xf7, 0x72, 0x34, 0x3a, 0xff, 0x6a, 0x28, 0xa8, 0x05, 0x07,
  198. 0xa3, 0xab, 0x1f, 0xee, 0x77, 0x43, 0x1d, 0xcc, 0xa0, 0x7d, 0x59, 0xdb, 0xe7, 0x17, 0x74, 0xea,
  199. 0x07, 0x42, 0xc7, 0xfb, 0xdc, 0x7a, 0xf7, 0xd5, 0x7e, 0xce, 0xb8, 0x8d, 0x9f, 0x6a, 0xd1, 0x0f,
  200. 0x74, 0xf1, 0x4b, 0x9d, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x48, 0xbc, 0x65, 0xab, 0x03,
  201. 0x00, 0x00,
  202. }
  203. // Reference imports to suppress errors if they are not otherwise used.
  204. var _ context.Context
  205. var _ grpc.ClientConn
  206. // This is a compile-time assertion to ensure that this generated file
  207. // is compatible with the grpc package it is being compiled against.
  208. const _ = grpc.SupportPackageIsVersion4
  209. // IsForbiddenClient is the client API for IsForbidden service.
  210. //
  211. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  212. type IsForbiddenClient interface {
  213. GetForbidden(ctx context.Context, in *GetForbiddenReq, opts ...grpc.CallOption) (*GetForbiddenReply, error)
  214. }
  215. type isForbiddenClient struct {
  216. cc *grpc.ClientConn
  217. }
  218. func NewIsForbiddenClient(cc *grpc.ClientConn) IsForbiddenClient {
  219. return &isForbiddenClient{cc}
  220. }
  221. func (c *isForbiddenClient) GetForbidden(ctx context.Context, in *GetForbiddenReq, opts ...grpc.CallOption) (*GetForbiddenReply, error) {
  222. out := new(GetForbiddenReply)
  223. err := c.cc.Invoke(ctx, "/live.riskcontrol.v1.IsForbidden/GetForbidden", in, out, opts...)
  224. if err != nil {
  225. return nil, err
  226. }
  227. return out, nil
  228. }
  229. // IsForbiddenServer is the server API for IsForbidden service.
  230. type IsForbiddenServer interface {
  231. GetForbidden(context.Context, *GetForbiddenReq) (*GetForbiddenReply, error)
  232. }
  233. func RegisterIsForbiddenServer(s *grpc.Server, srv IsForbiddenServer) {
  234. s.RegisterService(&_IsForbidden_serviceDesc, srv)
  235. }
  236. func _IsForbidden_GetForbidden_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  237. in := new(GetForbiddenReq)
  238. if err := dec(in); err != nil {
  239. return nil, err
  240. }
  241. if interceptor == nil {
  242. return srv.(IsForbiddenServer).GetForbidden(ctx, in)
  243. }
  244. info := &grpc.UnaryServerInfo{
  245. Server: srv,
  246. FullMethod: "/live.riskcontrol.v1.IsForbidden/GetForbidden",
  247. }
  248. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  249. return srv.(IsForbiddenServer).GetForbidden(ctx, req.(*GetForbiddenReq))
  250. }
  251. return interceptor(ctx, in, info, handler)
  252. }
  253. var _IsForbidden_serviceDesc = grpc.ServiceDesc{
  254. ServiceName: "live.riskcontrol.v1.IsForbidden",
  255. HandlerType: (*IsForbiddenServer)(nil),
  256. Methods: []grpc.MethodDesc{
  257. {
  258. MethodName: "GetForbidden",
  259. Handler: _IsForbidden_GetForbidden_Handler,
  260. },
  261. },
  262. Streams: []grpc.StreamDesc{},
  263. Metadata: "riskcontrol.proto",
  264. }