api.pb.go 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: app/service/main/passport-auth/api/grpc/v1/api.proto
  3. /*
  4. Package v1 is a generated protocol buffer package.
  5. It is generated from these files:
  6. app/service/main/passport-auth/api/grpc/v1/api.proto
  7. It has these top-level messages:
  8. GetCookieInfoReq
  9. GetCookieInfoReply
  10. GetTokenInfoReq
  11. GetTokenInfoReply
  12. */
  13. package v1
  14. import proto "github.com/gogo/protobuf/proto"
  15. import fmt "fmt"
  16. import math "math"
  17. import _ "github.com/gogo/protobuf/gogoproto"
  18. import context "golang.org/x/net/context"
  19. import grpc "google.golang.org/grpc"
  20. import io "io"
  21. // Reference imports to suppress errors if they are not otherwise used.
  22. var _ = proto.Marshal
  23. var _ = fmt.Errorf
  24. var _ = math.Inf
  25. // This is a compile-time assertion to ensure that this generated file
  26. // is compatible with the proto package it is being compiled against.
  27. // A compilation error at this line likely means your copy of the
  28. // proto package needs to be updated.
  29. const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
  30. // GetCookieInfoReq request param for rpc CookieInfo
  31. type GetCookieInfoReq struct {
  32. // all user cookie of HTTP request
  33. // example: 'SESSDATA=DEE4597D836A5A9DA29DFC1AB1EFFDEB;sid=exampleSID'
  34. Cookie string `protobuf:"bytes,1,opt,name=cookie,proto3" json:"cookie,omitempty"`
  35. }
  36. func (m *GetCookieInfoReq) Reset() { *m = GetCookieInfoReq{} }
  37. func (m *GetCookieInfoReq) String() string { return proto.CompactTextString(m) }
  38. func (*GetCookieInfoReq) ProtoMessage() {}
  39. func (*GetCookieInfoReq) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{0} }
  40. func (m *GetCookieInfoReq) GetCookie() string {
  41. if m != nil {
  42. return m.Cookie
  43. }
  44. return ""
  45. }
  46. // GetCookieInfoReply reply val for rpc CookieInfo
  47. type GetCookieInfoReply struct {
  48. // 用户是否登录
  49. IsLogin bool `protobuf:"varint,1,opt,name=is_login,json=isLogin,proto3" json:"is_login"`
  50. // user mid
  51. Mid int64 `protobuf:"varint,2,opt,name=mid,proto3" json:"mid"`
  52. // cookie csrf
  53. // when token reqest this field is empty
  54. Csrf string `protobuf:"bytes,3,opt,name=csrf,proto3" json:"csrfToken"`
  55. // expire time(unix timestamp)
  56. Expires int64 `protobuf:"varint,4,opt,name=expires,proto3" json:"expires"`
  57. }
  58. func (m *GetCookieInfoReply) Reset() { *m = GetCookieInfoReply{} }
  59. func (m *GetCookieInfoReply) String() string { return proto.CompactTextString(m) }
  60. func (*GetCookieInfoReply) ProtoMessage() {}
  61. func (*GetCookieInfoReply) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{1} }
  62. func (m *GetCookieInfoReply) GetIsLogin() bool {
  63. if m != nil {
  64. return m.IsLogin
  65. }
  66. return false
  67. }
  68. func (m *GetCookieInfoReply) GetMid() int64 {
  69. if m != nil {
  70. return m.Mid
  71. }
  72. return 0
  73. }
  74. func (m *GetCookieInfoReply) GetCsrf() string {
  75. if m != nil {
  76. return m.Csrf
  77. }
  78. return ""
  79. }
  80. func (m *GetCookieInfoReply) GetExpires() int64 {
  81. if m != nil {
  82. return m.Expires
  83. }
  84. return 0
  85. }
  86. // GetTokenInfoReq request param for rpc TokenInfo
  87. type GetTokenInfoReq struct {
  88. // user access token
  89. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  90. }
  91. func (m *GetTokenInfoReq) Reset() { *m = GetTokenInfoReq{} }
  92. func (m *GetTokenInfoReq) String() string { return proto.CompactTextString(m) }
  93. func (*GetTokenInfoReq) ProtoMessage() {}
  94. func (*GetTokenInfoReq) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{2} }
  95. func (m *GetTokenInfoReq) GetToken() string {
  96. if m != nil {
  97. return m.Token
  98. }
  99. return ""
  100. }
  101. // GetTokenInfoReply reply val for rpc TokenInfo
  102. type GetTokenInfoReply struct {
  103. // 用户是否登录
  104. IsLogin bool `protobuf:"varint,1,opt,name=is_login,json=isLogin,proto3" json:"is_login"`
  105. // user mid
  106. Mid int64 `protobuf:"varint,2,opt,name=mid,proto3" json:"mid"`
  107. // cookie csrf
  108. // when token reqest this field is empty
  109. Csrf string `protobuf:"bytes,3,opt,name=csrf,proto3" json:"csrfToken"`
  110. // expire time(unix timestamp)
  111. Expires int64 `protobuf:"varint,4,opt,name=expires,proto3" json:"expires"`
  112. }
  113. func (m *GetTokenInfoReply) Reset() { *m = GetTokenInfoReply{} }
  114. func (m *GetTokenInfoReply) String() string { return proto.CompactTextString(m) }
  115. func (*GetTokenInfoReply) ProtoMessage() {}
  116. func (*GetTokenInfoReply) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{3} }
  117. func (m *GetTokenInfoReply) GetIsLogin() bool {
  118. if m != nil {
  119. return m.IsLogin
  120. }
  121. return false
  122. }
  123. func (m *GetTokenInfoReply) GetMid() int64 {
  124. if m != nil {
  125. return m.Mid
  126. }
  127. return 0
  128. }
  129. func (m *GetTokenInfoReply) GetCsrf() string {
  130. if m != nil {
  131. return m.Csrf
  132. }
  133. return ""
  134. }
  135. func (m *GetTokenInfoReply) GetExpires() int64 {
  136. if m != nil {
  137. return m.Expires
  138. }
  139. return 0
  140. }
  141. func init() {
  142. proto.RegisterType((*GetCookieInfoReq)(nil), "passport.service.auth.v1.GetCookieInfoReq")
  143. proto.RegisterType((*GetCookieInfoReply)(nil), "passport.service.auth.v1.GetCookieInfoReply")
  144. proto.RegisterType((*GetTokenInfoReq)(nil), "passport.service.auth.v1.GetTokenInfoReq")
  145. proto.RegisterType((*GetTokenInfoReply)(nil), "passport.service.auth.v1.GetTokenInfoReply")
  146. }
  147. // Reference imports to suppress errors if they are not otherwise used.
  148. var _ context.Context
  149. var _ grpc.ClientConn
  150. // This is a compile-time assertion to ensure that this generated file
  151. // is compatible with the grpc package it is being compiled against.
  152. const _ = grpc.SupportPackageIsVersion4
  153. // Client API for Auth service
  154. type AuthClient interface {
  155. // GetCookieInfo verify user info by cookie.
  156. GetCookieInfo(ctx context.Context, in *GetCookieInfoReq, opts ...grpc.CallOption) (*GetCookieInfoReply, error)
  157. // GetTokenInfo verify user info by token.
  158. GetTokenInfo(ctx context.Context, in *GetTokenInfoReq, opts ...grpc.CallOption) (*GetTokenInfoReply, error)
  159. }
  160. type authClient struct {
  161. cc *grpc.ClientConn
  162. }
  163. func NewAuthClient(cc *grpc.ClientConn) AuthClient {
  164. return &authClient{cc}
  165. }
  166. func (c *authClient) GetCookieInfo(ctx context.Context, in *GetCookieInfoReq, opts ...grpc.CallOption) (*GetCookieInfoReply, error) {
  167. out := new(GetCookieInfoReply)
  168. err := grpc.Invoke(ctx, "/passport.service.auth.v1.Auth/GetCookieInfo", in, out, c.cc, opts...)
  169. if err != nil {
  170. return nil, err
  171. }
  172. return out, nil
  173. }
  174. func (c *authClient) GetTokenInfo(ctx context.Context, in *GetTokenInfoReq, opts ...grpc.CallOption) (*GetTokenInfoReply, error) {
  175. out := new(GetTokenInfoReply)
  176. err := grpc.Invoke(ctx, "/passport.service.auth.v1.Auth/GetTokenInfo", in, out, c.cc, opts...)
  177. if err != nil {
  178. return nil, err
  179. }
  180. return out, nil
  181. }
  182. // Server API for Auth service
  183. type AuthServer interface {
  184. // GetCookieInfo verify user info by cookie.
  185. GetCookieInfo(context.Context, *GetCookieInfoReq) (*GetCookieInfoReply, error)
  186. // GetTokenInfo verify user info by token.
  187. GetTokenInfo(context.Context, *GetTokenInfoReq) (*GetTokenInfoReply, error)
  188. }
  189. func RegisterAuthServer(s *grpc.Server, srv AuthServer) {
  190. s.RegisterService(&_Auth_serviceDesc, srv)
  191. }
  192. func _Auth_GetCookieInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  193. in := new(GetCookieInfoReq)
  194. if err := dec(in); err != nil {
  195. return nil, err
  196. }
  197. if interceptor == nil {
  198. return srv.(AuthServer).GetCookieInfo(ctx, in)
  199. }
  200. info := &grpc.UnaryServerInfo{
  201. Server: srv,
  202. FullMethod: "/passport.service.auth.v1.Auth/GetCookieInfo",
  203. }
  204. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  205. return srv.(AuthServer).GetCookieInfo(ctx, req.(*GetCookieInfoReq))
  206. }
  207. return interceptor(ctx, in, info, handler)
  208. }
  209. func _Auth_GetTokenInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  210. in := new(GetTokenInfoReq)
  211. if err := dec(in); err != nil {
  212. return nil, err
  213. }
  214. if interceptor == nil {
  215. return srv.(AuthServer).GetTokenInfo(ctx, in)
  216. }
  217. info := &grpc.UnaryServerInfo{
  218. Server: srv,
  219. FullMethod: "/passport.service.auth.v1.Auth/GetTokenInfo",
  220. }
  221. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  222. return srv.(AuthServer).GetTokenInfo(ctx, req.(*GetTokenInfoReq))
  223. }
  224. return interceptor(ctx, in, info, handler)
  225. }
  226. var _Auth_serviceDesc = grpc.ServiceDesc{
  227. ServiceName: "passport.service.auth.v1.Auth",
  228. HandlerType: (*AuthServer)(nil),
  229. Methods: []grpc.MethodDesc{
  230. {
  231. MethodName: "GetCookieInfo",
  232. Handler: _Auth_GetCookieInfo_Handler,
  233. },
  234. {
  235. MethodName: "GetTokenInfo",
  236. Handler: _Auth_GetTokenInfo_Handler,
  237. },
  238. },
  239. Streams: []grpc.StreamDesc{},
  240. Metadata: "app/service/main/passport-auth/api/grpc/v1/api.proto",
  241. }
  242. func (m *GetCookieInfoReq) Marshal() (dAtA []byte, err error) {
  243. size := m.Size()
  244. dAtA = make([]byte, size)
  245. n, err := m.MarshalTo(dAtA)
  246. if err != nil {
  247. return nil, err
  248. }
  249. return dAtA[:n], nil
  250. }
  251. func (m *GetCookieInfoReq) MarshalTo(dAtA []byte) (int, error) {
  252. var i int
  253. _ = i
  254. var l int
  255. _ = l
  256. if len(m.Cookie) > 0 {
  257. dAtA[i] = 0xa
  258. i++
  259. i = encodeVarintApi(dAtA, i, uint64(len(m.Cookie)))
  260. i += copy(dAtA[i:], m.Cookie)
  261. }
  262. return i, nil
  263. }
  264. func (m *GetCookieInfoReply) Marshal() (dAtA []byte, err error) {
  265. size := m.Size()
  266. dAtA = make([]byte, size)
  267. n, err := m.MarshalTo(dAtA)
  268. if err != nil {
  269. return nil, err
  270. }
  271. return dAtA[:n], nil
  272. }
  273. func (m *GetCookieInfoReply) MarshalTo(dAtA []byte) (int, error) {
  274. var i int
  275. _ = i
  276. var l int
  277. _ = l
  278. if m.IsLogin {
  279. dAtA[i] = 0x8
  280. i++
  281. if m.IsLogin {
  282. dAtA[i] = 1
  283. } else {
  284. dAtA[i] = 0
  285. }
  286. i++
  287. }
  288. if m.Mid != 0 {
  289. dAtA[i] = 0x10
  290. i++
  291. i = encodeVarintApi(dAtA, i, uint64(m.Mid))
  292. }
  293. if len(m.Csrf) > 0 {
  294. dAtA[i] = 0x1a
  295. i++
  296. i = encodeVarintApi(dAtA, i, uint64(len(m.Csrf)))
  297. i += copy(dAtA[i:], m.Csrf)
  298. }
  299. if m.Expires != 0 {
  300. dAtA[i] = 0x20
  301. i++
  302. i = encodeVarintApi(dAtA, i, uint64(m.Expires))
  303. }
  304. return i, nil
  305. }
  306. func (m *GetTokenInfoReq) Marshal() (dAtA []byte, err error) {
  307. size := m.Size()
  308. dAtA = make([]byte, size)
  309. n, err := m.MarshalTo(dAtA)
  310. if err != nil {
  311. return nil, err
  312. }
  313. return dAtA[:n], nil
  314. }
  315. func (m *GetTokenInfoReq) MarshalTo(dAtA []byte) (int, error) {
  316. var i int
  317. _ = i
  318. var l int
  319. _ = l
  320. if len(m.Token) > 0 {
  321. dAtA[i] = 0xa
  322. i++
  323. i = encodeVarintApi(dAtA, i, uint64(len(m.Token)))
  324. i += copy(dAtA[i:], m.Token)
  325. }
  326. return i, nil
  327. }
  328. func (m *GetTokenInfoReply) Marshal() (dAtA []byte, err error) {
  329. size := m.Size()
  330. dAtA = make([]byte, size)
  331. n, err := m.MarshalTo(dAtA)
  332. if err != nil {
  333. return nil, err
  334. }
  335. return dAtA[:n], nil
  336. }
  337. func (m *GetTokenInfoReply) MarshalTo(dAtA []byte) (int, error) {
  338. var i int
  339. _ = i
  340. var l int
  341. _ = l
  342. if m.IsLogin {
  343. dAtA[i] = 0x8
  344. i++
  345. if m.IsLogin {
  346. dAtA[i] = 1
  347. } else {
  348. dAtA[i] = 0
  349. }
  350. i++
  351. }
  352. if m.Mid != 0 {
  353. dAtA[i] = 0x10
  354. i++
  355. i = encodeVarintApi(dAtA, i, uint64(m.Mid))
  356. }
  357. if len(m.Csrf) > 0 {
  358. dAtA[i] = 0x1a
  359. i++
  360. i = encodeVarintApi(dAtA, i, uint64(len(m.Csrf)))
  361. i += copy(dAtA[i:], m.Csrf)
  362. }
  363. if m.Expires != 0 {
  364. dAtA[i] = 0x20
  365. i++
  366. i = encodeVarintApi(dAtA, i, uint64(m.Expires))
  367. }
  368. return i, nil
  369. }
  370. func encodeVarintApi(dAtA []byte, offset int, v uint64) int {
  371. for v >= 1<<7 {
  372. dAtA[offset] = uint8(v&0x7f | 0x80)
  373. v >>= 7
  374. offset++
  375. }
  376. dAtA[offset] = uint8(v)
  377. return offset + 1
  378. }
  379. func (m *GetCookieInfoReq) Size() (n int) {
  380. var l int
  381. _ = l
  382. l = len(m.Cookie)
  383. if l > 0 {
  384. n += 1 + l + sovApi(uint64(l))
  385. }
  386. return n
  387. }
  388. func (m *GetCookieInfoReply) Size() (n int) {
  389. var l int
  390. _ = l
  391. if m.IsLogin {
  392. n += 2
  393. }
  394. if m.Mid != 0 {
  395. n += 1 + sovApi(uint64(m.Mid))
  396. }
  397. l = len(m.Csrf)
  398. if l > 0 {
  399. n += 1 + l + sovApi(uint64(l))
  400. }
  401. if m.Expires != 0 {
  402. n += 1 + sovApi(uint64(m.Expires))
  403. }
  404. return n
  405. }
  406. func (m *GetTokenInfoReq) Size() (n int) {
  407. var l int
  408. _ = l
  409. l = len(m.Token)
  410. if l > 0 {
  411. n += 1 + l + sovApi(uint64(l))
  412. }
  413. return n
  414. }
  415. func (m *GetTokenInfoReply) Size() (n int) {
  416. var l int
  417. _ = l
  418. if m.IsLogin {
  419. n += 2
  420. }
  421. if m.Mid != 0 {
  422. n += 1 + sovApi(uint64(m.Mid))
  423. }
  424. l = len(m.Csrf)
  425. if l > 0 {
  426. n += 1 + l + sovApi(uint64(l))
  427. }
  428. if m.Expires != 0 {
  429. n += 1 + sovApi(uint64(m.Expires))
  430. }
  431. return n
  432. }
  433. func sovApi(x uint64) (n int) {
  434. for {
  435. n++
  436. x >>= 7
  437. if x == 0 {
  438. break
  439. }
  440. }
  441. return n
  442. }
  443. func sozApi(x uint64) (n int) {
  444. return sovApi(uint64((x << 1) ^ uint64((int64(x) >> 63))))
  445. }
  446. func (m *GetCookieInfoReq) Unmarshal(dAtA []byte) error {
  447. l := len(dAtA)
  448. iNdEx := 0
  449. for iNdEx < l {
  450. preIndex := iNdEx
  451. var wire uint64
  452. for shift := uint(0); ; shift += 7 {
  453. if shift >= 64 {
  454. return ErrIntOverflowApi
  455. }
  456. if iNdEx >= l {
  457. return io.ErrUnexpectedEOF
  458. }
  459. b := dAtA[iNdEx]
  460. iNdEx++
  461. wire |= (uint64(b) & 0x7F) << shift
  462. if b < 0x80 {
  463. break
  464. }
  465. }
  466. fieldNum := int32(wire >> 3)
  467. wireType := int(wire & 0x7)
  468. if wireType == 4 {
  469. return fmt.Errorf("proto: GetCookieInfoReq: wiretype end group for non-group")
  470. }
  471. if fieldNum <= 0 {
  472. return fmt.Errorf("proto: GetCookieInfoReq: illegal tag %d (wire type %d)", fieldNum, wire)
  473. }
  474. switch fieldNum {
  475. case 1:
  476. if wireType != 2 {
  477. return fmt.Errorf("proto: wrong wireType = %d for field Cookie", wireType)
  478. }
  479. var stringLen uint64
  480. for shift := uint(0); ; shift += 7 {
  481. if shift >= 64 {
  482. return ErrIntOverflowApi
  483. }
  484. if iNdEx >= l {
  485. return io.ErrUnexpectedEOF
  486. }
  487. b := dAtA[iNdEx]
  488. iNdEx++
  489. stringLen |= (uint64(b) & 0x7F) << shift
  490. if b < 0x80 {
  491. break
  492. }
  493. }
  494. intStringLen := int(stringLen)
  495. if intStringLen < 0 {
  496. return ErrInvalidLengthApi
  497. }
  498. postIndex := iNdEx + intStringLen
  499. if postIndex > l {
  500. return io.ErrUnexpectedEOF
  501. }
  502. m.Cookie = string(dAtA[iNdEx:postIndex])
  503. iNdEx = postIndex
  504. default:
  505. iNdEx = preIndex
  506. skippy, err := skipApi(dAtA[iNdEx:])
  507. if err != nil {
  508. return err
  509. }
  510. if skippy < 0 {
  511. return ErrInvalidLengthApi
  512. }
  513. if (iNdEx + skippy) > l {
  514. return io.ErrUnexpectedEOF
  515. }
  516. iNdEx += skippy
  517. }
  518. }
  519. if iNdEx > l {
  520. return io.ErrUnexpectedEOF
  521. }
  522. return nil
  523. }
  524. func (m *GetCookieInfoReply) Unmarshal(dAtA []byte) error {
  525. l := len(dAtA)
  526. iNdEx := 0
  527. for iNdEx < l {
  528. preIndex := iNdEx
  529. var wire uint64
  530. for shift := uint(0); ; shift += 7 {
  531. if shift >= 64 {
  532. return ErrIntOverflowApi
  533. }
  534. if iNdEx >= l {
  535. return io.ErrUnexpectedEOF
  536. }
  537. b := dAtA[iNdEx]
  538. iNdEx++
  539. wire |= (uint64(b) & 0x7F) << shift
  540. if b < 0x80 {
  541. break
  542. }
  543. }
  544. fieldNum := int32(wire >> 3)
  545. wireType := int(wire & 0x7)
  546. if wireType == 4 {
  547. return fmt.Errorf("proto: GetCookieInfoReply: wiretype end group for non-group")
  548. }
  549. if fieldNum <= 0 {
  550. return fmt.Errorf("proto: GetCookieInfoReply: illegal tag %d (wire type %d)", fieldNum, wire)
  551. }
  552. switch fieldNum {
  553. case 1:
  554. if wireType != 0 {
  555. return fmt.Errorf("proto: wrong wireType = %d for field IsLogin", wireType)
  556. }
  557. var v int
  558. for shift := uint(0); ; shift += 7 {
  559. if shift >= 64 {
  560. return ErrIntOverflowApi
  561. }
  562. if iNdEx >= l {
  563. return io.ErrUnexpectedEOF
  564. }
  565. b := dAtA[iNdEx]
  566. iNdEx++
  567. v |= (int(b) & 0x7F) << shift
  568. if b < 0x80 {
  569. break
  570. }
  571. }
  572. m.IsLogin = bool(v != 0)
  573. case 2:
  574. if wireType != 0 {
  575. return fmt.Errorf("proto: wrong wireType = %d for field Mid", wireType)
  576. }
  577. m.Mid = 0
  578. for shift := uint(0); ; shift += 7 {
  579. if shift >= 64 {
  580. return ErrIntOverflowApi
  581. }
  582. if iNdEx >= l {
  583. return io.ErrUnexpectedEOF
  584. }
  585. b := dAtA[iNdEx]
  586. iNdEx++
  587. m.Mid |= (int64(b) & 0x7F) << shift
  588. if b < 0x80 {
  589. break
  590. }
  591. }
  592. case 3:
  593. if wireType != 2 {
  594. return fmt.Errorf("proto: wrong wireType = %d for field Csrf", wireType)
  595. }
  596. var stringLen uint64
  597. for shift := uint(0); ; shift += 7 {
  598. if shift >= 64 {
  599. return ErrIntOverflowApi
  600. }
  601. if iNdEx >= l {
  602. return io.ErrUnexpectedEOF
  603. }
  604. b := dAtA[iNdEx]
  605. iNdEx++
  606. stringLen |= (uint64(b) & 0x7F) << shift
  607. if b < 0x80 {
  608. break
  609. }
  610. }
  611. intStringLen := int(stringLen)
  612. if intStringLen < 0 {
  613. return ErrInvalidLengthApi
  614. }
  615. postIndex := iNdEx + intStringLen
  616. if postIndex > l {
  617. return io.ErrUnexpectedEOF
  618. }
  619. m.Csrf = string(dAtA[iNdEx:postIndex])
  620. iNdEx = postIndex
  621. case 4:
  622. if wireType != 0 {
  623. return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType)
  624. }
  625. m.Expires = 0
  626. for shift := uint(0); ; shift += 7 {
  627. if shift >= 64 {
  628. return ErrIntOverflowApi
  629. }
  630. if iNdEx >= l {
  631. return io.ErrUnexpectedEOF
  632. }
  633. b := dAtA[iNdEx]
  634. iNdEx++
  635. m.Expires |= (int64(b) & 0x7F) << shift
  636. if b < 0x80 {
  637. break
  638. }
  639. }
  640. default:
  641. iNdEx = preIndex
  642. skippy, err := skipApi(dAtA[iNdEx:])
  643. if err != nil {
  644. return err
  645. }
  646. if skippy < 0 {
  647. return ErrInvalidLengthApi
  648. }
  649. if (iNdEx + skippy) > l {
  650. return io.ErrUnexpectedEOF
  651. }
  652. iNdEx += skippy
  653. }
  654. }
  655. if iNdEx > l {
  656. return io.ErrUnexpectedEOF
  657. }
  658. return nil
  659. }
  660. func (m *GetTokenInfoReq) Unmarshal(dAtA []byte) error {
  661. l := len(dAtA)
  662. iNdEx := 0
  663. for iNdEx < l {
  664. preIndex := iNdEx
  665. var wire uint64
  666. for shift := uint(0); ; shift += 7 {
  667. if shift >= 64 {
  668. return ErrIntOverflowApi
  669. }
  670. if iNdEx >= l {
  671. return io.ErrUnexpectedEOF
  672. }
  673. b := dAtA[iNdEx]
  674. iNdEx++
  675. wire |= (uint64(b) & 0x7F) << shift
  676. if b < 0x80 {
  677. break
  678. }
  679. }
  680. fieldNum := int32(wire >> 3)
  681. wireType := int(wire & 0x7)
  682. if wireType == 4 {
  683. return fmt.Errorf("proto: GetTokenInfoReq: wiretype end group for non-group")
  684. }
  685. if fieldNum <= 0 {
  686. return fmt.Errorf("proto: GetTokenInfoReq: illegal tag %d (wire type %d)", fieldNum, wire)
  687. }
  688. switch fieldNum {
  689. case 1:
  690. if wireType != 2 {
  691. return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType)
  692. }
  693. var stringLen uint64
  694. for shift := uint(0); ; shift += 7 {
  695. if shift >= 64 {
  696. return ErrIntOverflowApi
  697. }
  698. if iNdEx >= l {
  699. return io.ErrUnexpectedEOF
  700. }
  701. b := dAtA[iNdEx]
  702. iNdEx++
  703. stringLen |= (uint64(b) & 0x7F) << shift
  704. if b < 0x80 {
  705. break
  706. }
  707. }
  708. intStringLen := int(stringLen)
  709. if intStringLen < 0 {
  710. return ErrInvalidLengthApi
  711. }
  712. postIndex := iNdEx + intStringLen
  713. if postIndex > l {
  714. return io.ErrUnexpectedEOF
  715. }
  716. m.Token = string(dAtA[iNdEx:postIndex])
  717. iNdEx = postIndex
  718. default:
  719. iNdEx = preIndex
  720. skippy, err := skipApi(dAtA[iNdEx:])
  721. if err != nil {
  722. return err
  723. }
  724. if skippy < 0 {
  725. return ErrInvalidLengthApi
  726. }
  727. if (iNdEx + skippy) > l {
  728. return io.ErrUnexpectedEOF
  729. }
  730. iNdEx += skippy
  731. }
  732. }
  733. if iNdEx > l {
  734. return io.ErrUnexpectedEOF
  735. }
  736. return nil
  737. }
  738. func (m *GetTokenInfoReply) Unmarshal(dAtA []byte) error {
  739. l := len(dAtA)
  740. iNdEx := 0
  741. for iNdEx < l {
  742. preIndex := iNdEx
  743. var wire uint64
  744. for shift := uint(0); ; shift += 7 {
  745. if shift >= 64 {
  746. return ErrIntOverflowApi
  747. }
  748. if iNdEx >= l {
  749. return io.ErrUnexpectedEOF
  750. }
  751. b := dAtA[iNdEx]
  752. iNdEx++
  753. wire |= (uint64(b) & 0x7F) << shift
  754. if b < 0x80 {
  755. break
  756. }
  757. }
  758. fieldNum := int32(wire >> 3)
  759. wireType := int(wire & 0x7)
  760. if wireType == 4 {
  761. return fmt.Errorf("proto: GetTokenInfoReply: wiretype end group for non-group")
  762. }
  763. if fieldNum <= 0 {
  764. return fmt.Errorf("proto: GetTokenInfoReply: illegal tag %d (wire type %d)", fieldNum, wire)
  765. }
  766. switch fieldNum {
  767. case 1:
  768. if wireType != 0 {
  769. return fmt.Errorf("proto: wrong wireType = %d for field IsLogin", wireType)
  770. }
  771. var v int
  772. for shift := uint(0); ; shift += 7 {
  773. if shift >= 64 {
  774. return ErrIntOverflowApi
  775. }
  776. if iNdEx >= l {
  777. return io.ErrUnexpectedEOF
  778. }
  779. b := dAtA[iNdEx]
  780. iNdEx++
  781. v |= (int(b) & 0x7F) << shift
  782. if b < 0x80 {
  783. break
  784. }
  785. }
  786. m.IsLogin = bool(v != 0)
  787. case 2:
  788. if wireType != 0 {
  789. return fmt.Errorf("proto: wrong wireType = %d for field Mid", wireType)
  790. }
  791. m.Mid = 0
  792. for shift := uint(0); ; shift += 7 {
  793. if shift >= 64 {
  794. return ErrIntOverflowApi
  795. }
  796. if iNdEx >= l {
  797. return io.ErrUnexpectedEOF
  798. }
  799. b := dAtA[iNdEx]
  800. iNdEx++
  801. m.Mid |= (int64(b) & 0x7F) << shift
  802. if b < 0x80 {
  803. break
  804. }
  805. }
  806. case 3:
  807. if wireType != 2 {
  808. return fmt.Errorf("proto: wrong wireType = %d for field Csrf", wireType)
  809. }
  810. var stringLen uint64
  811. for shift := uint(0); ; shift += 7 {
  812. if shift >= 64 {
  813. return ErrIntOverflowApi
  814. }
  815. if iNdEx >= l {
  816. return io.ErrUnexpectedEOF
  817. }
  818. b := dAtA[iNdEx]
  819. iNdEx++
  820. stringLen |= (uint64(b) & 0x7F) << shift
  821. if b < 0x80 {
  822. break
  823. }
  824. }
  825. intStringLen := int(stringLen)
  826. if intStringLen < 0 {
  827. return ErrInvalidLengthApi
  828. }
  829. postIndex := iNdEx + intStringLen
  830. if postIndex > l {
  831. return io.ErrUnexpectedEOF
  832. }
  833. m.Csrf = string(dAtA[iNdEx:postIndex])
  834. iNdEx = postIndex
  835. case 4:
  836. if wireType != 0 {
  837. return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType)
  838. }
  839. m.Expires = 0
  840. for shift := uint(0); ; shift += 7 {
  841. if shift >= 64 {
  842. return ErrIntOverflowApi
  843. }
  844. if iNdEx >= l {
  845. return io.ErrUnexpectedEOF
  846. }
  847. b := dAtA[iNdEx]
  848. iNdEx++
  849. m.Expires |= (int64(b) & 0x7F) << shift
  850. if b < 0x80 {
  851. break
  852. }
  853. }
  854. default:
  855. iNdEx = preIndex
  856. skippy, err := skipApi(dAtA[iNdEx:])
  857. if err != nil {
  858. return err
  859. }
  860. if skippy < 0 {
  861. return ErrInvalidLengthApi
  862. }
  863. if (iNdEx + skippy) > l {
  864. return io.ErrUnexpectedEOF
  865. }
  866. iNdEx += skippy
  867. }
  868. }
  869. if iNdEx > l {
  870. return io.ErrUnexpectedEOF
  871. }
  872. return nil
  873. }
  874. func skipApi(dAtA []byte) (n int, err error) {
  875. l := len(dAtA)
  876. iNdEx := 0
  877. for iNdEx < l {
  878. var wire uint64
  879. for shift := uint(0); ; shift += 7 {
  880. if shift >= 64 {
  881. return 0, ErrIntOverflowApi
  882. }
  883. if iNdEx >= l {
  884. return 0, io.ErrUnexpectedEOF
  885. }
  886. b := dAtA[iNdEx]
  887. iNdEx++
  888. wire |= (uint64(b) & 0x7F) << shift
  889. if b < 0x80 {
  890. break
  891. }
  892. }
  893. wireType := int(wire & 0x7)
  894. switch wireType {
  895. case 0:
  896. for shift := uint(0); ; shift += 7 {
  897. if shift >= 64 {
  898. return 0, ErrIntOverflowApi
  899. }
  900. if iNdEx >= l {
  901. return 0, io.ErrUnexpectedEOF
  902. }
  903. iNdEx++
  904. if dAtA[iNdEx-1] < 0x80 {
  905. break
  906. }
  907. }
  908. return iNdEx, nil
  909. case 1:
  910. iNdEx += 8
  911. return iNdEx, nil
  912. case 2:
  913. var length int
  914. for shift := uint(0); ; shift += 7 {
  915. if shift >= 64 {
  916. return 0, ErrIntOverflowApi
  917. }
  918. if iNdEx >= l {
  919. return 0, io.ErrUnexpectedEOF
  920. }
  921. b := dAtA[iNdEx]
  922. iNdEx++
  923. length |= (int(b) & 0x7F) << shift
  924. if b < 0x80 {
  925. break
  926. }
  927. }
  928. iNdEx += length
  929. if length < 0 {
  930. return 0, ErrInvalidLengthApi
  931. }
  932. return iNdEx, nil
  933. case 3:
  934. for {
  935. var innerWire uint64
  936. var start int = iNdEx
  937. for shift := uint(0); ; shift += 7 {
  938. if shift >= 64 {
  939. return 0, ErrIntOverflowApi
  940. }
  941. if iNdEx >= l {
  942. return 0, io.ErrUnexpectedEOF
  943. }
  944. b := dAtA[iNdEx]
  945. iNdEx++
  946. innerWire |= (uint64(b) & 0x7F) << shift
  947. if b < 0x80 {
  948. break
  949. }
  950. }
  951. innerWireType := int(innerWire & 0x7)
  952. if innerWireType == 4 {
  953. break
  954. }
  955. next, err := skipApi(dAtA[start:])
  956. if err != nil {
  957. return 0, err
  958. }
  959. iNdEx = start + next
  960. }
  961. return iNdEx, nil
  962. case 4:
  963. return iNdEx, nil
  964. case 5:
  965. iNdEx += 4
  966. return iNdEx, nil
  967. default:
  968. return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
  969. }
  970. }
  971. panic("unreachable")
  972. }
  973. var (
  974. ErrInvalidLengthApi = fmt.Errorf("proto: negative length found during unmarshaling")
  975. ErrIntOverflowApi = fmt.Errorf("proto: integer overflow")
  976. )
  977. func init() {
  978. proto.RegisterFile("app/service/main/passport-auth/api/grpc/v1/api.proto", fileDescriptorApi)
  979. }
  980. var fileDescriptorApi = []byte{
  981. // 372 bytes of a gzipped FileDescriptorProto
  982. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x52, 0xcd, 0x4e, 0xea, 0x40,
  983. 0x18, 0xcd, 0x00, 0x97, 0x9f, 0xb9, 0x90, 0xcb, 0x9d, 0xdc, 0xdc, 0xf4, 0xb2, 0xa0, 0xdc, 0x26,
  984. 0x06, 0x44, 0xe9, 0x04, 0xf5, 0x05, 0xac, 0x0b, 0x62, 0xe2, 0xaa, 0x71, 0xe5, 0xc6, 0x94, 0x3a,
  985. 0x2d, 0x13, 0xa0, 0x33, 0xb6, 0xd3, 0x46, 0x1e, 0x47, 0x9f, 0xc6, 0xa5, 0x5b, 0x37, 0x8d, 0x61,
  986. 0xd9, 0xa7, 0x30, 0x33, 0x50, 0x03, 0x24, 0x1a, 0x96, 0x6e, 0x26, 0xe7, 0x7c, 0x73, 0xce, 0x37,
  987. 0xf9, 0xce, 0x7c, 0xf0, 0xcc, 0xe1, 0x1c, 0x47, 0x24, 0x4c, 0xa8, 0x4b, 0xf0, 0xdc, 0xa1, 0x01,
  988. 0xe6, 0x4e, 0x14, 0x71, 0x16, 0x8a, 0x81, 0x13, 0x8b, 0x09, 0x76, 0x38, 0xc5, 0x7e, 0xc8, 0x5d,
  989. 0x9c, 0x0c, 0x25, 0x36, 0x79, 0xc8, 0x04, 0x43, 0x5a, 0x2e, 0x32, 0xd7, 0x56, 0x53, 0x8a, 0xcd,
  990. 0x64, 0xd8, 0x1a, 0xf8, 0x54, 0x4c, 0xe2, 0xb1, 0xe9, 0xb2, 0x39, 0xf6, 0x99, 0xcf, 0xb0, 0x32,
  991. 0x8c, 0x63, 0x4f, 0x31, 0x45, 0x14, 0x5a, 0x35, 0x32, 0xfa, 0xb0, 0x39, 0x22, 0xe2, 0x82, 0xb1,
  992. 0x29, 0x25, 0x97, 0x81, 0xc7, 0x6c, 0x72, 0x8f, 0xfe, 0xc2, 0xb2, 0xab, 0x0a, 0x1a, 0xe8, 0x80,
  993. 0x5e, 0xcd, 0x5e, 0x33, 0xe3, 0x09, 0x40, 0xb4, 0x23, 0xe6, 0xb3, 0x05, 0xea, 0xc2, 0x2a, 0x8d,
  994. 0x6e, 0x67, 0xcc, 0xa7, 0x81, 0x32, 0x54, 0xad, 0x7a, 0x96, 0xea, 0x1f, 0x35, 0xbb, 0x42, 0xa3,
  995. 0x2b, 0x09, 0xd0, 0x3f, 0x58, 0x9c, 0xd3, 0x3b, 0xad, 0xd0, 0x01, 0xbd, 0xa2, 0x55, 0xc9, 0x52,
  996. 0x5d, 0x52, 0x5b, 0x1e, 0xe8, 0x3f, 0x2c, 0xb9, 0x51, 0xe8, 0x69, 0x45, 0xf9, 0xa0, 0xd5, 0xc8,
  997. 0x52, 0xbd, 0x26, 0xf9, 0x35, 0x9b, 0x92, 0xc0, 0x56, 0x57, 0xe8, 0x00, 0x56, 0xc8, 0x03, 0xa7,
  998. 0x21, 0x89, 0xb4, 0x92, 0xea, 0xf0, 0x33, 0x4b, 0xf5, 0xbc, 0x64, 0xe7, 0xc0, 0xe8, 0xc2, 0x5f,
  999. 0x23, 0x22, 0x94, 0x31, 0x9f, 0xe7, 0x0f, 0xfc, 0x21, 0x24, 0x5f, 0x8f, 0xb3, 0x22, 0xc6, 0x23,
  1000. 0x80, 0xbf, 0xb7, 0x95, 0xdf, 0x6e, 0x98, 0x93, 0x57, 0x00, 0x4b, 0xe7, 0xb1, 0x98, 0x20, 0x0a,
  1001. 0x1b, 0x5b, 0xc9, 0xa3, 0xbe, 0xf9, 0xd9, 0x06, 0x98, 0xbb, 0xff, 0xd9, 0x3a, 0xde, 0x5b, 0x2b,
  1002. 0x13, 0xf0, 0x60, 0x7d, 0x33, 0x16, 0x74, 0xf8, 0xa5, 0x7b, 0x33, 0xe8, 0xd6, 0xd1, 0xbe, 0x52,
  1003. 0x3e, 0x5b, 0x58, 0xcd, 0xe7, 0x65, 0x1b, 0xbc, 0x2c, 0xdb, 0xe0, 0x6d, 0xd9, 0x06, 0x37, 0x85,
  1004. 0x64, 0x38, 0x2e, 0xab, 0x95, 0x3c, 0x7d, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x2c, 0xe5, 0xd7, 0xb9,
  1005. 0x13, 0x03, 0x00, 0x00,
  1006. }