fbcrawl-colly 0.2.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1706 @@
1
+ // Code generated by protoc-gen-go. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-go v1.25.0-devel
4
+ // protoc v3.12.3
5
+ // source: fbcrawl.proto
6
+
7
+ package pb
8
+
9
+ import (
10
+ proto "github.com/golang/protobuf/proto"
11
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
12
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
13
+ reflect "reflect"
14
+ sync "sync"
15
+ )
16
+
17
+ const (
18
+ // Verify that this generated code is sufficiently up-to-date.
19
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
20
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
21
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
22
+ )
23
+
24
+ // This is a compile-time assertion that a sufficiently up-to-date version
25
+ // of the legacy proto package is being used.
26
+ const _ = proto.ProtoPackageIsVersion4
27
+
28
+ type Empty struct {
29
+ state protoimpl.MessageState
30
+ sizeCache protoimpl.SizeCache
31
+ unknownFields protoimpl.UnknownFields
32
+ }
33
+
34
+ func (x *Empty) Reset() {
35
+ *x = Empty{}
36
+ if protoimpl.UnsafeEnabled {
37
+ mi := &file_fbcrawl_proto_msgTypes[0]
38
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
39
+ ms.StoreMessageInfo(mi)
40
+ }
41
+ }
42
+
43
+ func (x *Empty) String() string {
44
+ return protoimpl.X.MessageStringOf(x)
45
+ }
46
+
47
+ func (*Empty) ProtoMessage() {}
48
+
49
+ func (x *Empty) ProtoReflect() protoreflect.Message {
50
+ mi := &file_fbcrawl_proto_msgTypes[0]
51
+ if protoimpl.UnsafeEnabled && x != nil {
52
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
53
+ if ms.LoadMessageInfo() == nil {
54
+ ms.StoreMessageInfo(mi)
55
+ }
56
+ return ms
57
+ }
58
+ return mi.MessageOf(x)
59
+ }
60
+
61
+ // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
62
+ func (*Empty) Descriptor() ([]byte, []int) {
63
+ return file_fbcrawl_proto_rawDescGZIP(), []int{0}
64
+ }
65
+
66
+ type Context struct {
67
+ state protoimpl.MessageState
68
+ sizeCache protoimpl.SizeCache
69
+ unknownFields protoimpl.UnknownFields
70
+
71
+ Cookies string `protobuf:"bytes,1,opt,name=cookies,proto3" json:"cookies,omitempty"`
72
+ }
73
+
74
+ func (x *Context) Reset() {
75
+ *x = Context{}
76
+ if protoimpl.UnsafeEnabled {
77
+ mi := &file_fbcrawl_proto_msgTypes[1]
78
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
79
+ ms.StoreMessageInfo(mi)
80
+ }
81
+ }
82
+
83
+ func (x *Context) String() string {
84
+ return protoimpl.X.MessageStringOf(x)
85
+ }
86
+
87
+ func (*Context) ProtoMessage() {}
88
+
89
+ func (x *Context) ProtoReflect() protoreflect.Message {
90
+ mi := &file_fbcrawl_proto_msgTypes[1]
91
+ if protoimpl.UnsafeEnabled && x != nil {
92
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
93
+ if ms.LoadMessageInfo() == nil {
94
+ ms.StoreMessageInfo(mi)
95
+ }
96
+ return ms
97
+ }
98
+ return mi.MessageOf(x)
99
+ }
100
+
101
+ // Deprecated: Use Context.ProtoReflect.Descriptor instead.
102
+ func (*Context) Descriptor() ([]byte, []int) {
103
+ return file_fbcrawl_proto_rawDescGZIP(), []int{1}
104
+ }
105
+
106
+ func (x *Context) GetCookies() string {
107
+ if x != nil {
108
+ return x.Cookies
109
+ }
110
+ return ""
111
+ }
112
+
113
+ type LoginRequest struct {
114
+ state protoimpl.MessageState
115
+ sizeCache protoimpl.SizeCache
116
+ unknownFields protoimpl.UnknownFields
117
+
118
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
119
+ Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
120
+ TotpSecret string `protobuf:"bytes,4,opt,name=totp_secret,json=totpSecret,proto3" json:"totp_secret,omitempty"`
121
+ }
122
+
123
+ func (x *LoginRequest) Reset() {
124
+ *x = LoginRequest{}
125
+ if protoimpl.UnsafeEnabled {
126
+ mi := &file_fbcrawl_proto_msgTypes[2]
127
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
128
+ ms.StoreMessageInfo(mi)
129
+ }
130
+ }
131
+
132
+ func (x *LoginRequest) String() string {
133
+ return protoimpl.X.MessageStringOf(x)
134
+ }
135
+
136
+ func (*LoginRequest) ProtoMessage() {}
137
+
138
+ func (x *LoginRequest) ProtoReflect() protoreflect.Message {
139
+ mi := &file_fbcrawl_proto_msgTypes[2]
140
+ if protoimpl.UnsafeEnabled && x != nil {
141
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
142
+ if ms.LoadMessageInfo() == nil {
143
+ ms.StoreMessageInfo(mi)
144
+ }
145
+ return ms
146
+ }
147
+ return mi.MessageOf(x)
148
+ }
149
+
150
+ // Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.
151
+ func (*LoginRequest) Descriptor() ([]byte, []int) {
152
+ return file_fbcrawl_proto_rawDescGZIP(), []int{2}
153
+ }
154
+
155
+ func (x *LoginRequest) GetEmail() string {
156
+ if x != nil {
157
+ return x.Email
158
+ }
159
+ return ""
160
+ }
161
+
162
+ func (x *LoginRequest) GetPassword() string {
163
+ if x != nil {
164
+ return x.Password
165
+ }
166
+ return ""
167
+ }
168
+
169
+ func (x *LoginRequest) GetTotpSecret() string {
170
+ if x != nil {
171
+ return x.TotpSecret
172
+ }
173
+ return ""
174
+ }
175
+
176
+ type LoginResponse struct {
177
+ state protoimpl.MessageState
178
+ sizeCache protoimpl.SizeCache
179
+ unknownFields protoimpl.UnknownFields
180
+
181
+ Cookies string `protobuf:"bytes,1,opt,name=cookies,proto3" json:"cookies,omitempty"`
182
+ }
183
+
184
+ func (x *LoginResponse) Reset() {
185
+ *x = LoginResponse{}
186
+ if protoimpl.UnsafeEnabled {
187
+ mi := &file_fbcrawl_proto_msgTypes[3]
188
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
189
+ ms.StoreMessageInfo(mi)
190
+ }
191
+ }
192
+
193
+ func (x *LoginResponse) String() string {
194
+ return protoimpl.X.MessageStringOf(x)
195
+ }
196
+
197
+ func (*LoginResponse) ProtoMessage() {}
198
+
199
+ func (x *LoginResponse) ProtoReflect() protoreflect.Message {
200
+ mi := &file_fbcrawl_proto_msgTypes[3]
201
+ if protoimpl.UnsafeEnabled && x != nil {
202
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
203
+ if ms.LoadMessageInfo() == nil {
204
+ ms.StoreMessageInfo(mi)
205
+ }
206
+ return ms
207
+ }
208
+ return mi.MessageOf(x)
209
+ }
210
+
211
+ // Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.
212
+ func (*LoginResponse) Descriptor() ([]byte, []int) {
213
+ return file_fbcrawl_proto_rawDescGZIP(), []int{3}
214
+ }
215
+
216
+ func (x *LoginResponse) GetCookies() string {
217
+ if x != nil {
218
+ return x.Cookies
219
+ }
220
+ return ""
221
+ }
222
+
223
+ type LoginWithCookiesRequest struct {
224
+ state protoimpl.MessageState
225
+ sizeCache protoimpl.SizeCache
226
+ unknownFields protoimpl.UnknownFields
227
+
228
+ Cookies string `protobuf:"bytes,1,opt,name=cookies,proto3" json:"cookies,omitempty"`
229
+ }
230
+
231
+ func (x *LoginWithCookiesRequest) Reset() {
232
+ *x = LoginWithCookiesRequest{}
233
+ if protoimpl.UnsafeEnabled {
234
+ mi := &file_fbcrawl_proto_msgTypes[4]
235
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
236
+ ms.StoreMessageInfo(mi)
237
+ }
238
+ }
239
+
240
+ func (x *LoginWithCookiesRequest) String() string {
241
+ return protoimpl.X.MessageStringOf(x)
242
+ }
243
+
244
+ func (*LoginWithCookiesRequest) ProtoMessage() {}
245
+
246
+ func (x *LoginWithCookiesRequest) ProtoReflect() protoreflect.Message {
247
+ mi := &file_fbcrawl_proto_msgTypes[4]
248
+ if protoimpl.UnsafeEnabled && x != nil {
249
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
250
+ if ms.LoadMessageInfo() == nil {
251
+ ms.StoreMessageInfo(mi)
252
+ }
253
+ return ms
254
+ }
255
+ return mi.MessageOf(x)
256
+ }
257
+
258
+ // Deprecated: Use LoginWithCookiesRequest.ProtoReflect.Descriptor instead.
259
+ func (*LoginWithCookiesRequest) Descriptor() ([]byte, []int) {
260
+ return file_fbcrawl_proto_rawDescGZIP(), []int{4}
261
+ }
262
+
263
+ func (x *LoginWithCookiesRequest) GetCookies() string {
264
+ if x != nil {
265
+ return x.Cookies
266
+ }
267
+ return ""
268
+ }
269
+
270
+ type FetchGroupInfoRequest struct {
271
+ state protoimpl.MessageState
272
+ sizeCache protoimpl.SizeCache
273
+ unknownFields protoimpl.UnknownFields
274
+
275
+ Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
276
+ GroupUsername string `protobuf:"bytes,2,opt,name=group_username,json=groupUsername,proto3" json:"group_username,omitempty"`
277
+ }
278
+
279
+ func (x *FetchGroupInfoRequest) Reset() {
280
+ *x = FetchGroupInfoRequest{}
281
+ if protoimpl.UnsafeEnabled {
282
+ mi := &file_fbcrawl_proto_msgTypes[5]
283
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
284
+ ms.StoreMessageInfo(mi)
285
+ }
286
+ }
287
+
288
+ func (x *FetchGroupInfoRequest) String() string {
289
+ return protoimpl.X.MessageStringOf(x)
290
+ }
291
+
292
+ func (*FetchGroupInfoRequest) ProtoMessage() {}
293
+
294
+ func (x *FetchGroupInfoRequest) ProtoReflect() protoreflect.Message {
295
+ mi := &file_fbcrawl_proto_msgTypes[5]
296
+ if protoimpl.UnsafeEnabled && x != nil {
297
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
298
+ if ms.LoadMessageInfo() == nil {
299
+ ms.StoreMessageInfo(mi)
300
+ }
301
+ return ms
302
+ }
303
+ return mi.MessageOf(x)
304
+ }
305
+
306
+ // Deprecated: Use FetchGroupInfoRequest.ProtoReflect.Descriptor instead.
307
+ func (*FetchGroupInfoRequest) Descriptor() ([]byte, []int) {
308
+ return file_fbcrawl_proto_rawDescGZIP(), []int{5}
309
+ }
310
+
311
+ func (x *FetchGroupInfoRequest) GetContext() *Context {
312
+ if x != nil {
313
+ return x.Context
314
+ }
315
+ return nil
316
+ }
317
+
318
+ func (x *FetchGroupInfoRequest) GetGroupUsername() string {
319
+ if x != nil {
320
+ return x.GroupUsername
321
+ }
322
+ return ""
323
+ }
324
+
325
+ type FetchUserInfoRequest struct {
326
+ state protoimpl.MessageState
327
+ sizeCache protoimpl.SizeCache
328
+ unknownFields protoimpl.UnknownFields
329
+
330
+ Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
331
+ Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
332
+ }
333
+
334
+ func (x *FetchUserInfoRequest) Reset() {
335
+ *x = FetchUserInfoRequest{}
336
+ if protoimpl.UnsafeEnabled {
337
+ mi := &file_fbcrawl_proto_msgTypes[6]
338
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
339
+ ms.StoreMessageInfo(mi)
340
+ }
341
+ }
342
+
343
+ func (x *FetchUserInfoRequest) String() string {
344
+ return protoimpl.X.MessageStringOf(x)
345
+ }
346
+
347
+ func (*FetchUserInfoRequest) ProtoMessage() {}
348
+
349
+ func (x *FetchUserInfoRequest) ProtoReflect() protoreflect.Message {
350
+ mi := &file_fbcrawl_proto_msgTypes[6]
351
+ if protoimpl.UnsafeEnabled && x != nil {
352
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
353
+ if ms.LoadMessageInfo() == nil {
354
+ ms.StoreMessageInfo(mi)
355
+ }
356
+ return ms
357
+ }
358
+ return mi.MessageOf(x)
359
+ }
360
+
361
+ // Deprecated: Use FetchUserInfoRequest.ProtoReflect.Descriptor instead.
362
+ func (*FetchUserInfoRequest) Descriptor() ([]byte, []int) {
363
+ return file_fbcrawl_proto_rawDescGZIP(), []int{6}
364
+ }
365
+
366
+ func (x *FetchUserInfoRequest) GetContext() *Context {
367
+ if x != nil {
368
+ return x.Context
369
+ }
370
+ return nil
371
+ }
372
+
373
+ func (x *FetchUserInfoRequest) GetUsername() string {
374
+ if x != nil {
375
+ return x.Username
376
+ }
377
+ return ""
378
+ }
379
+
380
+ type FetchGroupFeedRequest struct {
381
+ state protoimpl.MessageState
382
+ sizeCache protoimpl.SizeCache
383
+ unknownFields protoimpl.UnknownFields
384
+
385
+ Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
386
+ GroupId int64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
387
+ NextCursor string `protobuf:"bytes,3,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
388
+ }
389
+
390
+ func (x *FetchGroupFeedRequest) Reset() {
391
+ *x = FetchGroupFeedRequest{}
392
+ if protoimpl.UnsafeEnabled {
393
+ mi := &file_fbcrawl_proto_msgTypes[7]
394
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
395
+ ms.StoreMessageInfo(mi)
396
+ }
397
+ }
398
+
399
+ func (x *FetchGroupFeedRequest) String() string {
400
+ return protoimpl.X.MessageStringOf(x)
401
+ }
402
+
403
+ func (*FetchGroupFeedRequest) ProtoMessage() {}
404
+
405
+ func (x *FetchGroupFeedRequest) ProtoReflect() protoreflect.Message {
406
+ mi := &file_fbcrawl_proto_msgTypes[7]
407
+ if protoimpl.UnsafeEnabled && x != nil {
408
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
409
+ if ms.LoadMessageInfo() == nil {
410
+ ms.StoreMessageInfo(mi)
411
+ }
412
+ return ms
413
+ }
414
+ return mi.MessageOf(x)
415
+ }
416
+
417
+ // Deprecated: Use FetchGroupFeedRequest.ProtoReflect.Descriptor instead.
418
+ func (*FetchGroupFeedRequest) Descriptor() ([]byte, []int) {
419
+ return file_fbcrawl_proto_rawDescGZIP(), []int{7}
420
+ }
421
+
422
+ func (x *FetchGroupFeedRequest) GetContext() *Context {
423
+ if x != nil {
424
+ return x.Context
425
+ }
426
+ return nil
427
+ }
428
+
429
+ func (x *FetchGroupFeedRequest) GetGroupId() int64 {
430
+ if x != nil {
431
+ return x.GroupId
432
+ }
433
+ return 0
434
+ }
435
+
436
+ func (x *FetchGroupFeedRequest) GetNextCursor() string {
437
+ if x != nil {
438
+ return x.NextCursor
439
+ }
440
+ return ""
441
+ }
442
+
443
+ type FetchPostRequest struct {
444
+ state protoimpl.MessageState
445
+ sizeCache protoimpl.SizeCache
446
+ unknownFields protoimpl.UnknownFields
447
+
448
+ Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
449
+ GroupId int64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
450
+ PostId int64 `protobuf:"varint,3,opt,name=post_id,json=postId,proto3" json:"post_id,omitempty"`
451
+ CommentNextCursor string `protobuf:"bytes,4,opt,name=comment_next_cursor,json=commentNextCursor,proto3" json:"comment_next_cursor,omitempty"`
452
+ }
453
+
454
+ func (x *FetchPostRequest) Reset() {
455
+ *x = FetchPostRequest{}
456
+ if protoimpl.UnsafeEnabled {
457
+ mi := &file_fbcrawl_proto_msgTypes[8]
458
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
459
+ ms.StoreMessageInfo(mi)
460
+ }
461
+ }
462
+
463
+ func (x *FetchPostRequest) String() string {
464
+ return protoimpl.X.MessageStringOf(x)
465
+ }
466
+
467
+ func (*FetchPostRequest) ProtoMessage() {}
468
+
469
+ func (x *FetchPostRequest) ProtoReflect() protoreflect.Message {
470
+ mi := &file_fbcrawl_proto_msgTypes[8]
471
+ if protoimpl.UnsafeEnabled && x != nil {
472
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
473
+ if ms.LoadMessageInfo() == nil {
474
+ ms.StoreMessageInfo(mi)
475
+ }
476
+ return ms
477
+ }
478
+ return mi.MessageOf(x)
479
+ }
480
+
481
+ // Deprecated: Use FetchPostRequest.ProtoReflect.Descriptor instead.
482
+ func (*FetchPostRequest) Descriptor() ([]byte, []int) {
483
+ return file_fbcrawl_proto_rawDescGZIP(), []int{8}
484
+ }
485
+
486
+ func (x *FetchPostRequest) GetContext() *Context {
487
+ if x != nil {
488
+ return x.Context
489
+ }
490
+ return nil
491
+ }
492
+
493
+ func (x *FetchPostRequest) GetGroupId() int64 {
494
+ if x != nil {
495
+ return x.GroupId
496
+ }
497
+ return 0
498
+ }
499
+
500
+ func (x *FetchPostRequest) GetPostId() int64 {
501
+ if x != nil {
502
+ return x.PostId
503
+ }
504
+ return 0
505
+ }
506
+
507
+ func (x *FetchPostRequest) GetCommentNextCursor() string {
508
+ if x != nil {
509
+ return x.CommentNextCursor
510
+ }
511
+ return ""
512
+ }
513
+
514
+ type FetchContentImagesRequest struct {
515
+ state protoimpl.MessageState
516
+ sizeCache protoimpl.SizeCache
517
+ unknownFields protoimpl.UnknownFields
518
+
519
+ Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
520
+ PostId int64 `protobuf:"varint,2,opt,name=post_id,json=postId,proto3" json:"post_id,omitempty"`
521
+ NextCursor string `protobuf:"bytes,3,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
522
+ }
523
+
524
+ func (x *FetchContentImagesRequest) Reset() {
525
+ *x = FetchContentImagesRequest{}
526
+ if protoimpl.UnsafeEnabled {
527
+ mi := &file_fbcrawl_proto_msgTypes[9]
528
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
529
+ ms.StoreMessageInfo(mi)
530
+ }
531
+ }
532
+
533
+ func (x *FetchContentImagesRequest) String() string {
534
+ return protoimpl.X.MessageStringOf(x)
535
+ }
536
+
537
+ func (*FetchContentImagesRequest) ProtoMessage() {}
538
+
539
+ func (x *FetchContentImagesRequest) ProtoReflect() protoreflect.Message {
540
+ mi := &file_fbcrawl_proto_msgTypes[9]
541
+ if protoimpl.UnsafeEnabled && x != nil {
542
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
543
+ if ms.LoadMessageInfo() == nil {
544
+ ms.StoreMessageInfo(mi)
545
+ }
546
+ return ms
547
+ }
548
+ return mi.MessageOf(x)
549
+ }
550
+
551
+ // Deprecated: Use FetchContentImagesRequest.ProtoReflect.Descriptor instead.
552
+ func (*FetchContentImagesRequest) Descriptor() ([]byte, []int) {
553
+ return file_fbcrawl_proto_rawDescGZIP(), []int{9}
554
+ }
555
+
556
+ func (x *FetchContentImagesRequest) GetContext() *Context {
557
+ if x != nil {
558
+ return x.Context
559
+ }
560
+ return nil
561
+ }
562
+
563
+ func (x *FetchContentImagesRequest) GetPostId() int64 {
564
+ if x != nil {
565
+ return x.PostId
566
+ }
567
+ return 0
568
+ }
569
+
570
+ func (x *FetchContentImagesRequest) GetNextCursor() string {
571
+ if x != nil {
572
+ return x.NextCursor
573
+ }
574
+ return ""
575
+ }
576
+
577
+ type FetchImageUrlRequest struct {
578
+ state protoimpl.MessageState
579
+ sizeCache protoimpl.SizeCache
580
+ unknownFields protoimpl.UnknownFields
581
+
582
+ Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
583
+ ImageId int64 `protobuf:"varint,2,opt,name=image_id,json=imageId,proto3" json:"image_id,omitempty"`
584
+ }
585
+
586
+ func (x *FetchImageUrlRequest) Reset() {
587
+ *x = FetchImageUrlRequest{}
588
+ if protoimpl.UnsafeEnabled {
589
+ mi := &file_fbcrawl_proto_msgTypes[10]
590
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
591
+ ms.StoreMessageInfo(mi)
592
+ }
593
+ }
594
+
595
+ func (x *FetchImageUrlRequest) String() string {
596
+ return protoimpl.X.MessageStringOf(x)
597
+ }
598
+
599
+ func (*FetchImageUrlRequest) ProtoMessage() {}
600
+
601
+ func (x *FetchImageUrlRequest) ProtoReflect() protoreflect.Message {
602
+ mi := &file_fbcrawl_proto_msgTypes[10]
603
+ if protoimpl.UnsafeEnabled && x != nil {
604
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
605
+ if ms.LoadMessageInfo() == nil {
606
+ ms.StoreMessageInfo(mi)
607
+ }
608
+ return ms
609
+ }
610
+ return mi.MessageOf(x)
611
+ }
612
+
613
+ // Deprecated: Use FetchImageUrlRequest.ProtoReflect.Descriptor instead.
614
+ func (*FetchImageUrlRequest) Descriptor() ([]byte, []int) {
615
+ return file_fbcrawl_proto_rawDescGZIP(), []int{10}
616
+ }
617
+
618
+ func (x *FetchImageUrlRequest) GetContext() *Context {
619
+ if x != nil {
620
+ return x.Context
621
+ }
622
+ return nil
623
+ }
624
+
625
+ func (x *FetchImageUrlRequest) GetImageId() int64 {
626
+ if x != nil {
627
+ return x.ImageId
628
+ }
629
+ return 0
630
+ }
631
+
632
+ // The request message containing the user's name.
633
+ type FacebookGroup struct {
634
+ state protoimpl.MessageState
635
+ sizeCache protoimpl.SizeCache
636
+ unknownFields protoimpl.UnknownFields
637
+
638
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
639
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
640
+ MemberCount int64 `protobuf:"varint,3,opt,name=member_count,json=memberCount,proto3" json:"member_count,omitempty"`
641
+ }
642
+
643
+ func (x *FacebookGroup) Reset() {
644
+ *x = FacebookGroup{}
645
+ if protoimpl.UnsafeEnabled {
646
+ mi := &file_fbcrawl_proto_msgTypes[11]
647
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
648
+ ms.StoreMessageInfo(mi)
649
+ }
650
+ }
651
+
652
+ func (x *FacebookGroup) String() string {
653
+ return protoimpl.X.MessageStringOf(x)
654
+ }
655
+
656
+ func (*FacebookGroup) ProtoMessage() {}
657
+
658
+ func (x *FacebookGroup) ProtoReflect() protoreflect.Message {
659
+ mi := &file_fbcrawl_proto_msgTypes[11]
660
+ if protoimpl.UnsafeEnabled && x != nil {
661
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
662
+ if ms.LoadMessageInfo() == nil {
663
+ ms.StoreMessageInfo(mi)
664
+ }
665
+ return ms
666
+ }
667
+ return mi.MessageOf(x)
668
+ }
669
+
670
+ // Deprecated: Use FacebookGroup.ProtoReflect.Descriptor instead.
671
+ func (*FacebookGroup) Descriptor() ([]byte, []int) {
672
+ return file_fbcrawl_proto_rawDescGZIP(), []int{11}
673
+ }
674
+
675
+ func (x *FacebookGroup) GetId() int64 {
676
+ if x != nil {
677
+ return x.Id
678
+ }
679
+ return 0
680
+ }
681
+
682
+ func (x *FacebookGroup) GetName() string {
683
+ if x != nil {
684
+ return x.Name
685
+ }
686
+ return ""
687
+ }
688
+
689
+ func (x *FacebookGroup) GetMemberCount() int64 {
690
+ if x != nil {
691
+ return x.MemberCount
692
+ }
693
+ return 0
694
+ }
695
+
696
+ type FacebookUser struct {
697
+ state protoimpl.MessageState
698
+ sizeCache protoimpl.SizeCache
699
+ unknownFields protoimpl.UnknownFields
700
+
701
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
702
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
703
+ Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`
704
+ FriendCount int64 `protobuf:"varint,4,opt,name=friend_count,json=friendCount,proto3" json:"friend_count,omitempty"`
705
+ }
706
+
707
+ func (x *FacebookUser) Reset() {
708
+ *x = FacebookUser{}
709
+ if protoimpl.UnsafeEnabled {
710
+ mi := &file_fbcrawl_proto_msgTypes[12]
711
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
712
+ ms.StoreMessageInfo(mi)
713
+ }
714
+ }
715
+
716
+ func (x *FacebookUser) String() string {
717
+ return protoimpl.X.MessageStringOf(x)
718
+ }
719
+
720
+ func (*FacebookUser) ProtoMessage() {}
721
+
722
+ func (x *FacebookUser) ProtoReflect() protoreflect.Message {
723
+ mi := &file_fbcrawl_proto_msgTypes[12]
724
+ if protoimpl.UnsafeEnabled && x != nil {
725
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
726
+ if ms.LoadMessageInfo() == nil {
727
+ ms.StoreMessageInfo(mi)
728
+ }
729
+ return ms
730
+ }
731
+ return mi.MessageOf(x)
732
+ }
733
+
734
+ // Deprecated: Use FacebookUser.ProtoReflect.Descriptor instead.
735
+ func (*FacebookUser) Descriptor() ([]byte, []int) {
736
+ return file_fbcrawl_proto_rawDescGZIP(), []int{12}
737
+ }
738
+
739
+ func (x *FacebookUser) GetId() int64 {
740
+ if x != nil {
741
+ return x.Id
742
+ }
743
+ return 0
744
+ }
745
+
746
+ func (x *FacebookUser) GetName() string {
747
+ if x != nil {
748
+ return x.Name
749
+ }
750
+ return ""
751
+ }
752
+
753
+ func (x *FacebookUser) GetUsername() string {
754
+ if x != nil {
755
+ return x.Username
756
+ }
757
+ return ""
758
+ }
759
+
760
+ func (x *FacebookUser) GetFriendCount() int64 {
761
+ if x != nil {
762
+ return x.FriendCount
763
+ }
764
+ return 0
765
+ }
766
+
767
+ type FacebookPost struct {
768
+ state protoimpl.MessageState
769
+ sizeCache protoimpl.SizeCache
770
+ unknownFields protoimpl.UnknownFields
771
+
772
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
773
+ Group *FacebookGroup `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
774
+ User *FacebookUser `protobuf:"bytes,3,opt,name=user,proto3" json:"user,omitempty"`
775
+ Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
776
+ Comments *CommentList `protobuf:"bytes,5,opt,name=comments,proto3" json:"comments,omitempty"`
777
+ ContentLink string `protobuf:"bytes,6,opt,name=content_link,json=contentLink,proto3" json:"content_link,omitempty"`
778
+ ContentImages []*FacebookImage `protobuf:"bytes,7,rep,name=content_images,json=contentImages,proto3" json:"content_images,omitempty"`
779
+ ContentImage *FacebookImage `protobuf:"bytes,8,opt,name=content_image,json=contentImage,proto3" json:"content_image,omitempty"`
780
+ CreatedAt int64 `protobuf:"varint,9,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
781
+ ReactionCount int64 `protobuf:"varint,10,opt,name=reaction_count,json=reactionCount,proto3" json:"reaction_count,omitempty"`
782
+ CommentCount int64 `protobuf:"varint,11,opt,name=comment_count,json=commentCount,proto3" json:"comment_count,omitempty"`
783
+ }
784
+
785
+ func (x *FacebookPost) Reset() {
786
+ *x = FacebookPost{}
787
+ if protoimpl.UnsafeEnabled {
788
+ mi := &file_fbcrawl_proto_msgTypes[13]
789
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
790
+ ms.StoreMessageInfo(mi)
791
+ }
792
+ }
793
+
794
+ func (x *FacebookPost) String() string {
795
+ return protoimpl.X.MessageStringOf(x)
796
+ }
797
+
798
+ func (*FacebookPost) ProtoMessage() {}
799
+
800
+ func (x *FacebookPost) ProtoReflect() protoreflect.Message {
801
+ mi := &file_fbcrawl_proto_msgTypes[13]
802
+ if protoimpl.UnsafeEnabled && x != nil {
803
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
804
+ if ms.LoadMessageInfo() == nil {
805
+ ms.StoreMessageInfo(mi)
806
+ }
807
+ return ms
808
+ }
809
+ return mi.MessageOf(x)
810
+ }
811
+
812
+ // Deprecated: Use FacebookPost.ProtoReflect.Descriptor instead.
813
+ func (*FacebookPost) Descriptor() ([]byte, []int) {
814
+ return file_fbcrawl_proto_rawDescGZIP(), []int{13}
815
+ }
816
+
817
+ func (x *FacebookPost) GetId() int64 {
818
+ if x != nil {
819
+ return x.Id
820
+ }
821
+ return 0
822
+ }
823
+
824
+ func (x *FacebookPost) GetGroup() *FacebookGroup {
825
+ if x != nil {
826
+ return x.Group
827
+ }
828
+ return nil
829
+ }
830
+
831
+ func (x *FacebookPost) GetUser() *FacebookUser {
832
+ if x != nil {
833
+ return x.User
834
+ }
835
+ return nil
836
+ }
837
+
838
+ func (x *FacebookPost) GetContent() string {
839
+ if x != nil {
840
+ return x.Content
841
+ }
842
+ return ""
843
+ }
844
+
845
+ func (x *FacebookPost) GetComments() *CommentList {
846
+ if x != nil {
847
+ return x.Comments
848
+ }
849
+ return nil
850
+ }
851
+
852
+ func (x *FacebookPost) GetContentLink() string {
853
+ if x != nil {
854
+ return x.ContentLink
855
+ }
856
+ return ""
857
+ }
858
+
859
+ func (x *FacebookPost) GetContentImages() []*FacebookImage {
860
+ if x != nil {
861
+ return x.ContentImages
862
+ }
863
+ return nil
864
+ }
865
+
866
+ func (x *FacebookPost) GetContentImage() *FacebookImage {
867
+ if x != nil {
868
+ return x.ContentImage
869
+ }
870
+ return nil
871
+ }
872
+
873
+ func (x *FacebookPost) GetCreatedAt() int64 {
874
+ if x != nil {
875
+ return x.CreatedAt
876
+ }
877
+ return 0
878
+ }
879
+
880
+ func (x *FacebookPost) GetReactionCount() int64 {
881
+ if x != nil {
882
+ return x.ReactionCount
883
+ }
884
+ return 0
885
+ }
886
+
887
+ func (x *FacebookPost) GetCommentCount() int64 {
888
+ if x != nil {
889
+ return x.CommentCount
890
+ }
891
+ return 0
892
+ }
893
+
894
+ type CommentList struct {
895
+ state protoimpl.MessageState
896
+ sizeCache protoimpl.SizeCache
897
+ unknownFields protoimpl.UnknownFields
898
+
899
+ Comments []*FacebookComment `protobuf:"bytes,5,rep,name=comments,proto3" json:"comments,omitempty"`
900
+ NextCursor string `protobuf:"bytes,12,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
901
+ }
902
+
903
+ func (x *CommentList) Reset() {
904
+ *x = CommentList{}
905
+ if protoimpl.UnsafeEnabled {
906
+ mi := &file_fbcrawl_proto_msgTypes[14]
907
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
908
+ ms.StoreMessageInfo(mi)
909
+ }
910
+ }
911
+
912
+ func (x *CommentList) String() string {
913
+ return protoimpl.X.MessageStringOf(x)
914
+ }
915
+
916
+ func (*CommentList) ProtoMessage() {}
917
+
918
+ func (x *CommentList) ProtoReflect() protoreflect.Message {
919
+ mi := &file_fbcrawl_proto_msgTypes[14]
920
+ if protoimpl.UnsafeEnabled && x != nil {
921
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
922
+ if ms.LoadMessageInfo() == nil {
923
+ ms.StoreMessageInfo(mi)
924
+ }
925
+ return ms
926
+ }
927
+ return mi.MessageOf(x)
928
+ }
929
+
930
+ // Deprecated: Use CommentList.ProtoReflect.Descriptor instead.
931
+ func (*CommentList) Descriptor() ([]byte, []int) {
932
+ return file_fbcrawl_proto_rawDescGZIP(), []int{14}
933
+ }
934
+
935
+ func (x *CommentList) GetComments() []*FacebookComment {
936
+ if x != nil {
937
+ return x.Comments
938
+ }
939
+ return nil
940
+ }
941
+
942
+ func (x *CommentList) GetNextCursor() string {
943
+ if x != nil {
944
+ return x.NextCursor
945
+ }
946
+ return ""
947
+ }
948
+
949
+ type FacebookImage struct {
950
+ state protoimpl.MessageState
951
+ sizeCache protoimpl.SizeCache
952
+ unknownFields protoimpl.UnknownFields
953
+
954
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
955
+ Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
956
+ }
957
+
958
+ func (x *FacebookImage) Reset() {
959
+ *x = FacebookImage{}
960
+ if protoimpl.UnsafeEnabled {
961
+ mi := &file_fbcrawl_proto_msgTypes[15]
962
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
963
+ ms.StoreMessageInfo(mi)
964
+ }
965
+ }
966
+
967
+ func (x *FacebookImage) String() string {
968
+ return protoimpl.X.MessageStringOf(x)
969
+ }
970
+
971
+ func (*FacebookImage) ProtoMessage() {}
972
+
973
+ func (x *FacebookImage) ProtoReflect() protoreflect.Message {
974
+ mi := &file_fbcrawl_proto_msgTypes[15]
975
+ if protoimpl.UnsafeEnabled && x != nil {
976
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
977
+ if ms.LoadMessageInfo() == nil {
978
+ ms.StoreMessageInfo(mi)
979
+ }
980
+ return ms
981
+ }
982
+ return mi.MessageOf(x)
983
+ }
984
+
985
+ // Deprecated: Use FacebookImage.ProtoReflect.Descriptor instead.
986
+ func (*FacebookImage) Descriptor() ([]byte, []int) {
987
+ return file_fbcrawl_proto_rawDescGZIP(), []int{15}
988
+ }
989
+
990
+ func (x *FacebookImage) GetId() int64 {
991
+ if x != nil {
992
+ return x.Id
993
+ }
994
+ return 0
995
+ }
996
+
997
+ func (x *FacebookImage) GetUrl() string {
998
+ if x != nil {
999
+ return x.Url
1000
+ }
1001
+ return ""
1002
+ }
1003
+
1004
+ type FacebookComment struct {
1005
+ state protoimpl.MessageState
1006
+ sizeCache protoimpl.SizeCache
1007
+ unknownFields protoimpl.UnknownFields
1008
+
1009
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
1010
+ Post *FacebookPost `protobuf:"bytes,2,opt,name=post,proto3" json:"post,omitempty"`
1011
+ User *FacebookUser `protobuf:"bytes,3,opt,name=user,proto3" json:"user,omitempty"`
1012
+ Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
1013
+ CreatedAt int64 `protobuf:"varint,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
1014
+ }
1015
+
1016
+ func (x *FacebookComment) Reset() {
1017
+ *x = FacebookComment{}
1018
+ if protoimpl.UnsafeEnabled {
1019
+ mi := &file_fbcrawl_proto_msgTypes[16]
1020
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1021
+ ms.StoreMessageInfo(mi)
1022
+ }
1023
+ }
1024
+
1025
+ func (x *FacebookComment) String() string {
1026
+ return protoimpl.X.MessageStringOf(x)
1027
+ }
1028
+
1029
+ func (*FacebookComment) ProtoMessage() {}
1030
+
1031
+ func (x *FacebookComment) ProtoReflect() protoreflect.Message {
1032
+ mi := &file_fbcrawl_proto_msgTypes[16]
1033
+ if protoimpl.UnsafeEnabled && x != nil {
1034
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1035
+ if ms.LoadMessageInfo() == nil {
1036
+ ms.StoreMessageInfo(mi)
1037
+ }
1038
+ return ms
1039
+ }
1040
+ return mi.MessageOf(x)
1041
+ }
1042
+
1043
+ // Deprecated: Use FacebookComment.ProtoReflect.Descriptor instead.
1044
+ func (*FacebookComment) Descriptor() ([]byte, []int) {
1045
+ return file_fbcrawl_proto_rawDescGZIP(), []int{16}
1046
+ }
1047
+
1048
+ func (x *FacebookComment) GetId() int64 {
1049
+ if x != nil {
1050
+ return x.Id
1051
+ }
1052
+ return 0
1053
+ }
1054
+
1055
+ func (x *FacebookComment) GetPost() *FacebookPost {
1056
+ if x != nil {
1057
+ return x.Post
1058
+ }
1059
+ return nil
1060
+ }
1061
+
1062
+ func (x *FacebookComment) GetUser() *FacebookUser {
1063
+ if x != nil {
1064
+ return x.User
1065
+ }
1066
+ return nil
1067
+ }
1068
+
1069
+ func (x *FacebookComment) GetContent() string {
1070
+ if x != nil {
1071
+ return x.Content
1072
+ }
1073
+ return ""
1074
+ }
1075
+
1076
+ func (x *FacebookComment) GetCreatedAt() int64 {
1077
+ if x != nil {
1078
+ return x.CreatedAt
1079
+ }
1080
+ return 0
1081
+ }
1082
+
1083
+ type FacebookPostList struct {
1084
+ state protoimpl.MessageState
1085
+ sizeCache protoimpl.SizeCache
1086
+ unknownFields protoimpl.UnknownFields
1087
+
1088
+ Posts []*FacebookPost `protobuf:"bytes,1,rep,name=posts,proto3" json:"posts,omitempty"`
1089
+ NextCursor string `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
1090
+ }
1091
+
1092
+ func (x *FacebookPostList) Reset() {
1093
+ *x = FacebookPostList{}
1094
+ if protoimpl.UnsafeEnabled {
1095
+ mi := &file_fbcrawl_proto_msgTypes[17]
1096
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1097
+ ms.StoreMessageInfo(mi)
1098
+ }
1099
+ }
1100
+
1101
+ func (x *FacebookPostList) String() string {
1102
+ return protoimpl.X.MessageStringOf(x)
1103
+ }
1104
+
1105
+ func (*FacebookPostList) ProtoMessage() {}
1106
+
1107
+ func (x *FacebookPostList) ProtoReflect() protoreflect.Message {
1108
+ mi := &file_fbcrawl_proto_msgTypes[17]
1109
+ if protoimpl.UnsafeEnabled && x != nil {
1110
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1111
+ if ms.LoadMessageInfo() == nil {
1112
+ ms.StoreMessageInfo(mi)
1113
+ }
1114
+ return ms
1115
+ }
1116
+ return mi.MessageOf(x)
1117
+ }
1118
+
1119
+ // Deprecated: Use FacebookPostList.ProtoReflect.Descriptor instead.
1120
+ func (*FacebookPostList) Descriptor() ([]byte, []int) {
1121
+ return file_fbcrawl_proto_rawDescGZIP(), []int{17}
1122
+ }
1123
+
1124
+ func (x *FacebookPostList) GetPosts() []*FacebookPost {
1125
+ if x != nil {
1126
+ return x.Posts
1127
+ }
1128
+ return nil
1129
+ }
1130
+
1131
+ func (x *FacebookPostList) GetNextCursor() string {
1132
+ if x != nil {
1133
+ return x.NextCursor
1134
+ }
1135
+ return ""
1136
+ }
1137
+
1138
+ type FacebookImageList struct {
1139
+ state protoimpl.MessageState
1140
+ sizeCache protoimpl.SizeCache
1141
+ unknownFields protoimpl.UnknownFields
1142
+
1143
+ Images []*FacebookImage `protobuf:"bytes,1,rep,name=images,proto3" json:"images,omitempty"`
1144
+ NextCursor string `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
1145
+ }
1146
+
1147
+ func (x *FacebookImageList) Reset() {
1148
+ *x = FacebookImageList{}
1149
+ if protoimpl.UnsafeEnabled {
1150
+ mi := &file_fbcrawl_proto_msgTypes[18]
1151
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1152
+ ms.StoreMessageInfo(mi)
1153
+ }
1154
+ }
1155
+
1156
+ func (x *FacebookImageList) String() string {
1157
+ return protoimpl.X.MessageStringOf(x)
1158
+ }
1159
+
1160
+ func (*FacebookImageList) ProtoMessage() {}
1161
+
1162
+ func (x *FacebookImageList) ProtoReflect() protoreflect.Message {
1163
+ mi := &file_fbcrawl_proto_msgTypes[18]
1164
+ if protoimpl.UnsafeEnabled && x != nil {
1165
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1166
+ if ms.LoadMessageInfo() == nil {
1167
+ ms.StoreMessageInfo(mi)
1168
+ }
1169
+ return ms
1170
+ }
1171
+ return mi.MessageOf(x)
1172
+ }
1173
+
1174
+ // Deprecated: Use FacebookImageList.ProtoReflect.Descriptor instead.
1175
+ func (*FacebookImageList) Descriptor() ([]byte, []int) {
1176
+ return file_fbcrawl_proto_rawDescGZIP(), []int{18}
1177
+ }
1178
+
1179
+ func (x *FacebookImageList) GetImages() []*FacebookImage {
1180
+ if x != nil {
1181
+ return x.Images
1182
+ }
1183
+ return nil
1184
+ }
1185
+
1186
+ func (x *FacebookImageList) GetNextCursor() string {
1187
+ if x != nil {
1188
+ return x.NextCursor
1189
+ }
1190
+ return ""
1191
+ }
1192
+
1193
+ var File_fbcrawl_proto protoreflect.FileDescriptor
1194
+
1195
+ var file_fbcrawl_proto_rawDesc = []byte{
1196
+ 0x0a, 0x0d, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
1197
+ 0x0d, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x22, 0x07,
1198
+ 0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65,
1199
+ 0x78, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20,
1200
+ 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22, 0x61, 0x0a, 0x0c,
1201
+ 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
1202
+ 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61,
1203
+ 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03,
1204
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x1f,
1205
+ 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20,
1206
+ 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22,
1207
+ 0x29, 0x0a, 0x0d, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
1208
+ 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
1209
+ 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22, 0x33, 0x0a, 0x17, 0x4c, 0x6f,
1210
+ 0x67, 0x69, 0x6e, 0x57, 0x69, 0x74, 0x68, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x52, 0x65,
1211
+ 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73,
1212
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22,
1213
+ 0x70, 0x0a, 0x15, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66,
1214
+ 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
1215
+ 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72,
1216
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78,
1217
+ 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x67, 0x72,
1218
+ 0x6f, 0x75, 0x70, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
1219
+ 0x28, 0x09, 0x52, 0x0d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
1220
+ 0x65, 0x22, 0x64, 0x0a, 0x14, 0x46, 0x65, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
1221
+ 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
1222
+ 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63,
1223
+ 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65,
1224
+ 0x78, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75,
1225
+ 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
1226
+ 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x85, 0x01, 0x0a, 0x15, 0x46, 0x65, 0x74, 0x63,
1227
+ 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
1228
+ 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01,
1229
+ 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
1230
+ 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74,
1231
+ 0x65, 0x78, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x18,
1232
+ 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x12, 0x1f,
1233
+ 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x03, 0x20,
1234
+ 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22,
1235
+ 0xa8, 0x01, 0x0a, 0x10, 0x46, 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f, 0x73, 0x74, 0x52, 0x65, 0x71,
1236
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18,
1237
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f,
1238
+ 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x07, 0x63,
1239
+ 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
1240
+ 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x49,
1241
+ 0x64, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
1242
+ 0x28, 0x03, 0x52, 0x06, 0x70, 0x6f, 0x73, 0x74, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x13, 0x63, 0x6f,
1243
+ 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f,
1244
+ 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74,
1245
+ 0x4e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x87, 0x01, 0x0a, 0x19, 0x46,
1246
+ 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65,
1247
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
1248
+ 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72,
1249
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78,
1250
+ 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x6f,
1251
+ 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x6f, 0x73,
1252
+ 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73,
1253
+ 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75,
1254
+ 0x72, 0x73, 0x6f, 0x72, 0x22, 0x63, 0x0a, 0x14, 0x46, 0x65, 0x74, 0x63, 0x68, 0x49, 0x6d, 0x61,
1255
+ 0x67, 0x65, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07,
1256
+ 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e,
1257
+ 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f,
1258
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x19,
1259
+ 0x0a, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
1260
+ 0x52, 0x07, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x49, 0x64, 0x22, 0x56, 0x0a, 0x0d, 0x46, 0x61, 0x63,
1261
+ 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
1262
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
1263
+ 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21,
1264
+ 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
1265
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e,
1266
+ 0x74, 0x22, 0x71, 0x0a, 0x0c, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65,
1267
+ 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
1268
+ 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
1269
+ 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
1270
+ 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
1271
+ 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
1272
+ 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x43,
1273
+ 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xeb, 0x03, 0x0a, 0x0c, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1274
+ 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
1275
+ 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x32, 0x0a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02,
1276
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63,
1277
+ 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f,
1278
+ 0x75, 0x70, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2f, 0x0a, 0x04, 0x75, 0x73, 0x65,
1279
+ 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
1280
+ 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b,
1281
+ 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
1282
+ 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e,
1283
+ 0x74, 0x65, 0x6e, 0x74, 0x12, 0x36, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73,
1284
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
1285
+ 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69,
1286
+ 0x73, 0x74, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x21, 0x0a, 0x0c,
1287
+ 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x06, 0x20, 0x01,
1288
+ 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12,
1289
+ 0x43, 0x0a, 0x0e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
1290
+ 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
1291
+ 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b,
1292
+ 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d,
1293
+ 0x61, 0x67, 0x65, 0x73, 0x12, 0x41, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f,
1294
+ 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62,
1295
+ 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65,
1296
+ 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65,
1297
+ 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
1298
+ 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65,
1299
+ 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69,
1300
+ 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
1301
+ 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x23, 0x0a,
1302
+ 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0b,
1303
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x75,
1304
+ 0x6e, 0x74, 0x22, 0x6a, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
1305
+ 0x74, 0x12, 0x3a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20,
1306
+ 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
1307
+ 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x43, 0x6f, 0x6d, 0x6d,
1308
+ 0x65, 0x6e, 0x74, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1f, 0x0a,
1309
+ 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x0c, 0x20, 0x01,
1310
+ 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x31,
1311
+ 0x0a, 0x0d, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12,
1312
+ 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
1313
+ 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72,
1314
+ 0x6c, 0x22, 0xbc, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x43, 0x6f,
1315
+ 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
1316
+ 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2f, 0x0a, 0x04, 0x70, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20,
1317
+ 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
1318
+ 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74,
1319
+ 0x52, 0x04, 0x70, 0x6f, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03,
1320
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63,
1321
+ 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65,
1322
+ 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
1323
+ 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
1324
+ 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18,
1325
+ 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74,
1326
+ 0x22, 0x66, 0x0a, 0x10, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74,
1327
+ 0x4c, 0x69, 0x73, 0x74, 0x12, 0x31, 0x0a, 0x05, 0x70, 0x6f, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20,
1328
+ 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
1329
+ 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74,
1330
+ 0x52, 0x05, 0x70, 0x6f, 0x73, 0x74, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f,
1331
+ 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65,
1332
+ 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x6a, 0x0a, 0x11, 0x46, 0x61, 0x63, 0x65,
1333
+ 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x34, 0x0a,
1334
+ 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
1335
+ 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61,
1336
+ 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x06, 0x69, 0x6d, 0x61,
1337
+ 0x67, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73,
1338
+ 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75,
1339
+ 0x72, 0x73, 0x6f, 0x72, 0x32, 0xdb, 0x04, 0x0a, 0x04, 0x47, 0x72, 0x70, 0x63, 0x12, 0x44, 0x0a,
1340
+ 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
1341
+ 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75,
1342
+ 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
1343
+ 0x6c, 0x6c, 0x79, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
1344
+ 0x65, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x0e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75,
1345
+ 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f,
1346
+ 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70,
1347
+ 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62,
1348
+ 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65,
1349
+ 0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x0d, 0x46,
1350
+ 0x65, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x23, 0x2e, 0x66,
1351
+ 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74,
1352
+ 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
1353
+ 0x74, 0x1a, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c,
1354
+ 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x22, 0x00,
1355
+ 0x12, 0x59, 0x0a, 0x0e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65,
1356
+ 0x65, 0x64, 0x12, 0x24, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
1357
+ 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65,
1358
+ 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
1359
+ 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1360
+ 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x09, 0x46,
1361
+ 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
1362
+ 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f,
1363
+ 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72,
1364
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f,
1365
+ 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x12, 0x46, 0x65, 0x74, 0x63,
1366
+ 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x28,
1367
+ 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46,
1368
+ 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65,
1369
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
1370
+ 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1371
+ 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d,
1372
+ 0x46, 0x65, 0x74, 0x63, 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x23, 0x2e,
1373
+ 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65,
1374
+ 0x74, 0x63, 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
1375
+ 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
1376
+ 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65,
1377
+ 0x22, 0x00, 0x42, 0x11, 0x5a, 0x0f, 0x2e, 0x2f, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x2f,
1378
+ 0x70, 0x62, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
1379
+ }
1380
+
1381
+ var (
1382
+ file_fbcrawl_proto_rawDescOnce sync.Once
1383
+ file_fbcrawl_proto_rawDescData = file_fbcrawl_proto_rawDesc
1384
+ )
1385
+
1386
+ func file_fbcrawl_proto_rawDescGZIP() []byte {
1387
+ file_fbcrawl_proto_rawDescOnce.Do(func() {
1388
+ file_fbcrawl_proto_rawDescData = protoimpl.X.CompressGZIP(file_fbcrawl_proto_rawDescData)
1389
+ })
1390
+ return file_fbcrawl_proto_rawDescData
1391
+ }
1392
+
1393
+ var file_fbcrawl_proto_msgTypes = make([]protoimpl.MessageInfo, 19)
1394
+ var file_fbcrawl_proto_goTypes = []interface{}{
1395
+ (*Empty)(nil), // 0: fbcrawl_colly.Empty
1396
+ (*Context)(nil), // 1: fbcrawl_colly.Context
1397
+ (*LoginRequest)(nil), // 2: fbcrawl_colly.LoginRequest
1398
+ (*LoginResponse)(nil), // 3: fbcrawl_colly.LoginResponse
1399
+ (*LoginWithCookiesRequest)(nil), // 4: fbcrawl_colly.LoginWithCookiesRequest
1400
+ (*FetchGroupInfoRequest)(nil), // 5: fbcrawl_colly.FetchGroupInfoRequest
1401
+ (*FetchUserInfoRequest)(nil), // 6: fbcrawl_colly.FetchUserInfoRequest
1402
+ (*FetchGroupFeedRequest)(nil), // 7: fbcrawl_colly.FetchGroupFeedRequest
1403
+ (*FetchPostRequest)(nil), // 8: fbcrawl_colly.FetchPostRequest
1404
+ (*FetchContentImagesRequest)(nil), // 9: fbcrawl_colly.FetchContentImagesRequest
1405
+ (*FetchImageUrlRequest)(nil), // 10: fbcrawl_colly.FetchImageUrlRequest
1406
+ (*FacebookGroup)(nil), // 11: fbcrawl_colly.FacebookGroup
1407
+ (*FacebookUser)(nil), // 12: fbcrawl_colly.FacebookUser
1408
+ (*FacebookPost)(nil), // 13: fbcrawl_colly.FacebookPost
1409
+ (*CommentList)(nil), // 14: fbcrawl_colly.CommentList
1410
+ (*FacebookImage)(nil), // 15: fbcrawl_colly.FacebookImage
1411
+ (*FacebookComment)(nil), // 16: fbcrawl_colly.FacebookComment
1412
+ (*FacebookPostList)(nil), // 17: fbcrawl_colly.FacebookPostList
1413
+ (*FacebookImageList)(nil), // 18: fbcrawl_colly.FacebookImageList
1414
+ }
1415
+ var file_fbcrawl_proto_depIdxs = []int32{
1416
+ 1, // 0: fbcrawl_colly.FetchGroupInfoRequest.context:type_name -> fbcrawl_colly.Context
1417
+ 1, // 1: fbcrawl_colly.FetchUserInfoRequest.context:type_name -> fbcrawl_colly.Context
1418
+ 1, // 2: fbcrawl_colly.FetchGroupFeedRequest.context:type_name -> fbcrawl_colly.Context
1419
+ 1, // 3: fbcrawl_colly.FetchPostRequest.context:type_name -> fbcrawl_colly.Context
1420
+ 1, // 4: fbcrawl_colly.FetchContentImagesRequest.context:type_name -> fbcrawl_colly.Context
1421
+ 1, // 5: fbcrawl_colly.FetchImageUrlRequest.context:type_name -> fbcrawl_colly.Context
1422
+ 11, // 6: fbcrawl_colly.FacebookPost.group:type_name -> fbcrawl_colly.FacebookGroup
1423
+ 12, // 7: fbcrawl_colly.FacebookPost.user:type_name -> fbcrawl_colly.FacebookUser
1424
+ 14, // 8: fbcrawl_colly.FacebookPost.comments:type_name -> fbcrawl_colly.CommentList
1425
+ 15, // 9: fbcrawl_colly.FacebookPost.content_images:type_name -> fbcrawl_colly.FacebookImage
1426
+ 15, // 10: fbcrawl_colly.FacebookPost.content_image:type_name -> fbcrawl_colly.FacebookImage
1427
+ 16, // 11: fbcrawl_colly.CommentList.comments:type_name -> fbcrawl_colly.FacebookComment
1428
+ 13, // 12: fbcrawl_colly.FacebookComment.post:type_name -> fbcrawl_colly.FacebookPost
1429
+ 12, // 13: fbcrawl_colly.FacebookComment.user:type_name -> fbcrawl_colly.FacebookUser
1430
+ 13, // 14: fbcrawl_colly.FacebookPostList.posts:type_name -> fbcrawl_colly.FacebookPost
1431
+ 15, // 15: fbcrawl_colly.FacebookImageList.images:type_name -> fbcrawl_colly.FacebookImage
1432
+ 2, // 16: fbcrawl_colly.Grpc.Login:input_type -> fbcrawl_colly.LoginRequest
1433
+ 5, // 17: fbcrawl_colly.Grpc.FetchGroupInfo:input_type -> fbcrawl_colly.FetchGroupInfoRequest
1434
+ 6, // 18: fbcrawl_colly.Grpc.FetchUserInfo:input_type -> fbcrawl_colly.FetchUserInfoRequest
1435
+ 7, // 19: fbcrawl_colly.Grpc.FetchGroupFeed:input_type -> fbcrawl_colly.FetchGroupFeedRequest
1436
+ 8, // 20: fbcrawl_colly.Grpc.FetchPost:input_type -> fbcrawl_colly.FetchPostRequest
1437
+ 9, // 21: fbcrawl_colly.Grpc.FetchContentImages:input_type -> fbcrawl_colly.FetchContentImagesRequest
1438
+ 10, // 22: fbcrawl_colly.Grpc.FetchImageUrl:input_type -> fbcrawl_colly.FetchImageUrlRequest
1439
+ 3, // 23: fbcrawl_colly.Grpc.Login:output_type -> fbcrawl_colly.LoginResponse
1440
+ 11, // 24: fbcrawl_colly.Grpc.FetchGroupInfo:output_type -> fbcrawl_colly.FacebookGroup
1441
+ 12, // 25: fbcrawl_colly.Grpc.FetchUserInfo:output_type -> fbcrawl_colly.FacebookUser
1442
+ 17, // 26: fbcrawl_colly.Grpc.FetchGroupFeed:output_type -> fbcrawl_colly.FacebookPostList
1443
+ 13, // 27: fbcrawl_colly.Grpc.FetchPost:output_type -> fbcrawl_colly.FacebookPost
1444
+ 18, // 28: fbcrawl_colly.Grpc.FetchContentImages:output_type -> fbcrawl_colly.FacebookImageList
1445
+ 15, // 29: fbcrawl_colly.Grpc.FetchImageUrl:output_type -> fbcrawl_colly.FacebookImage
1446
+ 23, // [23:30] is the sub-list for method output_type
1447
+ 16, // [16:23] is the sub-list for method input_type
1448
+ 16, // [16:16] is the sub-list for extension type_name
1449
+ 16, // [16:16] is the sub-list for extension extendee
1450
+ 0, // [0:16] is the sub-list for field type_name
1451
+ }
1452
+
1453
+ func init() { file_fbcrawl_proto_init() }
1454
+ func file_fbcrawl_proto_init() {
1455
+ if File_fbcrawl_proto != nil {
1456
+ return
1457
+ }
1458
+ if !protoimpl.UnsafeEnabled {
1459
+ file_fbcrawl_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
1460
+ switch v := v.(*Empty); i {
1461
+ case 0:
1462
+ return &v.state
1463
+ case 1:
1464
+ return &v.sizeCache
1465
+ case 2:
1466
+ return &v.unknownFields
1467
+ default:
1468
+ return nil
1469
+ }
1470
+ }
1471
+ file_fbcrawl_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
1472
+ switch v := v.(*Context); i {
1473
+ case 0:
1474
+ return &v.state
1475
+ case 1:
1476
+ return &v.sizeCache
1477
+ case 2:
1478
+ return &v.unknownFields
1479
+ default:
1480
+ return nil
1481
+ }
1482
+ }
1483
+ file_fbcrawl_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
1484
+ switch v := v.(*LoginRequest); i {
1485
+ case 0:
1486
+ return &v.state
1487
+ case 1:
1488
+ return &v.sizeCache
1489
+ case 2:
1490
+ return &v.unknownFields
1491
+ default:
1492
+ return nil
1493
+ }
1494
+ }
1495
+ file_fbcrawl_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
1496
+ switch v := v.(*LoginResponse); i {
1497
+ case 0:
1498
+ return &v.state
1499
+ case 1:
1500
+ return &v.sizeCache
1501
+ case 2:
1502
+ return &v.unknownFields
1503
+ default:
1504
+ return nil
1505
+ }
1506
+ }
1507
+ file_fbcrawl_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
1508
+ switch v := v.(*LoginWithCookiesRequest); i {
1509
+ case 0:
1510
+ return &v.state
1511
+ case 1:
1512
+ return &v.sizeCache
1513
+ case 2:
1514
+ return &v.unknownFields
1515
+ default:
1516
+ return nil
1517
+ }
1518
+ }
1519
+ file_fbcrawl_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
1520
+ switch v := v.(*FetchGroupInfoRequest); i {
1521
+ case 0:
1522
+ return &v.state
1523
+ case 1:
1524
+ return &v.sizeCache
1525
+ case 2:
1526
+ return &v.unknownFields
1527
+ default:
1528
+ return nil
1529
+ }
1530
+ }
1531
+ file_fbcrawl_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
1532
+ switch v := v.(*FetchUserInfoRequest); i {
1533
+ case 0:
1534
+ return &v.state
1535
+ case 1:
1536
+ return &v.sizeCache
1537
+ case 2:
1538
+ return &v.unknownFields
1539
+ default:
1540
+ return nil
1541
+ }
1542
+ }
1543
+ file_fbcrawl_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
1544
+ switch v := v.(*FetchGroupFeedRequest); i {
1545
+ case 0:
1546
+ return &v.state
1547
+ case 1:
1548
+ return &v.sizeCache
1549
+ case 2:
1550
+ return &v.unknownFields
1551
+ default:
1552
+ return nil
1553
+ }
1554
+ }
1555
+ file_fbcrawl_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
1556
+ switch v := v.(*FetchPostRequest); i {
1557
+ case 0:
1558
+ return &v.state
1559
+ case 1:
1560
+ return &v.sizeCache
1561
+ case 2:
1562
+ return &v.unknownFields
1563
+ default:
1564
+ return nil
1565
+ }
1566
+ }
1567
+ file_fbcrawl_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
1568
+ switch v := v.(*FetchContentImagesRequest); i {
1569
+ case 0:
1570
+ return &v.state
1571
+ case 1:
1572
+ return &v.sizeCache
1573
+ case 2:
1574
+ return &v.unknownFields
1575
+ default:
1576
+ return nil
1577
+ }
1578
+ }
1579
+ file_fbcrawl_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
1580
+ switch v := v.(*FetchImageUrlRequest); i {
1581
+ case 0:
1582
+ return &v.state
1583
+ case 1:
1584
+ return &v.sizeCache
1585
+ case 2:
1586
+ return &v.unknownFields
1587
+ default:
1588
+ return nil
1589
+ }
1590
+ }
1591
+ file_fbcrawl_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
1592
+ switch v := v.(*FacebookGroup); i {
1593
+ case 0:
1594
+ return &v.state
1595
+ case 1:
1596
+ return &v.sizeCache
1597
+ case 2:
1598
+ return &v.unknownFields
1599
+ default:
1600
+ return nil
1601
+ }
1602
+ }
1603
+ file_fbcrawl_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
1604
+ switch v := v.(*FacebookUser); i {
1605
+ case 0:
1606
+ return &v.state
1607
+ case 1:
1608
+ return &v.sizeCache
1609
+ case 2:
1610
+ return &v.unknownFields
1611
+ default:
1612
+ return nil
1613
+ }
1614
+ }
1615
+ file_fbcrawl_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
1616
+ switch v := v.(*FacebookPost); i {
1617
+ case 0:
1618
+ return &v.state
1619
+ case 1:
1620
+ return &v.sizeCache
1621
+ case 2:
1622
+ return &v.unknownFields
1623
+ default:
1624
+ return nil
1625
+ }
1626
+ }
1627
+ file_fbcrawl_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
1628
+ switch v := v.(*CommentList); i {
1629
+ case 0:
1630
+ return &v.state
1631
+ case 1:
1632
+ return &v.sizeCache
1633
+ case 2:
1634
+ return &v.unknownFields
1635
+ default:
1636
+ return nil
1637
+ }
1638
+ }
1639
+ file_fbcrawl_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
1640
+ switch v := v.(*FacebookImage); i {
1641
+ case 0:
1642
+ return &v.state
1643
+ case 1:
1644
+ return &v.sizeCache
1645
+ case 2:
1646
+ return &v.unknownFields
1647
+ default:
1648
+ return nil
1649
+ }
1650
+ }
1651
+ file_fbcrawl_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
1652
+ switch v := v.(*FacebookComment); i {
1653
+ case 0:
1654
+ return &v.state
1655
+ case 1:
1656
+ return &v.sizeCache
1657
+ case 2:
1658
+ return &v.unknownFields
1659
+ default:
1660
+ return nil
1661
+ }
1662
+ }
1663
+ file_fbcrawl_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
1664
+ switch v := v.(*FacebookPostList); i {
1665
+ case 0:
1666
+ return &v.state
1667
+ case 1:
1668
+ return &v.sizeCache
1669
+ case 2:
1670
+ return &v.unknownFields
1671
+ default:
1672
+ return nil
1673
+ }
1674
+ }
1675
+ file_fbcrawl_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
1676
+ switch v := v.(*FacebookImageList); i {
1677
+ case 0:
1678
+ return &v.state
1679
+ case 1:
1680
+ return &v.sizeCache
1681
+ case 2:
1682
+ return &v.unknownFields
1683
+ default:
1684
+ return nil
1685
+ }
1686
+ }
1687
+ }
1688
+ type x struct{}
1689
+ out := protoimpl.TypeBuilder{
1690
+ File: protoimpl.DescBuilder{
1691
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1692
+ RawDescriptor: file_fbcrawl_proto_rawDesc,
1693
+ NumEnums: 0,
1694
+ NumMessages: 19,
1695
+ NumExtensions: 0,
1696
+ NumServices: 1,
1697
+ },
1698
+ GoTypes: file_fbcrawl_proto_goTypes,
1699
+ DependencyIndexes: file_fbcrawl_proto_depIdxs,
1700
+ MessageInfos: file_fbcrawl_proto_msgTypes,
1701
+ }.Build()
1702
+ File_fbcrawl_proto = out.File
1703
+ file_fbcrawl_proto_rawDesc = nil
1704
+ file_fbcrawl_proto_goTypes = nil
1705
+ file_fbcrawl_proto_depIdxs = nil
1706
+ }