auth.pb.go 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: auth.proto
  3. /*
  4. Package model is a generated protocol buffer package.
  5. It is generated from these files:
  6. auth.proto
  7. It has these top-level messages:
  8. AuthReply
  9. Cookie
  10. Token
  11. Refresh
  12. */
  13. package model
  14. import proto "github.com/golang/protobuf/proto"
  15. import fmt "fmt"
  16. import math "math"
  17. import _ "github.com/gogo/protobuf/gogoproto"
  18. import io "io"
  19. // Reference imports to suppress errors if they are not otherwise used.
  20. var _ = proto.Marshal
  21. var _ = fmt.Errorf
  22. var _ = math.Inf
  23. // This is a compile-time assertion to ensure that this generated file
  24. // is compatible with the proto package it is being compiled against.
  25. // A compilation error at this line likely means your copy of the
  26. // proto package needs to be updated.
  27. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  28. // AuthReply auth reply
  29. type AuthReply struct {
  30. // if cookie or token in life time, login is true
  31. // else login is false and mid csrf expires is empty
  32. Login bool `protobuf:"varint,1,opt,name=Login,proto3" json:"login"`
  33. // user identify id
  34. Mid int64 `protobuf:"varint,2,opt,name=Mid,proto3" json:"mid"`
  35. // use cookie request this field will return
  36. // use token request ignore this field
  37. CSRF string `protobuf:"bytes,3,opt,name=CSRF,proto3" json:"csrf_token"`
  38. // expiration date
  39. // unix timestamp
  40. Expires int64 `protobuf:"varint,4,opt,name=Expires,proto3" json:"expires"`
  41. }
  42. func (m *AuthReply) Reset() { *m = AuthReply{} }
  43. func (m *AuthReply) String() string { return proto.CompactTextString(m) }
  44. func (*AuthReply) ProtoMessage() {}
  45. func (*AuthReply) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{0} }
  46. func (m *AuthReply) GetLogin() bool {
  47. if m != nil {
  48. return m.Login
  49. }
  50. return false
  51. }
  52. func (m *AuthReply) GetMid() int64 {
  53. if m != nil {
  54. return m.Mid
  55. }
  56. return 0
  57. }
  58. func (m *AuthReply) GetCSRF() string {
  59. if m != nil {
  60. return m.CSRF
  61. }
  62. return ""
  63. }
  64. func (m *AuthReply) GetExpires() int64 {
  65. if m != nil {
  66. return m.Expires
  67. }
  68. return 0
  69. }
  70. type Cookie struct {
  71. Mid int64 `protobuf:"varint,1,opt,name=Mid,proto3" json:"mid"`
  72. Session string `protobuf:"bytes,2,opt,name=Session,proto3" json:"session"`
  73. CSRF string `protobuf:"bytes,3,opt,name=CSRF,proto3" json:"csrf"`
  74. Type int64 `protobuf:"varint,4,opt,name=Type,proto3" json:"type"`
  75. Expires int64 `protobuf:"varint,5,opt,name=Expires,proto3" json:"expires"`
  76. }
  77. func (m *Cookie) Reset() { *m = Cookie{} }
  78. func (m *Cookie) String() string { return proto.CompactTextString(m) }
  79. func (*Cookie) ProtoMessage() {}
  80. func (*Cookie) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{1} }
  81. func (m *Cookie) GetMid() int64 {
  82. if m != nil {
  83. return m.Mid
  84. }
  85. return 0
  86. }
  87. func (m *Cookie) GetSession() string {
  88. if m != nil {
  89. return m.Session
  90. }
  91. return ""
  92. }
  93. func (m *Cookie) GetCSRF() string {
  94. if m != nil {
  95. return m.CSRF
  96. }
  97. return ""
  98. }
  99. func (m *Cookie) GetType() int64 {
  100. if m != nil {
  101. return m.Type
  102. }
  103. return 0
  104. }
  105. func (m *Cookie) GetExpires() int64 {
  106. if m != nil {
  107. return m.Expires
  108. }
  109. return 0
  110. }
  111. type Token struct {
  112. Mid int64 `protobuf:"varint,1,opt,name=Mid,proto3" json:"mid"`
  113. AppID int32 `protobuf:"varint,2,opt,name=AppID,proto3" json:"appid"`
  114. Token string `protobuf:"bytes,3,opt,name=Token,proto3" json:"token"`
  115. Type int64 `protobuf:"varint,4,opt,name=Type,proto3" json:"type"`
  116. Expires int64 `protobuf:"varint,5,opt,name=Expires,proto3" json:"expires"`
  117. }
  118. func (m *Token) Reset() { *m = Token{} }
  119. func (m *Token) String() string { return proto.CompactTextString(m) }
  120. func (*Token) ProtoMessage() {}
  121. func (*Token) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{2} }
  122. func (m *Token) GetMid() int64 {
  123. if m != nil {
  124. return m.Mid
  125. }
  126. return 0
  127. }
  128. func (m *Token) GetAppID() int32 {
  129. if m != nil {
  130. return m.AppID
  131. }
  132. return 0
  133. }
  134. func (m *Token) GetToken() string {
  135. if m != nil {
  136. return m.Token
  137. }
  138. return ""
  139. }
  140. func (m *Token) GetType() int64 {
  141. if m != nil {
  142. return m.Type
  143. }
  144. return 0
  145. }
  146. func (m *Token) GetExpires() int64 {
  147. if m != nil {
  148. return m.Expires
  149. }
  150. return 0
  151. }
  152. type Refresh struct {
  153. Mid int64 `protobuf:"varint,1,opt,name=Mid,proto3" json:"mid"`
  154. AppID int32 `protobuf:"varint,2,opt,name=AppID,proto3" json:"appid"`
  155. Refresh string `protobuf:"bytes,3,opt,name=Refresh,proto3" json:"refresh"`
  156. Token string `protobuf:"bytes,4,opt,name=Token,proto3" json:"token"`
  157. Expires int64 `protobuf:"varint,5,opt,name=Expires,proto3" json:"expires"`
  158. }
  159. func (m *Refresh) Reset() { *m = Refresh{} }
  160. func (m *Refresh) String() string { return proto.CompactTextString(m) }
  161. func (*Refresh) ProtoMessage() {}
  162. func (*Refresh) Descriptor() ([]byte, []int) { return fileDescriptorAuth, []int{3} }
  163. func (m *Refresh) GetMid() int64 {
  164. if m != nil {
  165. return m.Mid
  166. }
  167. return 0
  168. }
  169. func (m *Refresh) GetAppID() int32 {
  170. if m != nil {
  171. return m.AppID
  172. }
  173. return 0
  174. }
  175. func (m *Refresh) GetRefresh() string {
  176. if m != nil {
  177. return m.Refresh
  178. }
  179. return ""
  180. }
  181. func (m *Refresh) GetToken() string {
  182. if m != nil {
  183. return m.Token
  184. }
  185. return ""
  186. }
  187. func (m *Refresh) GetExpires() int64 {
  188. if m != nil {
  189. return m.Expires
  190. }
  191. return 0
  192. }
  193. func init() {
  194. proto.RegisterType((*AuthReply)(nil), "passport.service.auth.AuthReply")
  195. proto.RegisterType((*Cookie)(nil), "passport.service.auth.Cookie")
  196. proto.RegisterType((*Token)(nil), "passport.service.auth.Token")
  197. proto.RegisterType((*Refresh)(nil), "passport.service.auth.Refresh")
  198. }
  199. func (m *AuthReply) Marshal() (dAtA []byte, err error) {
  200. size := m.Size()
  201. dAtA = make([]byte, size)
  202. n, err := m.MarshalTo(dAtA)
  203. if err != nil {
  204. return nil, err
  205. }
  206. return dAtA[:n], nil
  207. }
  208. func (m *AuthReply) MarshalTo(dAtA []byte) (int, error) {
  209. var i int
  210. _ = i
  211. var l int
  212. _ = l
  213. if m.Login {
  214. dAtA[i] = 0x8
  215. i++
  216. if m.Login {
  217. dAtA[i] = 1
  218. } else {
  219. dAtA[i] = 0
  220. }
  221. i++
  222. }
  223. if m.Mid != 0 {
  224. dAtA[i] = 0x10
  225. i++
  226. i = encodeVarintAuth(dAtA, i, uint64(m.Mid))
  227. }
  228. if len(m.CSRF) > 0 {
  229. dAtA[i] = 0x1a
  230. i++
  231. i = encodeVarintAuth(dAtA, i, uint64(len(m.CSRF)))
  232. i += copy(dAtA[i:], m.CSRF)
  233. }
  234. if m.Expires != 0 {
  235. dAtA[i] = 0x20
  236. i++
  237. i = encodeVarintAuth(dAtA, i, uint64(m.Expires))
  238. }
  239. return i, nil
  240. }
  241. func (m *Cookie) Marshal() (dAtA []byte, err error) {
  242. size := m.Size()
  243. dAtA = make([]byte, size)
  244. n, err := m.MarshalTo(dAtA)
  245. if err != nil {
  246. return nil, err
  247. }
  248. return dAtA[:n], nil
  249. }
  250. func (m *Cookie) MarshalTo(dAtA []byte) (int, error) {
  251. var i int
  252. _ = i
  253. var l int
  254. _ = l
  255. if m.Mid != 0 {
  256. dAtA[i] = 0x8
  257. i++
  258. i = encodeVarintAuth(dAtA, i, uint64(m.Mid))
  259. }
  260. if len(m.Session) > 0 {
  261. dAtA[i] = 0x12
  262. i++
  263. i = encodeVarintAuth(dAtA, i, uint64(len(m.Session)))
  264. i += copy(dAtA[i:], m.Session)
  265. }
  266. if len(m.CSRF) > 0 {
  267. dAtA[i] = 0x1a
  268. i++
  269. i = encodeVarintAuth(dAtA, i, uint64(len(m.CSRF)))
  270. i += copy(dAtA[i:], m.CSRF)
  271. }
  272. if m.Type != 0 {
  273. dAtA[i] = 0x20
  274. i++
  275. i = encodeVarintAuth(dAtA, i, uint64(m.Type))
  276. }
  277. if m.Expires != 0 {
  278. dAtA[i] = 0x28
  279. i++
  280. i = encodeVarintAuth(dAtA, i, uint64(m.Expires))
  281. }
  282. return i, nil
  283. }
  284. func (m *Token) Marshal() (dAtA []byte, err error) {
  285. size := m.Size()
  286. dAtA = make([]byte, size)
  287. n, err := m.MarshalTo(dAtA)
  288. if err != nil {
  289. return nil, err
  290. }
  291. return dAtA[:n], nil
  292. }
  293. func (m *Token) MarshalTo(dAtA []byte) (int, error) {
  294. var i int
  295. _ = i
  296. var l int
  297. _ = l
  298. if m.Mid != 0 {
  299. dAtA[i] = 0x8
  300. i++
  301. i = encodeVarintAuth(dAtA, i, uint64(m.Mid))
  302. }
  303. if m.AppID != 0 {
  304. dAtA[i] = 0x10
  305. i++
  306. i = encodeVarintAuth(dAtA, i, uint64(m.AppID))
  307. }
  308. if len(m.Token) > 0 {
  309. dAtA[i] = 0x1a
  310. i++
  311. i = encodeVarintAuth(dAtA, i, uint64(len(m.Token)))
  312. i += copy(dAtA[i:], m.Token)
  313. }
  314. if m.Type != 0 {
  315. dAtA[i] = 0x20
  316. i++
  317. i = encodeVarintAuth(dAtA, i, uint64(m.Type))
  318. }
  319. if m.Expires != 0 {
  320. dAtA[i] = 0x28
  321. i++
  322. i = encodeVarintAuth(dAtA, i, uint64(m.Expires))
  323. }
  324. return i, nil
  325. }
  326. func (m *Refresh) Marshal() (dAtA []byte, err error) {
  327. size := m.Size()
  328. dAtA = make([]byte, size)
  329. n, err := m.MarshalTo(dAtA)
  330. if err != nil {
  331. return nil, err
  332. }
  333. return dAtA[:n], nil
  334. }
  335. func (m *Refresh) MarshalTo(dAtA []byte) (int, error) {
  336. var i int
  337. _ = i
  338. var l int
  339. _ = l
  340. if m.Mid != 0 {
  341. dAtA[i] = 0x8
  342. i++
  343. i = encodeVarintAuth(dAtA, i, uint64(m.Mid))
  344. }
  345. if m.AppID != 0 {
  346. dAtA[i] = 0x10
  347. i++
  348. i = encodeVarintAuth(dAtA, i, uint64(m.AppID))
  349. }
  350. if len(m.Refresh) > 0 {
  351. dAtA[i] = 0x1a
  352. i++
  353. i = encodeVarintAuth(dAtA, i, uint64(len(m.Refresh)))
  354. i += copy(dAtA[i:], m.Refresh)
  355. }
  356. if len(m.Token) > 0 {
  357. dAtA[i] = 0x22
  358. i++
  359. i = encodeVarintAuth(dAtA, i, uint64(len(m.Token)))
  360. i += copy(dAtA[i:], m.Token)
  361. }
  362. if m.Expires != 0 {
  363. dAtA[i] = 0x28
  364. i++
  365. i = encodeVarintAuth(dAtA, i, uint64(m.Expires))
  366. }
  367. return i, nil
  368. }
  369. func encodeVarintAuth(dAtA []byte, offset int, v uint64) int {
  370. for v >= 1<<7 {
  371. dAtA[offset] = uint8(v&0x7f | 0x80)
  372. v >>= 7
  373. offset++
  374. }
  375. dAtA[offset] = uint8(v)
  376. return offset + 1
  377. }
  378. func (m *AuthReply) Size() (n int) {
  379. var l int
  380. _ = l
  381. if m.Login {
  382. n += 2
  383. }
  384. if m.Mid != 0 {
  385. n += 1 + sovAuth(uint64(m.Mid))
  386. }
  387. l = len(m.CSRF)
  388. if l > 0 {
  389. n += 1 + l + sovAuth(uint64(l))
  390. }
  391. if m.Expires != 0 {
  392. n += 1 + sovAuth(uint64(m.Expires))
  393. }
  394. return n
  395. }
  396. func (m *Cookie) Size() (n int) {
  397. var l int
  398. _ = l
  399. if m.Mid != 0 {
  400. n += 1 + sovAuth(uint64(m.Mid))
  401. }
  402. l = len(m.Session)
  403. if l > 0 {
  404. n += 1 + l + sovAuth(uint64(l))
  405. }
  406. l = len(m.CSRF)
  407. if l > 0 {
  408. n += 1 + l + sovAuth(uint64(l))
  409. }
  410. if m.Type != 0 {
  411. n += 1 + sovAuth(uint64(m.Type))
  412. }
  413. if m.Expires != 0 {
  414. n += 1 + sovAuth(uint64(m.Expires))
  415. }
  416. return n
  417. }
  418. func (m *Token) Size() (n int) {
  419. var l int
  420. _ = l
  421. if m.Mid != 0 {
  422. n += 1 + sovAuth(uint64(m.Mid))
  423. }
  424. if m.AppID != 0 {
  425. n += 1 + sovAuth(uint64(m.AppID))
  426. }
  427. l = len(m.Token)
  428. if l > 0 {
  429. n += 1 + l + sovAuth(uint64(l))
  430. }
  431. if m.Type != 0 {
  432. n += 1 + sovAuth(uint64(m.Type))
  433. }
  434. if m.Expires != 0 {
  435. n += 1 + sovAuth(uint64(m.Expires))
  436. }
  437. return n
  438. }
  439. func (m *Refresh) Size() (n int) {
  440. var l int
  441. _ = l
  442. if m.Mid != 0 {
  443. n += 1 + sovAuth(uint64(m.Mid))
  444. }
  445. if m.AppID != 0 {
  446. n += 1 + sovAuth(uint64(m.AppID))
  447. }
  448. l = len(m.Refresh)
  449. if l > 0 {
  450. n += 1 + l + sovAuth(uint64(l))
  451. }
  452. l = len(m.Token)
  453. if l > 0 {
  454. n += 1 + l + sovAuth(uint64(l))
  455. }
  456. if m.Expires != 0 {
  457. n += 1 + sovAuth(uint64(m.Expires))
  458. }
  459. return n
  460. }
  461. func sovAuth(x uint64) (n int) {
  462. for {
  463. n++
  464. x >>= 7
  465. if x == 0 {
  466. break
  467. }
  468. }
  469. return n
  470. }
  471. func sozAuth(x uint64) (n int) {
  472. return sovAuth(uint64((x << 1) ^ uint64((int64(x) >> 63))))
  473. }
  474. func (m *AuthReply) Unmarshal(dAtA []byte) error {
  475. l := len(dAtA)
  476. iNdEx := 0
  477. for iNdEx < l {
  478. preIndex := iNdEx
  479. var wire uint64
  480. for shift := uint(0); ; shift += 7 {
  481. if shift >= 64 {
  482. return ErrIntOverflowAuth
  483. }
  484. if iNdEx >= l {
  485. return io.ErrUnexpectedEOF
  486. }
  487. b := dAtA[iNdEx]
  488. iNdEx++
  489. wire |= (uint64(b) & 0x7F) << shift
  490. if b < 0x80 {
  491. break
  492. }
  493. }
  494. fieldNum := int32(wire >> 3)
  495. wireType := int(wire & 0x7)
  496. if wireType == 4 {
  497. return fmt.Errorf("proto: AuthReply: wiretype end group for non-group")
  498. }
  499. if fieldNum <= 0 {
  500. return fmt.Errorf("proto: AuthReply: illegal tag %d (wire type %d)", fieldNum, wire)
  501. }
  502. switch fieldNum {
  503. case 1:
  504. if wireType != 0 {
  505. return fmt.Errorf("proto: wrong wireType = %d for field Login", wireType)
  506. }
  507. var v int
  508. for shift := uint(0); ; shift += 7 {
  509. if shift >= 64 {
  510. return ErrIntOverflowAuth
  511. }
  512. if iNdEx >= l {
  513. return io.ErrUnexpectedEOF
  514. }
  515. b := dAtA[iNdEx]
  516. iNdEx++
  517. v |= (int(b) & 0x7F) << shift
  518. if b < 0x80 {
  519. break
  520. }
  521. }
  522. m.Login = bool(v != 0)
  523. case 2:
  524. if wireType != 0 {
  525. return fmt.Errorf("proto: wrong wireType = %d for field Mid", wireType)
  526. }
  527. m.Mid = 0
  528. for shift := uint(0); ; shift += 7 {
  529. if shift >= 64 {
  530. return ErrIntOverflowAuth
  531. }
  532. if iNdEx >= l {
  533. return io.ErrUnexpectedEOF
  534. }
  535. b := dAtA[iNdEx]
  536. iNdEx++
  537. m.Mid |= (int64(b) & 0x7F) << shift
  538. if b < 0x80 {
  539. break
  540. }
  541. }
  542. case 3:
  543. if wireType != 2 {
  544. return fmt.Errorf("proto: wrong wireType = %d for field CSRF", wireType)
  545. }
  546. var stringLen uint64
  547. for shift := uint(0); ; shift += 7 {
  548. if shift >= 64 {
  549. return ErrIntOverflowAuth
  550. }
  551. if iNdEx >= l {
  552. return io.ErrUnexpectedEOF
  553. }
  554. b := dAtA[iNdEx]
  555. iNdEx++
  556. stringLen |= (uint64(b) & 0x7F) << shift
  557. if b < 0x80 {
  558. break
  559. }
  560. }
  561. intStringLen := int(stringLen)
  562. if intStringLen < 0 {
  563. return ErrInvalidLengthAuth
  564. }
  565. postIndex := iNdEx + intStringLen
  566. if postIndex > l {
  567. return io.ErrUnexpectedEOF
  568. }
  569. m.CSRF = string(dAtA[iNdEx:postIndex])
  570. iNdEx = postIndex
  571. case 4:
  572. if wireType != 0 {
  573. return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType)
  574. }
  575. m.Expires = 0
  576. for shift := uint(0); ; shift += 7 {
  577. if shift >= 64 {
  578. return ErrIntOverflowAuth
  579. }
  580. if iNdEx >= l {
  581. return io.ErrUnexpectedEOF
  582. }
  583. b := dAtA[iNdEx]
  584. iNdEx++
  585. m.Expires |= (int64(b) & 0x7F) << shift
  586. if b < 0x80 {
  587. break
  588. }
  589. }
  590. default:
  591. iNdEx = preIndex
  592. skippy, err := skipAuth(dAtA[iNdEx:])
  593. if err != nil {
  594. return err
  595. }
  596. if skippy < 0 {
  597. return ErrInvalidLengthAuth
  598. }
  599. if (iNdEx + skippy) > l {
  600. return io.ErrUnexpectedEOF
  601. }
  602. iNdEx += skippy
  603. }
  604. }
  605. if iNdEx > l {
  606. return io.ErrUnexpectedEOF
  607. }
  608. return nil
  609. }
  610. func (m *Cookie) Unmarshal(dAtA []byte) error {
  611. l := len(dAtA)
  612. iNdEx := 0
  613. for iNdEx < l {
  614. preIndex := iNdEx
  615. var wire uint64
  616. for shift := uint(0); ; shift += 7 {
  617. if shift >= 64 {
  618. return ErrIntOverflowAuth
  619. }
  620. if iNdEx >= l {
  621. return io.ErrUnexpectedEOF
  622. }
  623. b := dAtA[iNdEx]
  624. iNdEx++
  625. wire |= (uint64(b) & 0x7F) << shift
  626. if b < 0x80 {
  627. break
  628. }
  629. }
  630. fieldNum := int32(wire >> 3)
  631. wireType := int(wire & 0x7)
  632. if wireType == 4 {
  633. return fmt.Errorf("proto: Cookie: wiretype end group for non-group")
  634. }
  635. if fieldNum <= 0 {
  636. return fmt.Errorf("proto: Cookie: illegal tag %d (wire type %d)", fieldNum, wire)
  637. }
  638. switch fieldNum {
  639. case 1:
  640. if wireType != 0 {
  641. return fmt.Errorf("proto: wrong wireType = %d for field Mid", wireType)
  642. }
  643. m.Mid = 0
  644. for shift := uint(0); ; shift += 7 {
  645. if shift >= 64 {
  646. return ErrIntOverflowAuth
  647. }
  648. if iNdEx >= l {
  649. return io.ErrUnexpectedEOF
  650. }
  651. b := dAtA[iNdEx]
  652. iNdEx++
  653. m.Mid |= (int64(b) & 0x7F) << shift
  654. if b < 0x80 {
  655. break
  656. }
  657. }
  658. case 2:
  659. if wireType != 2 {
  660. return fmt.Errorf("proto: wrong wireType = %d for field Session", wireType)
  661. }
  662. var stringLen uint64
  663. for shift := uint(0); ; shift += 7 {
  664. if shift >= 64 {
  665. return ErrIntOverflowAuth
  666. }
  667. if iNdEx >= l {
  668. return io.ErrUnexpectedEOF
  669. }
  670. b := dAtA[iNdEx]
  671. iNdEx++
  672. stringLen |= (uint64(b) & 0x7F) << shift
  673. if b < 0x80 {
  674. break
  675. }
  676. }
  677. intStringLen := int(stringLen)
  678. if intStringLen < 0 {
  679. return ErrInvalidLengthAuth
  680. }
  681. postIndex := iNdEx + intStringLen
  682. if postIndex > l {
  683. return io.ErrUnexpectedEOF
  684. }
  685. m.Session = string(dAtA[iNdEx:postIndex])
  686. iNdEx = postIndex
  687. case 3:
  688. if wireType != 2 {
  689. return fmt.Errorf("proto: wrong wireType = %d for field CSRF", wireType)
  690. }
  691. var stringLen uint64
  692. for shift := uint(0); ; shift += 7 {
  693. if shift >= 64 {
  694. return ErrIntOverflowAuth
  695. }
  696. if iNdEx >= l {
  697. return io.ErrUnexpectedEOF
  698. }
  699. b := dAtA[iNdEx]
  700. iNdEx++
  701. stringLen |= (uint64(b) & 0x7F) << shift
  702. if b < 0x80 {
  703. break
  704. }
  705. }
  706. intStringLen := int(stringLen)
  707. if intStringLen < 0 {
  708. return ErrInvalidLengthAuth
  709. }
  710. postIndex := iNdEx + intStringLen
  711. if postIndex > l {
  712. return io.ErrUnexpectedEOF
  713. }
  714. m.CSRF = string(dAtA[iNdEx:postIndex])
  715. iNdEx = postIndex
  716. case 4:
  717. if wireType != 0 {
  718. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  719. }
  720. m.Type = 0
  721. for shift := uint(0); ; shift += 7 {
  722. if shift >= 64 {
  723. return ErrIntOverflowAuth
  724. }
  725. if iNdEx >= l {
  726. return io.ErrUnexpectedEOF
  727. }
  728. b := dAtA[iNdEx]
  729. iNdEx++
  730. m.Type |= (int64(b) & 0x7F) << shift
  731. if b < 0x80 {
  732. break
  733. }
  734. }
  735. case 5:
  736. if wireType != 0 {
  737. return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType)
  738. }
  739. m.Expires = 0
  740. for shift := uint(0); ; shift += 7 {
  741. if shift >= 64 {
  742. return ErrIntOverflowAuth
  743. }
  744. if iNdEx >= l {
  745. return io.ErrUnexpectedEOF
  746. }
  747. b := dAtA[iNdEx]
  748. iNdEx++
  749. m.Expires |= (int64(b) & 0x7F) << shift
  750. if b < 0x80 {
  751. break
  752. }
  753. }
  754. default:
  755. iNdEx = preIndex
  756. skippy, err := skipAuth(dAtA[iNdEx:])
  757. if err != nil {
  758. return err
  759. }
  760. if skippy < 0 {
  761. return ErrInvalidLengthAuth
  762. }
  763. if (iNdEx + skippy) > l {
  764. return io.ErrUnexpectedEOF
  765. }
  766. iNdEx += skippy
  767. }
  768. }
  769. if iNdEx > l {
  770. return io.ErrUnexpectedEOF
  771. }
  772. return nil
  773. }
  774. func (m *Token) Unmarshal(dAtA []byte) error {
  775. l := len(dAtA)
  776. iNdEx := 0
  777. for iNdEx < l {
  778. preIndex := iNdEx
  779. var wire uint64
  780. for shift := uint(0); ; shift += 7 {
  781. if shift >= 64 {
  782. return ErrIntOverflowAuth
  783. }
  784. if iNdEx >= l {
  785. return io.ErrUnexpectedEOF
  786. }
  787. b := dAtA[iNdEx]
  788. iNdEx++
  789. wire |= (uint64(b) & 0x7F) << shift
  790. if b < 0x80 {
  791. break
  792. }
  793. }
  794. fieldNum := int32(wire >> 3)
  795. wireType := int(wire & 0x7)
  796. if wireType == 4 {
  797. return fmt.Errorf("proto: Token: wiretype end group for non-group")
  798. }
  799. if fieldNum <= 0 {
  800. return fmt.Errorf("proto: Token: illegal tag %d (wire type %d)", fieldNum, wire)
  801. }
  802. switch fieldNum {
  803. case 1:
  804. if wireType != 0 {
  805. return fmt.Errorf("proto: wrong wireType = %d for field Mid", wireType)
  806. }
  807. m.Mid = 0
  808. for shift := uint(0); ; shift += 7 {
  809. if shift >= 64 {
  810. return ErrIntOverflowAuth
  811. }
  812. if iNdEx >= l {
  813. return io.ErrUnexpectedEOF
  814. }
  815. b := dAtA[iNdEx]
  816. iNdEx++
  817. m.Mid |= (int64(b) & 0x7F) << shift
  818. if b < 0x80 {
  819. break
  820. }
  821. }
  822. case 2:
  823. if wireType != 0 {
  824. return fmt.Errorf("proto: wrong wireType = %d for field AppID", wireType)
  825. }
  826. m.AppID = 0
  827. for shift := uint(0); ; shift += 7 {
  828. if shift >= 64 {
  829. return ErrIntOverflowAuth
  830. }
  831. if iNdEx >= l {
  832. return io.ErrUnexpectedEOF
  833. }
  834. b := dAtA[iNdEx]
  835. iNdEx++
  836. m.AppID |= (int32(b) & 0x7F) << shift
  837. if b < 0x80 {
  838. break
  839. }
  840. }
  841. case 3:
  842. if wireType != 2 {
  843. return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType)
  844. }
  845. var stringLen uint64
  846. for shift := uint(0); ; shift += 7 {
  847. if shift >= 64 {
  848. return ErrIntOverflowAuth
  849. }
  850. if iNdEx >= l {
  851. return io.ErrUnexpectedEOF
  852. }
  853. b := dAtA[iNdEx]
  854. iNdEx++
  855. stringLen |= (uint64(b) & 0x7F) << shift
  856. if b < 0x80 {
  857. break
  858. }
  859. }
  860. intStringLen := int(stringLen)
  861. if intStringLen < 0 {
  862. return ErrInvalidLengthAuth
  863. }
  864. postIndex := iNdEx + intStringLen
  865. if postIndex > l {
  866. return io.ErrUnexpectedEOF
  867. }
  868. m.Token = string(dAtA[iNdEx:postIndex])
  869. iNdEx = postIndex
  870. case 4:
  871. if wireType != 0 {
  872. return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType)
  873. }
  874. m.Type = 0
  875. for shift := uint(0); ; shift += 7 {
  876. if shift >= 64 {
  877. return ErrIntOverflowAuth
  878. }
  879. if iNdEx >= l {
  880. return io.ErrUnexpectedEOF
  881. }
  882. b := dAtA[iNdEx]
  883. iNdEx++
  884. m.Type |= (int64(b) & 0x7F) << shift
  885. if b < 0x80 {
  886. break
  887. }
  888. }
  889. case 5:
  890. if wireType != 0 {
  891. return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType)
  892. }
  893. m.Expires = 0
  894. for shift := uint(0); ; shift += 7 {
  895. if shift >= 64 {
  896. return ErrIntOverflowAuth
  897. }
  898. if iNdEx >= l {
  899. return io.ErrUnexpectedEOF
  900. }
  901. b := dAtA[iNdEx]
  902. iNdEx++
  903. m.Expires |= (int64(b) & 0x7F) << shift
  904. if b < 0x80 {
  905. break
  906. }
  907. }
  908. default:
  909. iNdEx = preIndex
  910. skippy, err := skipAuth(dAtA[iNdEx:])
  911. if err != nil {
  912. return err
  913. }
  914. if skippy < 0 {
  915. return ErrInvalidLengthAuth
  916. }
  917. if (iNdEx + skippy) > l {
  918. return io.ErrUnexpectedEOF
  919. }
  920. iNdEx += skippy
  921. }
  922. }
  923. if iNdEx > l {
  924. return io.ErrUnexpectedEOF
  925. }
  926. return nil
  927. }
  928. func (m *Refresh) Unmarshal(dAtA []byte) error {
  929. l := len(dAtA)
  930. iNdEx := 0
  931. for iNdEx < l {
  932. preIndex := iNdEx
  933. var wire uint64
  934. for shift := uint(0); ; shift += 7 {
  935. if shift >= 64 {
  936. return ErrIntOverflowAuth
  937. }
  938. if iNdEx >= l {
  939. return io.ErrUnexpectedEOF
  940. }
  941. b := dAtA[iNdEx]
  942. iNdEx++
  943. wire |= (uint64(b) & 0x7F) << shift
  944. if b < 0x80 {
  945. break
  946. }
  947. }
  948. fieldNum := int32(wire >> 3)
  949. wireType := int(wire & 0x7)
  950. if wireType == 4 {
  951. return fmt.Errorf("proto: Refresh: wiretype end group for non-group")
  952. }
  953. if fieldNum <= 0 {
  954. return fmt.Errorf("proto: Refresh: illegal tag %d (wire type %d)", fieldNum, wire)
  955. }
  956. switch fieldNum {
  957. case 1:
  958. if wireType != 0 {
  959. return fmt.Errorf("proto: wrong wireType = %d for field Mid", wireType)
  960. }
  961. m.Mid = 0
  962. for shift := uint(0); ; shift += 7 {
  963. if shift >= 64 {
  964. return ErrIntOverflowAuth
  965. }
  966. if iNdEx >= l {
  967. return io.ErrUnexpectedEOF
  968. }
  969. b := dAtA[iNdEx]
  970. iNdEx++
  971. m.Mid |= (int64(b) & 0x7F) << shift
  972. if b < 0x80 {
  973. break
  974. }
  975. }
  976. case 2:
  977. if wireType != 0 {
  978. return fmt.Errorf("proto: wrong wireType = %d for field AppID", wireType)
  979. }
  980. m.AppID = 0
  981. for shift := uint(0); ; shift += 7 {
  982. if shift >= 64 {
  983. return ErrIntOverflowAuth
  984. }
  985. if iNdEx >= l {
  986. return io.ErrUnexpectedEOF
  987. }
  988. b := dAtA[iNdEx]
  989. iNdEx++
  990. m.AppID |= (int32(b) & 0x7F) << shift
  991. if b < 0x80 {
  992. break
  993. }
  994. }
  995. case 3:
  996. if wireType != 2 {
  997. return fmt.Errorf("proto: wrong wireType = %d for field Refresh", wireType)
  998. }
  999. var stringLen uint64
  1000. for shift := uint(0); ; shift += 7 {
  1001. if shift >= 64 {
  1002. return ErrIntOverflowAuth
  1003. }
  1004. if iNdEx >= l {
  1005. return io.ErrUnexpectedEOF
  1006. }
  1007. b := dAtA[iNdEx]
  1008. iNdEx++
  1009. stringLen |= (uint64(b) & 0x7F) << shift
  1010. if b < 0x80 {
  1011. break
  1012. }
  1013. }
  1014. intStringLen := int(stringLen)
  1015. if intStringLen < 0 {
  1016. return ErrInvalidLengthAuth
  1017. }
  1018. postIndex := iNdEx + intStringLen
  1019. if postIndex > l {
  1020. return io.ErrUnexpectedEOF
  1021. }
  1022. m.Refresh = string(dAtA[iNdEx:postIndex])
  1023. iNdEx = postIndex
  1024. case 4:
  1025. if wireType != 2 {
  1026. return fmt.Errorf("proto: wrong wireType = %d for field Token", wireType)
  1027. }
  1028. var stringLen uint64
  1029. for shift := uint(0); ; shift += 7 {
  1030. if shift >= 64 {
  1031. return ErrIntOverflowAuth
  1032. }
  1033. if iNdEx >= l {
  1034. return io.ErrUnexpectedEOF
  1035. }
  1036. b := dAtA[iNdEx]
  1037. iNdEx++
  1038. stringLen |= (uint64(b) & 0x7F) << shift
  1039. if b < 0x80 {
  1040. break
  1041. }
  1042. }
  1043. intStringLen := int(stringLen)
  1044. if intStringLen < 0 {
  1045. return ErrInvalidLengthAuth
  1046. }
  1047. postIndex := iNdEx + intStringLen
  1048. if postIndex > l {
  1049. return io.ErrUnexpectedEOF
  1050. }
  1051. m.Token = string(dAtA[iNdEx:postIndex])
  1052. iNdEx = postIndex
  1053. case 5:
  1054. if wireType != 0 {
  1055. return fmt.Errorf("proto: wrong wireType = %d for field Expires", wireType)
  1056. }
  1057. m.Expires = 0
  1058. for shift := uint(0); ; shift += 7 {
  1059. if shift >= 64 {
  1060. return ErrIntOverflowAuth
  1061. }
  1062. if iNdEx >= l {
  1063. return io.ErrUnexpectedEOF
  1064. }
  1065. b := dAtA[iNdEx]
  1066. iNdEx++
  1067. m.Expires |= (int64(b) & 0x7F) << shift
  1068. if b < 0x80 {
  1069. break
  1070. }
  1071. }
  1072. default:
  1073. iNdEx = preIndex
  1074. skippy, err := skipAuth(dAtA[iNdEx:])
  1075. if err != nil {
  1076. return err
  1077. }
  1078. if skippy < 0 {
  1079. return ErrInvalidLengthAuth
  1080. }
  1081. if (iNdEx + skippy) > l {
  1082. return io.ErrUnexpectedEOF
  1083. }
  1084. iNdEx += skippy
  1085. }
  1086. }
  1087. if iNdEx > l {
  1088. return io.ErrUnexpectedEOF
  1089. }
  1090. return nil
  1091. }
  1092. func skipAuth(dAtA []byte) (n int, err error) {
  1093. l := len(dAtA)
  1094. iNdEx := 0
  1095. for iNdEx < l {
  1096. var wire uint64
  1097. for shift := uint(0); ; shift += 7 {
  1098. if shift >= 64 {
  1099. return 0, ErrIntOverflowAuth
  1100. }
  1101. if iNdEx >= l {
  1102. return 0, io.ErrUnexpectedEOF
  1103. }
  1104. b := dAtA[iNdEx]
  1105. iNdEx++
  1106. wire |= (uint64(b) & 0x7F) << shift
  1107. if b < 0x80 {
  1108. break
  1109. }
  1110. }
  1111. wireType := int(wire & 0x7)
  1112. switch wireType {
  1113. case 0:
  1114. for shift := uint(0); ; shift += 7 {
  1115. if shift >= 64 {
  1116. return 0, ErrIntOverflowAuth
  1117. }
  1118. if iNdEx >= l {
  1119. return 0, io.ErrUnexpectedEOF
  1120. }
  1121. iNdEx++
  1122. if dAtA[iNdEx-1] < 0x80 {
  1123. break
  1124. }
  1125. }
  1126. return iNdEx, nil
  1127. case 1:
  1128. iNdEx += 8
  1129. return iNdEx, nil
  1130. case 2:
  1131. var length int
  1132. for shift := uint(0); ; shift += 7 {
  1133. if shift >= 64 {
  1134. return 0, ErrIntOverflowAuth
  1135. }
  1136. if iNdEx >= l {
  1137. return 0, io.ErrUnexpectedEOF
  1138. }
  1139. b := dAtA[iNdEx]
  1140. iNdEx++
  1141. length |= (int(b) & 0x7F) << shift
  1142. if b < 0x80 {
  1143. break
  1144. }
  1145. }
  1146. iNdEx += length
  1147. if length < 0 {
  1148. return 0, ErrInvalidLengthAuth
  1149. }
  1150. return iNdEx, nil
  1151. case 3:
  1152. for {
  1153. var innerWire uint64
  1154. var start int = iNdEx
  1155. for shift := uint(0); ; shift += 7 {
  1156. if shift >= 64 {
  1157. return 0, ErrIntOverflowAuth
  1158. }
  1159. if iNdEx >= l {
  1160. return 0, io.ErrUnexpectedEOF
  1161. }
  1162. b := dAtA[iNdEx]
  1163. iNdEx++
  1164. innerWire |= (uint64(b) & 0x7F) << shift
  1165. if b < 0x80 {
  1166. break
  1167. }
  1168. }
  1169. innerWireType := int(innerWire & 0x7)
  1170. if innerWireType == 4 {
  1171. break
  1172. }
  1173. next, err := skipAuth(dAtA[start:])
  1174. if err != nil {
  1175. return 0, err
  1176. }
  1177. iNdEx = start + next
  1178. }
  1179. return iNdEx, nil
  1180. case 4:
  1181. return iNdEx, nil
  1182. case 5:
  1183. iNdEx += 4
  1184. return iNdEx, nil
  1185. default:
  1186. return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
  1187. }
  1188. }
  1189. panic("unreachable")
  1190. }
  1191. var (
  1192. ErrInvalidLengthAuth = fmt.Errorf("proto: negative length found during unmarshaling")
  1193. ErrIntOverflowAuth = fmt.Errorf("proto: integer overflow")
  1194. )
  1195. func init() { proto.RegisterFile("auth.proto", fileDescriptorAuth) }
  1196. var fileDescriptorAuth = []byte{
  1197. // 392 bytes of a gzipped FileDescriptorProto
  1198. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xcf, 0x4a, 0xeb, 0x40,
  1199. 0x14, 0xc6, 0xef, 0xdc, 0x24, 0x4d, 0x33, 0x17, 0xee, 0x22, 0x70, 0xb9, 0x51, 0x4a, 0x52, 0x0a,
  1200. 0x85, 0x6e, 0x4c, 0x17, 0x3e, 0x41, 0x53, 0x15, 0x04, 0xdd, 0x4c, 0xbb, 0x72, 0x23, 0x6d, 0x33,
  1201. 0x4d, 0x86, 0xfe, 0x99, 0x21, 0x93, 0x88, 0x7d, 0x0d, 0x57, 0xbe, 0x82, 0x0b, 0x77, 0x3e, 0x84,
  1202. 0x4b, 0x9f, 0x20, 0x48, 0xdd, 0xe5, 0x29, 0x24, 0x67, 0xd2, 0xa2, 0xa0, 0x45, 0xd0, 0x5d, 0xe6,
  1203. 0xfb, 0x0e, 0xdf, 0xf7, 0x3b, 0x87, 0x60, 0x3c, 0xca, 0xd2, 0xd8, 0x17, 0x09, 0x4f, 0xb9, 0xfd,
  1204. 0x4f, 0x8c, 0xa4, 0x14, 0x3c, 0x49, 0x7d, 0x49, 0x93, 0x2b, 0x36, 0xa1, 0x7e, 0x69, 0xee, 0x1f,
  1205. 0x44, 0x2c, 0x8d, 0xb3, 0xb1, 0x3f, 0xe1, 0x8b, 0x6e, 0xc4, 0x23, 0xde, 0x85, 0xe9, 0x71, 0x36,
  1206. 0x85, 0x17, 0x3c, 0xe0, 0x4b, 0xa5, 0xb4, 0x6e, 0x10, 0xb6, 0x7a, 0x59, 0x1a, 0x13, 0x2a, 0xe6,
  1207. 0x2b, 0xdb, 0xc3, 0xc6, 0x19, 0x8f, 0xd8, 0xd2, 0x41, 0x4d, 0xd4, 0xa9, 0x07, 0x56, 0x91, 0x7b,
  1208. 0xc6, 0xbc, 0x14, 0x88, 0xd2, 0xed, 0x3d, 0xac, 0x9d, 0xb3, 0xd0, 0xf9, 0xdd, 0x44, 0x1d, 0x2d,
  1209. 0x30, 0x8b, 0xdc, 0xd3, 0x16, 0x2c, 0x24, 0xa5, 0x66, 0xb7, 0xb0, 0xde, 0x1f, 0x90, 0x13, 0x47,
  1210. 0x6b, 0xa2, 0x8e, 0x15, 0xfc, 0x2d, 0x72, 0x0f, 0x4f, 0x64, 0x32, 0xbd, 0x4c, 0xf9, 0x8c, 0x2e,
  1211. 0x09, 0x78, 0x76, 0x1b, 0x9b, 0xc7, 0xd7, 0x82, 0x25, 0x54, 0x3a, 0x3a, 0x44, 0xfc, 0x29, 0x72,
  1212. 0xcf, 0xa4, 0x4a, 0x22, 0x1b, 0xaf, 0x75, 0x8f, 0x70, 0xad, 0xcf, 0xf9, 0x8c, 0xd1, 0x4d, 0x21,
  1213. 0xfa, 0xa0, 0xb0, 0x8d, 0xcd, 0x01, 0x95, 0x92, 0xf1, 0x25, 0xf0, 0x58, 0x2a, 0x4c, 0x2a, 0x89,
  1214. 0x6c, 0x3c, 0xbb, 0xf1, 0x8e, 0xab, 0x5e, 0xe4, 0x9e, 0x5e, 0x72, 0x55, 0x44, 0x0d, 0xac, 0x0f,
  1215. 0x57, 0x82, 0x56, 0x38, 0xe0, 0xa6, 0x2b, 0x41, 0x09, 0xa8, 0x6f, 0x79, 0x8d, 0x1d, 0xbc, 0x77,
  1216. 0x08, 0x1b, 0xc3, 0x72, 0xcd, 0x5d, 0xb8, 0x1e, 0x36, 0x7a, 0x42, 0x9c, 0x1e, 0x01, 0xac, 0xa1,
  1217. 0x6e, 0x3b, 0x12, 0x82, 0x85, 0x44, 0xe9, 0xe5, 0x00, 0x84, 0x54, 0xa4, 0x30, 0xa0, 0x8e, 0x57,
  1218. 0x85, 0xff, 0x08, 0xeb, 0x03, 0xc2, 0x26, 0xa1, 0xd3, 0x84, 0xca, 0xf8, 0x5b, 0xb4, 0xed, 0x6d,
  1219. 0x4c, 0xc5, 0x0b, 0x75, 0x89, 0x92, 0xc8, 0xb6, 0x62, 0xbb, 0x94, 0xfe, 0xc9, 0x52, 0x5f, 0xc3,
  1220. 0x0e, 0xfe, 0x3f, 0xae, 0x5d, 0xf4, 0xb4, 0x76, 0xd1, 0xf3, 0xda, 0x45, 0xb7, 0x2f, 0xee, 0xaf,
  1221. 0x0b, 0x63, 0xc1, 0x43, 0x3a, 0x1f, 0xd7, 0xe0, 0x3f, 0x3e, 0x7c, 0x0d, 0x00, 0x00, 0xff, 0xff,
  1222. 0x69, 0x35, 0xab, 0x86, 0x1b, 0x03, 0x00, 0x00,
  1223. }