fbcrawl-colly 0.2.6 → 1.0.0

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