fbcrawl-colly 0.2.2 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1749 @@
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 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 FetchUserInfoRequest 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
+ Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
348
+ }
349
+
350
+ func (x *FetchUserInfoRequest) Reset() {
351
+ *x = FetchUserInfoRequest{}
352
+ if protoimpl.UnsafeEnabled {
353
+ mi := &file_fbcrawl_proto_msgTypes[6]
354
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
355
+ ms.StoreMessageInfo(mi)
356
+ }
357
+ }
358
+
359
+ func (x *FetchUserInfoRequest) String() string {
360
+ return protoimpl.X.MessageStringOf(x)
361
+ }
362
+
363
+ func (*FetchUserInfoRequest) ProtoMessage() {}
364
+
365
+ func (x *FetchUserInfoRequest) ProtoReflect() protoreflect.Message {
366
+ mi := &file_fbcrawl_proto_msgTypes[6]
367
+ if protoimpl.UnsafeEnabled && x != nil {
368
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
369
+ if ms.LoadMessageInfo() == nil {
370
+ ms.StoreMessageInfo(mi)
371
+ }
372
+ return ms
373
+ }
374
+ return mi.MessageOf(x)
375
+ }
376
+
377
+ // Deprecated: Use FetchUserInfoRequest.ProtoReflect.Descriptor instead.
378
+ func (*FetchUserInfoRequest) Descriptor() ([]byte, []int) {
379
+ return file_fbcrawl_proto_rawDescGZIP(), []int{6}
380
+ }
381
+
382
+ func (x *FetchUserInfoRequest) GetPointer() *Pointer {
383
+ if x != nil {
384
+ return x.Pointer
385
+ }
386
+ return nil
387
+ }
388
+
389
+ func (x *FetchUserInfoRequest) GetUsername() string {
390
+ if x != nil {
391
+ return x.Username
392
+ }
393
+ return ""
394
+ }
395
+
396
+ type FetchGroupFeedRequest struct {
397
+ state protoimpl.MessageState
398
+ sizeCache protoimpl.SizeCache
399
+ unknownFields protoimpl.UnknownFields
400
+
401
+ Pointer *Pointer `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
402
+ GroupId int64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
403
+ NextCursor string `protobuf:"bytes,3,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
404
+ }
405
+
406
+ func (x *FetchGroupFeedRequest) Reset() {
407
+ *x = FetchGroupFeedRequest{}
408
+ if protoimpl.UnsafeEnabled {
409
+ mi := &file_fbcrawl_proto_msgTypes[7]
410
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
411
+ ms.StoreMessageInfo(mi)
412
+ }
413
+ }
414
+
415
+ func (x *FetchGroupFeedRequest) String() string {
416
+ return protoimpl.X.MessageStringOf(x)
417
+ }
418
+
419
+ func (*FetchGroupFeedRequest) ProtoMessage() {}
420
+
421
+ func (x *FetchGroupFeedRequest) ProtoReflect() protoreflect.Message {
422
+ mi := &file_fbcrawl_proto_msgTypes[7]
423
+ if protoimpl.UnsafeEnabled && x != nil {
424
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
425
+ if ms.LoadMessageInfo() == nil {
426
+ ms.StoreMessageInfo(mi)
427
+ }
428
+ return ms
429
+ }
430
+ return mi.MessageOf(x)
431
+ }
432
+
433
+ // Deprecated: Use FetchGroupFeedRequest.ProtoReflect.Descriptor instead.
434
+ func (*FetchGroupFeedRequest) Descriptor() ([]byte, []int) {
435
+ return file_fbcrawl_proto_rawDescGZIP(), []int{7}
436
+ }
437
+
438
+ func (x *FetchGroupFeedRequest) GetPointer() *Pointer {
439
+ if x != nil {
440
+ return x.Pointer
441
+ }
442
+ return nil
443
+ }
444
+
445
+ func (x *FetchGroupFeedRequest) GetGroupId() int64 {
446
+ if x != nil {
447
+ return x.GroupId
448
+ }
449
+ return 0
450
+ }
451
+
452
+ func (x *FetchGroupFeedRequest) GetNextCursor() string {
453
+ if x != nil {
454
+ return x.NextCursor
455
+ }
456
+ return ""
457
+ }
458
+
459
+ type FetchPostRequest struct {
460
+ state protoimpl.MessageState
461
+ sizeCache protoimpl.SizeCache
462
+ unknownFields protoimpl.UnknownFields
463
+
464
+ Pointer *Pointer `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
465
+ GroupId int64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
466
+ PostId int64 `protobuf:"varint,3,opt,name=post_id,json=postId,proto3" json:"post_id,omitempty"`
467
+ CommentNextCursor string `protobuf:"bytes,4,opt,name=comment_next_cursor,json=commentNextCursor,proto3" json:"comment_next_cursor,omitempty"`
468
+ }
469
+
470
+ func (x *FetchPostRequest) Reset() {
471
+ *x = FetchPostRequest{}
472
+ if protoimpl.UnsafeEnabled {
473
+ mi := &file_fbcrawl_proto_msgTypes[8]
474
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
475
+ ms.StoreMessageInfo(mi)
476
+ }
477
+ }
478
+
479
+ func (x *FetchPostRequest) String() string {
480
+ return protoimpl.X.MessageStringOf(x)
481
+ }
482
+
483
+ func (*FetchPostRequest) ProtoMessage() {}
484
+
485
+ func (x *FetchPostRequest) ProtoReflect() protoreflect.Message {
486
+ mi := &file_fbcrawl_proto_msgTypes[8]
487
+ if protoimpl.UnsafeEnabled && x != nil {
488
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
489
+ if ms.LoadMessageInfo() == nil {
490
+ ms.StoreMessageInfo(mi)
491
+ }
492
+ return ms
493
+ }
494
+ return mi.MessageOf(x)
495
+ }
496
+
497
+ // Deprecated: Use FetchPostRequest.ProtoReflect.Descriptor instead.
498
+ func (*FetchPostRequest) Descriptor() ([]byte, []int) {
499
+ return file_fbcrawl_proto_rawDescGZIP(), []int{8}
500
+ }
501
+
502
+ func (x *FetchPostRequest) GetPointer() *Pointer {
503
+ if x != nil {
504
+ return x.Pointer
505
+ }
506
+ return nil
507
+ }
508
+
509
+ func (x *FetchPostRequest) GetGroupId() int64 {
510
+ if x != nil {
511
+ return x.GroupId
512
+ }
513
+ return 0
514
+ }
515
+
516
+ func (x *FetchPostRequest) GetPostId() int64 {
517
+ if x != nil {
518
+ return x.PostId
519
+ }
520
+ return 0
521
+ }
522
+
523
+ func (x *FetchPostRequest) GetCommentNextCursor() string {
524
+ if x != nil {
525
+ return x.CommentNextCursor
526
+ }
527
+ return ""
528
+ }
529
+
530
+ type FetchContentImagesRequest struct {
531
+ state protoimpl.MessageState
532
+ sizeCache protoimpl.SizeCache
533
+ unknownFields protoimpl.UnknownFields
534
+
535
+ Pointer *Pointer `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
536
+ PostId int64 `protobuf:"varint,2,opt,name=post_id,json=postId,proto3" json:"post_id,omitempty"`
537
+ NextCursor string `protobuf:"bytes,3,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
538
+ }
539
+
540
+ func (x *FetchContentImagesRequest) Reset() {
541
+ *x = FetchContentImagesRequest{}
542
+ if protoimpl.UnsafeEnabled {
543
+ mi := &file_fbcrawl_proto_msgTypes[9]
544
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
545
+ ms.StoreMessageInfo(mi)
546
+ }
547
+ }
548
+
549
+ func (x *FetchContentImagesRequest) String() string {
550
+ return protoimpl.X.MessageStringOf(x)
551
+ }
552
+
553
+ func (*FetchContentImagesRequest) ProtoMessage() {}
554
+
555
+ func (x *FetchContentImagesRequest) ProtoReflect() protoreflect.Message {
556
+ mi := &file_fbcrawl_proto_msgTypes[9]
557
+ if protoimpl.UnsafeEnabled && x != nil {
558
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
559
+ if ms.LoadMessageInfo() == nil {
560
+ ms.StoreMessageInfo(mi)
561
+ }
562
+ return ms
563
+ }
564
+ return mi.MessageOf(x)
565
+ }
566
+
567
+ // Deprecated: Use FetchContentImagesRequest.ProtoReflect.Descriptor instead.
568
+ func (*FetchContentImagesRequest) Descriptor() ([]byte, []int) {
569
+ return file_fbcrawl_proto_rawDescGZIP(), []int{9}
570
+ }
571
+
572
+ func (x *FetchContentImagesRequest) GetPointer() *Pointer {
573
+ if x != nil {
574
+ return x.Pointer
575
+ }
576
+ return nil
577
+ }
578
+
579
+ func (x *FetchContentImagesRequest) GetPostId() int64 {
580
+ if x != nil {
581
+ return x.PostId
582
+ }
583
+ return 0
584
+ }
585
+
586
+ func (x *FetchContentImagesRequest) GetNextCursor() string {
587
+ if x != nil {
588
+ return x.NextCursor
589
+ }
590
+ return ""
591
+ }
592
+
593
+ type FetchImageUrlRequest struct {
594
+ state protoimpl.MessageState
595
+ sizeCache protoimpl.SizeCache
596
+ unknownFields protoimpl.UnknownFields
597
+
598
+ Pointer *Pointer `protobuf:"bytes,1,opt,name=pointer,proto3" json:"pointer,omitempty"`
599
+ ImageId int64 `protobuf:"varint,2,opt,name=image_id,json=imageId,proto3" json:"image_id,omitempty"`
600
+ }
601
+
602
+ func (x *FetchImageUrlRequest) Reset() {
603
+ *x = FetchImageUrlRequest{}
604
+ if protoimpl.UnsafeEnabled {
605
+ mi := &file_fbcrawl_proto_msgTypes[10]
606
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
607
+ ms.StoreMessageInfo(mi)
608
+ }
609
+ }
610
+
611
+ func (x *FetchImageUrlRequest) String() string {
612
+ return protoimpl.X.MessageStringOf(x)
613
+ }
614
+
615
+ func (*FetchImageUrlRequest) ProtoMessage() {}
616
+
617
+ func (x *FetchImageUrlRequest) ProtoReflect() protoreflect.Message {
618
+ mi := &file_fbcrawl_proto_msgTypes[10]
619
+ if protoimpl.UnsafeEnabled && x != nil {
620
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
621
+ if ms.LoadMessageInfo() == nil {
622
+ ms.StoreMessageInfo(mi)
623
+ }
624
+ return ms
625
+ }
626
+ return mi.MessageOf(x)
627
+ }
628
+
629
+ // Deprecated: Use FetchImageUrlRequest.ProtoReflect.Descriptor instead.
630
+ func (*FetchImageUrlRequest) Descriptor() ([]byte, []int) {
631
+ return file_fbcrawl_proto_rawDescGZIP(), []int{10}
632
+ }
633
+
634
+ func (x *FetchImageUrlRequest) GetPointer() *Pointer {
635
+ if x != nil {
636
+ return x.Pointer
637
+ }
638
+ return nil
639
+ }
640
+
641
+ func (x *FetchImageUrlRequest) GetImageId() int64 {
642
+ if x != nil {
643
+ return x.ImageId
644
+ }
645
+ return 0
646
+ }
647
+
648
+ // The request message containing the user's name.
649
+ type FacebookGroup struct {
650
+ state protoimpl.MessageState
651
+ sizeCache protoimpl.SizeCache
652
+ unknownFields protoimpl.UnknownFields
653
+
654
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
655
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
656
+ MemberCount int64 `protobuf:"varint,3,opt,name=member_count,json=memberCount,proto3" json:"member_count,omitempty"`
657
+ }
658
+
659
+ func (x *FacebookGroup) Reset() {
660
+ *x = FacebookGroup{}
661
+ if protoimpl.UnsafeEnabled {
662
+ mi := &file_fbcrawl_proto_msgTypes[11]
663
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
664
+ ms.StoreMessageInfo(mi)
665
+ }
666
+ }
667
+
668
+ func (x *FacebookGroup) String() string {
669
+ return protoimpl.X.MessageStringOf(x)
670
+ }
671
+
672
+ func (*FacebookGroup) ProtoMessage() {}
673
+
674
+ func (x *FacebookGroup) ProtoReflect() protoreflect.Message {
675
+ mi := &file_fbcrawl_proto_msgTypes[11]
676
+ if protoimpl.UnsafeEnabled && x != nil {
677
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
678
+ if ms.LoadMessageInfo() == nil {
679
+ ms.StoreMessageInfo(mi)
680
+ }
681
+ return ms
682
+ }
683
+ return mi.MessageOf(x)
684
+ }
685
+
686
+ // Deprecated: Use FacebookGroup.ProtoReflect.Descriptor instead.
687
+ func (*FacebookGroup) Descriptor() ([]byte, []int) {
688
+ return file_fbcrawl_proto_rawDescGZIP(), []int{11}
689
+ }
690
+
691
+ func (x *FacebookGroup) GetId() int64 {
692
+ if x != nil {
693
+ return x.Id
694
+ }
695
+ return 0
696
+ }
697
+
698
+ func (x *FacebookGroup) GetName() string {
699
+ if x != nil {
700
+ return x.Name
701
+ }
702
+ return ""
703
+ }
704
+
705
+ func (x *FacebookGroup) GetMemberCount() int64 {
706
+ if x != nil {
707
+ return x.MemberCount
708
+ }
709
+ return 0
710
+ }
711
+
712
+ type FacebookUser 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
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
719
+ Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`
720
+ FriendCount int64 `protobuf:"varint,4,opt,name=friend_count,json=friendCount,proto3" json:"friend_count,omitempty"`
721
+ }
722
+
723
+ func (x *FacebookUser) Reset() {
724
+ *x = FacebookUser{}
725
+ if protoimpl.UnsafeEnabled {
726
+ mi := &file_fbcrawl_proto_msgTypes[12]
727
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
728
+ ms.StoreMessageInfo(mi)
729
+ }
730
+ }
731
+
732
+ func (x *FacebookUser) String() string {
733
+ return protoimpl.X.MessageStringOf(x)
734
+ }
735
+
736
+ func (*FacebookUser) ProtoMessage() {}
737
+
738
+ func (x *FacebookUser) ProtoReflect() protoreflect.Message {
739
+ mi := &file_fbcrawl_proto_msgTypes[12]
740
+ if protoimpl.UnsafeEnabled && x != nil {
741
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
742
+ if ms.LoadMessageInfo() == nil {
743
+ ms.StoreMessageInfo(mi)
744
+ }
745
+ return ms
746
+ }
747
+ return mi.MessageOf(x)
748
+ }
749
+
750
+ // Deprecated: Use FacebookUser.ProtoReflect.Descriptor instead.
751
+ func (*FacebookUser) Descriptor() ([]byte, []int) {
752
+ return file_fbcrawl_proto_rawDescGZIP(), []int{12}
753
+ }
754
+
755
+ func (x *FacebookUser) GetId() int64 {
756
+ if x != nil {
757
+ return x.Id
758
+ }
759
+ return 0
760
+ }
761
+
762
+ func (x *FacebookUser) GetName() string {
763
+ if x != nil {
764
+ return x.Name
765
+ }
766
+ return ""
767
+ }
768
+
769
+ func (x *FacebookUser) GetUsername() string {
770
+ if x != nil {
771
+ return x.Username
772
+ }
773
+ return ""
774
+ }
775
+
776
+ func (x *FacebookUser) GetFriendCount() int64 {
777
+ if x != nil {
778
+ return x.FriendCount
779
+ }
780
+ return 0
781
+ }
782
+
783
+ type FacebookPost struct {
784
+ state protoimpl.MessageState
785
+ sizeCache protoimpl.SizeCache
786
+ unknownFields protoimpl.UnknownFields
787
+
788
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
789
+ Group *FacebookGroup `protobuf:"bytes,2,opt,name=group,proto3" json:"group,omitempty"`
790
+ User *FacebookUser `protobuf:"bytes,3,opt,name=user,proto3" json:"user,omitempty"`
791
+ Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
792
+ Comments *CommentList `protobuf:"bytes,5,opt,name=comments,proto3" json:"comments,omitempty"`
793
+ ContentLink string `protobuf:"bytes,6,opt,name=content_link,json=contentLink,proto3" json:"content_link,omitempty"`
794
+ ContentImages []*FacebookImage `protobuf:"bytes,7,rep,name=content_images,json=contentImages,proto3" json:"content_images,omitempty"`
795
+ ContentImage *FacebookImage `protobuf:"bytes,8,opt,name=content_image,json=contentImage,proto3" json:"content_image,omitempty"`
796
+ CreatedAt int64 `protobuf:"varint,9,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
797
+ ReactionCount int64 `protobuf:"varint,10,opt,name=reaction_count,json=reactionCount,proto3" json:"reaction_count,omitempty"`
798
+ CommentCount int64 `protobuf:"varint,11,opt,name=comment_count,json=commentCount,proto3" json:"comment_count,omitempty"`
799
+ }
800
+
801
+ func (x *FacebookPost) Reset() {
802
+ *x = FacebookPost{}
803
+ if protoimpl.UnsafeEnabled {
804
+ mi := &file_fbcrawl_proto_msgTypes[13]
805
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
806
+ ms.StoreMessageInfo(mi)
807
+ }
808
+ }
809
+
810
+ func (x *FacebookPost) String() string {
811
+ return protoimpl.X.MessageStringOf(x)
812
+ }
813
+
814
+ func (*FacebookPost) ProtoMessage() {}
815
+
816
+ func (x *FacebookPost) ProtoReflect() protoreflect.Message {
817
+ mi := &file_fbcrawl_proto_msgTypes[13]
818
+ if protoimpl.UnsafeEnabled && x != nil {
819
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
820
+ if ms.LoadMessageInfo() == nil {
821
+ ms.StoreMessageInfo(mi)
822
+ }
823
+ return ms
824
+ }
825
+ return mi.MessageOf(x)
826
+ }
827
+
828
+ // Deprecated: Use FacebookPost.ProtoReflect.Descriptor instead.
829
+ func (*FacebookPost) Descriptor() ([]byte, []int) {
830
+ return file_fbcrawl_proto_rawDescGZIP(), []int{13}
831
+ }
832
+
833
+ func (x *FacebookPost) GetId() int64 {
834
+ if x != nil {
835
+ return x.Id
836
+ }
837
+ return 0
838
+ }
839
+
840
+ func (x *FacebookPost) GetGroup() *FacebookGroup {
841
+ if x != nil {
842
+ return x.Group
843
+ }
844
+ return nil
845
+ }
846
+
847
+ func (x *FacebookPost) GetUser() *FacebookUser {
848
+ if x != nil {
849
+ return x.User
850
+ }
851
+ return nil
852
+ }
853
+
854
+ func (x *FacebookPost) GetContent() string {
855
+ if x != nil {
856
+ return x.Content
857
+ }
858
+ return ""
859
+ }
860
+
861
+ func (x *FacebookPost) GetComments() *CommentList {
862
+ if x != nil {
863
+ return x.Comments
864
+ }
865
+ return nil
866
+ }
867
+
868
+ func (x *FacebookPost) GetContentLink() string {
869
+ if x != nil {
870
+ return x.ContentLink
871
+ }
872
+ return ""
873
+ }
874
+
875
+ func (x *FacebookPost) GetContentImages() []*FacebookImage {
876
+ if x != nil {
877
+ return x.ContentImages
878
+ }
879
+ return nil
880
+ }
881
+
882
+ func (x *FacebookPost) GetContentImage() *FacebookImage {
883
+ if x != nil {
884
+ return x.ContentImage
885
+ }
886
+ return nil
887
+ }
888
+
889
+ func (x *FacebookPost) GetCreatedAt() int64 {
890
+ if x != nil {
891
+ return x.CreatedAt
892
+ }
893
+ return 0
894
+ }
895
+
896
+ func (x *FacebookPost) GetReactionCount() int64 {
897
+ if x != nil {
898
+ return x.ReactionCount
899
+ }
900
+ return 0
901
+ }
902
+
903
+ func (x *FacebookPost) GetCommentCount() int64 {
904
+ if x != nil {
905
+ return x.CommentCount
906
+ }
907
+ return 0
908
+ }
909
+
910
+ type CommentList struct {
911
+ state protoimpl.MessageState
912
+ sizeCache protoimpl.SizeCache
913
+ unknownFields protoimpl.UnknownFields
914
+
915
+ Comments []*FacebookComment `protobuf:"bytes,5,rep,name=comments,proto3" json:"comments,omitempty"`
916
+ NextCursor string `protobuf:"bytes,12,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
917
+ }
918
+
919
+ func (x *CommentList) Reset() {
920
+ *x = CommentList{}
921
+ if protoimpl.UnsafeEnabled {
922
+ mi := &file_fbcrawl_proto_msgTypes[14]
923
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
924
+ ms.StoreMessageInfo(mi)
925
+ }
926
+ }
927
+
928
+ func (x *CommentList) String() string {
929
+ return protoimpl.X.MessageStringOf(x)
930
+ }
931
+
932
+ func (*CommentList) ProtoMessage() {}
933
+
934
+ func (x *CommentList) ProtoReflect() protoreflect.Message {
935
+ mi := &file_fbcrawl_proto_msgTypes[14]
936
+ if protoimpl.UnsafeEnabled && x != nil {
937
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
938
+ if ms.LoadMessageInfo() == nil {
939
+ ms.StoreMessageInfo(mi)
940
+ }
941
+ return ms
942
+ }
943
+ return mi.MessageOf(x)
944
+ }
945
+
946
+ // Deprecated: Use CommentList.ProtoReflect.Descriptor instead.
947
+ func (*CommentList) Descriptor() ([]byte, []int) {
948
+ return file_fbcrawl_proto_rawDescGZIP(), []int{14}
949
+ }
950
+
951
+ func (x *CommentList) GetComments() []*FacebookComment {
952
+ if x != nil {
953
+ return x.Comments
954
+ }
955
+ return nil
956
+ }
957
+
958
+ func (x *CommentList) GetNextCursor() string {
959
+ if x != nil {
960
+ return x.NextCursor
961
+ }
962
+ return ""
963
+ }
964
+
965
+ type FacebookImage struct {
966
+ state protoimpl.MessageState
967
+ sizeCache protoimpl.SizeCache
968
+ unknownFields protoimpl.UnknownFields
969
+
970
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
971
+ Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
972
+ }
973
+
974
+ func (x *FacebookImage) Reset() {
975
+ *x = FacebookImage{}
976
+ if protoimpl.UnsafeEnabled {
977
+ mi := &file_fbcrawl_proto_msgTypes[15]
978
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
979
+ ms.StoreMessageInfo(mi)
980
+ }
981
+ }
982
+
983
+ func (x *FacebookImage) String() string {
984
+ return protoimpl.X.MessageStringOf(x)
985
+ }
986
+
987
+ func (*FacebookImage) ProtoMessage() {}
988
+
989
+ func (x *FacebookImage) ProtoReflect() protoreflect.Message {
990
+ mi := &file_fbcrawl_proto_msgTypes[15]
991
+ if protoimpl.UnsafeEnabled && x != nil {
992
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
993
+ if ms.LoadMessageInfo() == nil {
994
+ ms.StoreMessageInfo(mi)
995
+ }
996
+ return ms
997
+ }
998
+ return mi.MessageOf(x)
999
+ }
1000
+
1001
+ // Deprecated: Use FacebookImage.ProtoReflect.Descriptor instead.
1002
+ func (*FacebookImage) Descriptor() ([]byte, []int) {
1003
+ return file_fbcrawl_proto_rawDescGZIP(), []int{15}
1004
+ }
1005
+
1006
+ func (x *FacebookImage) GetId() int64 {
1007
+ if x != nil {
1008
+ return x.Id
1009
+ }
1010
+ return 0
1011
+ }
1012
+
1013
+ func (x *FacebookImage) GetUrl() string {
1014
+ if x != nil {
1015
+ return x.Url
1016
+ }
1017
+ return ""
1018
+ }
1019
+
1020
+ type FacebookComment struct {
1021
+ state protoimpl.MessageState
1022
+ sizeCache protoimpl.SizeCache
1023
+ unknownFields protoimpl.UnknownFields
1024
+
1025
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
1026
+ Post *FacebookPost `protobuf:"bytes,2,opt,name=post,proto3" json:"post,omitempty"`
1027
+ User *FacebookUser `protobuf:"bytes,3,opt,name=user,proto3" json:"user,omitempty"`
1028
+ Content string `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
1029
+ CreatedAt int64 `protobuf:"varint,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
1030
+ }
1031
+
1032
+ func (x *FacebookComment) Reset() {
1033
+ *x = FacebookComment{}
1034
+ if protoimpl.UnsafeEnabled {
1035
+ mi := &file_fbcrawl_proto_msgTypes[16]
1036
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1037
+ ms.StoreMessageInfo(mi)
1038
+ }
1039
+ }
1040
+
1041
+ func (x *FacebookComment) String() string {
1042
+ return protoimpl.X.MessageStringOf(x)
1043
+ }
1044
+
1045
+ func (*FacebookComment) ProtoMessage() {}
1046
+
1047
+ func (x *FacebookComment) ProtoReflect() protoreflect.Message {
1048
+ mi := &file_fbcrawl_proto_msgTypes[16]
1049
+ if protoimpl.UnsafeEnabled && x != nil {
1050
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1051
+ if ms.LoadMessageInfo() == nil {
1052
+ ms.StoreMessageInfo(mi)
1053
+ }
1054
+ return ms
1055
+ }
1056
+ return mi.MessageOf(x)
1057
+ }
1058
+
1059
+ // Deprecated: Use FacebookComment.ProtoReflect.Descriptor instead.
1060
+ func (*FacebookComment) Descriptor() ([]byte, []int) {
1061
+ return file_fbcrawl_proto_rawDescGZIP(), []int{16}
1062
+ }
1063
+
1064
+ func (x *FacebookComment) GetId() int64 {
1065
+ if x != nil {
1066
+ return x.Id
1067
+ }
1068
+ return 0
1069
+ }
1070
+
1071
+ func (x *FacebookComment) GetPost() *FacebookPost {
1072
+ if x != nil {
1073
+ return x.Post
1074
+ }
1075
+ return nil
1076
+ }
1077
+
1078
+ func (x *FacebookComment) GetUser() *FacebookUser {
1079
+ if x != nil {
1080
+ return x.User
1081
+ }
1082
+ return nil
1083
+ }
1084
+
1085
+ func (x *FacebookComment) GetContent() string {
1086
+ if x != nil {
1087
+ return x.Content
1088
+ }
1089
+ return ""
1090
+ }
1091
+
1092
+ func (x *FacebookComment) GetCreatedAt() int64 {
1093
+ if x != nil {
1094
+ return x.CreatedAt
1095
+ }
1096
+ return 0
1097
+ }
1098
+
1099
+ type FacebookPostList struct {
1100
+ state protoimpl.MessageState
1101
+ sizeCache protoimpl.SizeCache
1102
+ unknownFields protoimpl.UnknownFields
1103
+
1104
+ Posts []*FacebookPost `protobuf:"bytes,1,rep,name=posts,proto3" json:"posts,omitempty"`
1105
+ NextCursor string `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
1106
+ }
1107
+
1108
+ func (x *FacebookPostList) Reset() {
1109
+ *x = FacebookPostList{}
1110
+ if protoimpl.UnsafeEnabled {
1111
+ mi := &file_fbcrawl_proto_msgTypes[17]
1112
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1113
+ ms.StoreMessageInfo(mi)
1114
+ }
1115
+ }
1116
+
1117
+ func (x *FacebookPostList) String() string {
1118
+ return protoimpl.X.MessageStringOf(x)
1119
+ }
1120
+
1121
+ func (*FacebookPostList) ProtoMessage() {}
1122
+
1123
+ func (x *FacebookPostList) ProtoReflect() protoreflect.Message {
1124
+ mi := &file_fbcrawl_proto_msgTypes[17]
1125
+ if protoimpl.UnsafeEnabled && x != nil {
1126
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1127
+ if ms.LoadMessageInfo() == nil {
1128
+ ms.StoreMessageInfo(mi)
1129
+ }
1130
+ return ms
1131
+ }
1132
+ return mi.MessageOf(x)
1133
+ }
1134
+
1135
+ // Deprecated: Use FacebookPostList.ProtoReflect.Descriptor instead.
1136
+ func (*FacebookPostList) Descriptor() ([]byte, []int) {
1137
+ return file_fbcrawl_proto_rawDescGZIP(), []int{17}
1138
+ }
1139
+
1140
+ func (x *FacebookPostList) GetPosts() []*FacebookPost {
1141
+ if x != nil {
1142
+ return x.Posts
1143
+ }
1144
+ return nil
1145
+ }
1146
+
1147
+ func (x *FacebookPostList) GetNextCursor() string {
1148
+ if x != nil {
1149
+ return x.NextCursor
1150
+ }
1151
+ return ""
1152
+ }
1153
+
1154
+ type FacebookImageList struct {
1155
+ state protoimpl.MessageState
1156
+ sizeCache protoimpl.SizeCache
1157
+ unknownFields protoimpl.UnknownFields
1158
+
1159
+ Images []*FacebookImage `protobuf:"bytes,1,rep,name=images,proto3" json:"images,omitempty"`
1160
+ NextCursor string `protobuf:"bytes,2,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
1161
+ }
1162
+
1163
+ func (x *FacebookImageList) Reset() {
1164
+ *x = FacebookImageList{}
1165
+ if protoimpl.UnsafeEnabled {
1166
+ mi := &file_fbcrawl_proto_msgTypes[18]
1167
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1168
+ ms.StoreMessageInfo(mi)
1169
+ }
1170
+ }
1171
+
1172
+ func (x *FacebookImageList) String() string {
1173
+ return protoimpl.X.MessageStringOf(x)
1174
+ }
1175
+
1176
+ func (*FacebookImageList) ProtoMessage() {}
1177
+
1178
+ func (x *FacebookImageList) ProtoReflect() protoreflect.Message {
1179
+ mi := &file_fbcrawl_proto_msgTypes[18]
1180
+ if protoimpl.UnsafeEnabled && x != nil {
1181
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1182
+ if ms.LoadMessageInfo() == nil {
1183
+ ms.StoreMessageInfo(mi)
1184
+ }
1185
+ return ms
1186
+ }
1187
+ return mi.MessageOf(x)
1188
+ }
1189
+
1190
+ // Deprecated: Use FacebookImageList.ProtoReflect.Descriptor instead.
1191
+ func (*FacebookImageList) Descriptor() ([]byte, []int) {
1192
+ return file_fbcrawl_proto_rawDescGZIP(), []int{18}
1193
+ }
1194
+
1195
+ func (x *FacebookImageList) GetImages() []*FacebookImage {
1196
+ if x != nil {
1197
+ return x.Images
1198
+ }
1199
+ return nil
1200
+ }
1201
+
1202
+ func (x *FacebookImageList) GetNextCursor() string {
1203
+ if x != nil {
1204
+ return x.NextCursor
1205
+ }
1206
+ return ""
1207
+ }
1208
+
1209
+ var File_fbcrawl_proto protoreflect.FileDescriptor
1210
+
1211
+ var file_fbcrawl_proto_rawDesc = []byte{
1212
+ 0x0a, 0x0d, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
1213
+ 0x0d, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x22, 0x07,
1214
+ 0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x0a, 0x07, 0x50, 0x6f, 0x69, 0x6e, 0x74,
1215
+ 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20,
1216
+ 0x01, 0x28, 0x03, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0x93, 0x01, 0x0a,
1217
+ 0x0c, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a,
1218
+ 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
1219
+ 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50,
1220
+ 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x12,
1221
+ 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
1222
+ 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
1223
+ 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
1224
+ 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
1225
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x70, 0x53, 0x65, 0x63, 0x72,
1226
+ 0x65, 0x74, 0x22, 0x29, 0x0a, 0x0d, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
1227
+ 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x18, 0x01,
1228
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22, 0x65, 0x0a,
1229
+ 0x17, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x57, 0x69, 0x74, 0x68, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
1230
+ 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x6f, 0x69, 0x6e,
1231
+ 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72,
1232
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65,
1233
+ 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
1234
+ 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f,
1235
+ 0x6b, 0x69, 0x65, 0x73, 0x22, 0x70, 0x0a, 0x15, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f,
1236
+ 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a,
1237
+ 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
1238
+ 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50,
1239
+ 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x12,
1240
+ 0x25, 0x0a, 0x0e, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
1241
+ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x55, 0x73,
1242
+ 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x64, 0x0a, 0x14, 0x46, 0x65, 0x74, 0x63, 0x68, 0x55,
1243
+ 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30,
1244
+ 0x0a, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
1245
+ 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e,
1246
+ 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72,
1247
+ 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
1248
+ 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x85, 0x01, 0x0a,
1249
+ 0x15, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52,
1250
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65,
1251
+ 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
1252
+ 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x52,
1253
+ 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75,
1254
+ 0x70, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75,
1255
+ 0x70, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73,
1256
+ 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75,
1257
+ 0x72, 0x73, 0x6f, 0x72, 0x22, 0xa8, 0x01, 0x0a, 0x10, 0x46, 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f,
1258
+ 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x6f, 0x69,
1259
+ 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63,
1260
+ 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74,
1261
+ 0x65, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x67,
1262
+ 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67,
1263
+ 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x69,
1264
+ 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x6f, 0x73, 0x74, 0x49, 0x64, 0x12,
1265
+ 0x2e, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f,
1266
+ 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x63, 0x6f,
1267
+ 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22,
1268
+ 0x87, 0x01, 0x0a, 0x19, 0x46, 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
1269
+ 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a,
1270
+ 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
1271
+ 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50,
1272
+ 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x12,
1273
+ 0x17, 0x0a, 0x07, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
1274
+ 0x52, 0x06, 0x70, 0x6f, 0x73, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74,
1275
+ 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e,
1276
+ 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x63, 0x0a, 0x14, 0x46, 0x65, 0x74,
1277
+ 0x63, 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
1278
+ 0x74, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
1279
+ 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
1280
+ 0x6c, 0x79, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x52, 0x07, 0x70, 0x6f, 0x69, 0x6e,
1281
+ 0x74, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18,
1282
+ 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x49, 0x64, 0x22, 0x56,
1283
+ 0x0a, 0x0d, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12,
1284
+ 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
1285
+ 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
1286
+ 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x6f,
1287
+ 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65,
1288
+ 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x71, 0x0a, 0x0c, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f,
1289
+ 0x6f, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
1290
+ 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
1291
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73,
1292
+ 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
1293
+ 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64,
1294
+ 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x72,
1295
+ 0x69, 0x65, 0x6e, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xeb, 0x03, 0x0a, 0x0c, 0x46, 0x61,
1296
+ 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
1297
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x32, 0x0a, 0x05, 0x67, 0x72,
1298
+ 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72,
1299
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f,
1300
+ 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2f,
1301
+ 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66,
1302
+ 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63,
1303
+ 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12,
1304
+ 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
1305
+ 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x36, 0x0a, 0x08, 0x63, 0x6f, 0x6d,
1306
+ 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x66, 0x62,
1307
+ 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
1308
+ 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74,
1309
+ 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e,
1310
+ 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
1311
+ 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x43, 0x0a, 0x0e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f,
1312
+ 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66,
1313
+ 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63,
1314
+ 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74,
1315
+ 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x41, 0x0a, 0x0d, 0x63, 0x6f, 0x6e,
1316
+ 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b,
1317
+ 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79,
1318
+ 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0c,
1319
+ 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
1320
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03,
1321
+ 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x72,
1322
+ 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0a, 0x20,
1323
+ 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75,
1324
+ 0x6e, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f,
1325
+ 0x75, 0x6e, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
1326
+ 0x6e, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x6a, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
1327
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x3a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
1328
+ 0x74, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
1329
+ 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1330
+ 0x6b, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
1331
+ 0x74, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f,
1332
+ 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72,
1333
+ 0x73, 0x6f, 0x72, 0x22, 0x31, 0x0a, 0x0d, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49,
1334
+ 0x6d, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
1335
+ 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
1336
+ 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0xbc, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x63, 0x65, 0x62,
1337
+ 0x6f, 0x6f, 0x6b, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
1338
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2f, 0x0a, 0x04, 0x70, 0x6f,
1339
+ 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
1340
+ 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1341
+ 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x52, 0x04, 0x70, 0x6f, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x04, 0x75,
1342
+ 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72,
1343
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f,
1344
+ 0x6f, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
1345
+ 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
1346
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
1347
+ 0x64, 0x5f, 0x61, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61,
1348
+ 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0x66, 0x0a, 0x10, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1349
+ 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x31, 0x0a, 0x05, 0x70, 0x6f, 0x73,
1350
+ 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
1351
+ 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
1352
+ 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x52, 0x05, 0x70, 0x6f, 0x73, 0x74, 0x73, 0x12, 0x1f, 0x0a, 0x0b,
1353
+ 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
1354
+ 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x6a, 0x0a,
1355
+ 0x11, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69,
1356
+ 0x73, 0x74, 0x12, 0x34, 0x0a, 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
1357
+ 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
1358
+ 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65,
1359
+ 0x52, 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74,
1360
+ 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e,
1361
+ 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x32, 0xa4, 0x06, 0x0a, 0x04, 0x47, 0x72,
1362
+ 0x70, 0x63, 0x12, 0x36, 0x0a, 0x04, 0x49, 0x6e, 0x69, 0x74, 0x12, 0x14, 0x2e, 0x66, 0x62, 0x63,
1363
+ 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
1364
+ 0x1a, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79,
1365
+ 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x09, 0x46, 0x72,
1366
+ 0x65, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x79, 0x12, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
1367
+ 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x1a,
1368
+ 0x14, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e,
1369
+ 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
1370
+ 0x12, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79,
1371
+ 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e,
1372
+ 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x4c, 0x6f,
1373
+ 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x52, 0x0a,
1374
+ 0x10, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x57, 0x69, 0x74, 0x68, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
1375
+ 0x73, 0x12, 0x26, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c,
1376
+ 0x79, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x57, 0x69, 0x74, 0x68, 0x43, 0x6f, 0x6f, 0x6b, 0x69,
1377
+ 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x66, 0x62, 0x63, 0x72,
1378
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
1379
+ 0x00, 0x12, 0x56, 0x0a, 0x0e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49,
1380
+ 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
1381
+ 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e,
1382
+ 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72,
1383
+ 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f,
1384
+ 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x0d, 0x46, 0x65, 0x74,
1385
+ 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x23, 0x2e, 0x66, 0x62, 0x63,
1386
+ 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68,
1387
+ 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
1388
+ 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e,
1389
+ 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x22, 0x00, 0x12, 0x59,
1390
+ 0x0a, 0x0e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64,
1391
+ 0x12, 0x24, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79,
1392
+ 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52,
1393
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
1394
+ 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50,
1395
+ 0x6f, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x09, 0x46, 0x65, 0x74,
1396
+ 0x63, 0x68, 0x50, 0x6f, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
1397
+ 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f, 0x73, 0x74,
1398
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
1399
+ 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b,
1400
+ 0x50, 0x6f, 0x73, 0x74, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x12, 0x46, 0x65, 0x74, 0x63, 0x68, 0x43,
1401
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x28, 0x2e, 0x66,
1402
+ 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74,
1403
+ 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x52,
1404
+ 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
1405
+ 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49,
1406
+ 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x46, 0x65,
1407
+ 0x74, 0x63, 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x23, 0x2e, 0x66, 0x62,
1408
+ 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63,
1409
+ 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
1410
+ 0x1a, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79,
1411
+ 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x22, 0x00,
1412
+ 0x42, 0x11, 0x5a, 0x0f, 0x2e, 0x2f, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x2f, 0x70, 0x62,
1413
+ 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
1414
+ }
1415
+
1416
+ var (
1417
+ file_fbcrawl_proto_rawDescOnce sync.Once
1418
+ file_fbcrawl_proto_rawDescData = file_fbcrawl_proto_rawDesc
1419
+ )
1420
+
1421
+ func file_fbcrawl_proto_rawDescGZIP() []byte {
1422
+ file_fbcrawl_proto_rawDescOnce.Do(func() {
1423
+ file_fbcrawl_proto_rawDescData = protoimpl.X.CompressGZIP(file_fbcrawl_proto_rawDescData)
1424
+ })
1425
+ return file_fbcrawl_proto_rawDescData
1426
+ }
1427
+
1428
+ var file_fbcrawl_proto_msgTypes = make([]protoimpl.MessageInfo, 19)
1429
+ var file_fbcrawl_proto_goTypes = []interface{}{
1430
+ (*Empty)(nil), // 0: fbcrawl_colly.Empty
1431
+ (*Pointer)(nil), // 1: fbcrawl_colly.Pointer
1432
+ (*LoginRequest)(nil), // 2: fbcrawl_colly.LoginRequest
1433
+ (*LoginResponse)(nil), // 3: fbcrawl_colly.LoginResponse
1434
+ (*LoginWithCookiesRequest)(nil), // 4: fbcrawl_colly.LoginWithCookiesRequest
1435
+ (*FetchGroupInfoRequest)(nil), // 5: fbcrawl_colly.FetchGroupInfoRequest
1436
+ (*FetchUserInfoRequest)(nil), // 6: fbcrawl_colly.FetchUserInfoRequest
1437
+ (*FetchGroupFeedRequest)(nil), // 7: fbcrawl_colly.FetchGroupFeedRequest
1438
+ (*FetchPostRequest)(nil), // 8: fbcrawl_colly.FetchPostRequest
1439
+ (*FetchContentImagesRequest)(nil), // 9: fbcrawl_colly.FetchContentImagesRequest
1440
+ (*FetchImageUrlRequest)(nil), // 10: fbcrawl_colly.FetchImageUrlRequest
1441
+ (*FacebookGroup)(nil), // 11: fbcrawl_colly.FacebookGroup
1442
+ (*FacebookUser)(nil), // 12: fbcrawl_colly.FacebookUser
1443
+ (*FacebookPost)(nil), // 13: fbcrawl_colly.FacebookPost
1444
+ (*CommentList)(nil), // 14: fbcrawl_colly.CommentList
1445
+ (*FacebookImage)(nil), // 15: fbcrawl_colly.FacebookImage
1446
+ (*FacebookComment)(nil), // 16: fbcrawl_colly.FacebookComment
1447
+ (*FacebookPostList)(nil), // 17: fbcrawl_colly.FacebookPostList
1448
+ (*FacebookImageList)(nil), // 18: fbcrawl_colly.FacebookImageList
1449
+ }
1450
+ var file_fbcrawl_proto_depIdxs = []int32{
1451
+ 1, // 0: fbcrawl_colly.LoginRequest.pointer:type_name -> fbcrawl_colly.Pointer
1452
+ 1, // 1: fbcrawl_colly.LoginWithCookiesRequest.pointer:type_name -> fbcrawl_colly.Pointer
1453
+ 1, // 2: fbcrawl_colly.FetchGroupInfoRequest.pointer:type_name -> fbcrawl_colly.Pointer
1454
+ 1, // 3: fbcrawl_colly.FetchUserInfoRequest.pointer:type_name -> fbcrawl_colly.Pointer
1455
+ 1, // 4: fbcrawl_colly.FetchGroupFeedRequest.pointer:type_name -> fbcrawl_colly.Pointer
1456
+ 1, // 5: fbcrawl_colly.FetchPostRequest.pointer:type_name -> fbcrawl_colly.Pointer
1457
+ 1, // 6: fbcrawl_colly.FetchContentImagesRequest.pointer:type_name -> fbcrawl_colly.Pointer
1458
+ 1, // 7: fbcrawl_colly.FetchImageUrlRequest.pointer:type_name -> fbcrawl_colly.Pointer
1459
+ 11, // 8: fbcrawl_colly.FacebookPost.group:type_name -> fbcrawl_colly.FacebookGroup
1460
+ 12, // 9: fbcrawl_colly.FacebookPost.user:type_name -> fbcrawl_colly.FacebookUser
1461
+ 14, // 10: fbcrawl_colly.FacebookPost.comments:type_name -> fbcrawl_colly.CommentList
1462
+ 15, // 11: fbcrawl_colly.FacebookPost.content_images:type_name -> fbcrawl_colly.FacebookImage
1463
+ 15, // 12: fbcrawl_colly.FacebookPost.content_image:type_name -> fbcrawl_colly.FacebookImage
1464
+ 16, // 13: fbcrawl_colly.CommentList.comments:type_name -> fbcrawl_colly.FacebookComment
1465
+ 13, // 14: fbcrawl_colly.FacebookComment.post:type_name -> fbcrawl_colly.FacebookPost
1466
+ 12, // 15: fbcrawl_colly.FacebookComment.user:type_name -> fbcrawl_colly.FacebookUser
1467
+ 13, // 16: fbcrawl_colly.FacebookPostList.posts:type_name -> fbcrawl_colly.FacebookPost
1468
+ 15, // 17: fbcrawl_colly.FacebookImageList.images:type_name -> fbcrawl_colly.FacebookImage
1469
+ 0, // 18: fbcrawl_colly.Grpc.Init:input_type -> fbcrawl_colly.Empty
1470
+ 1, // 19: fbcrawl_colly.Grpc.FreeColly:input_type -> fbcrawl_colly.Pointer
1471
+ 2, // 20: fbcrawl_colly.Grpc.Login:input_type -> fbcrawl_colly.LoginRequest
1472
+ 4, // 21: fbcrawl_colly.Grpc.LoginWithCookies:input_type -> fbcrawl_colly.LoginWithCookiesRequest
1473
+ 5, // 22: fbcrawl_colly.Grpc.FetchGroupInfo:input_type -> fbcrawl_colly.FetchGroupInfoRequest
1474
+ 6, // 23: fbcrawl_colly.Grpc.FetchUserInfo:input_type -> fbcrawl_colly.FetchUserInfoRequest
1475
+ 7, // 24: fbcrawl_colly.Grpc.FetchGroupFeed:input_type -> fbcrawl_colly.FetchGroupFeedRequest
1476
+ 8, // 25: fbcrawl_colly.Grpc.FetchPost:input_type -> fbcrawl_colly.FetchPostRequest
1477
+ 9, // 26: fbcrawl_colly.Grpc.FetchContentImages:input_type -> fbcrawl_colly.FetchContentImagesRequest
1478
+ 10, // 27: fbcrawl_colly.Grpc.FetchImageUrl:input_type -> fbcrawl_colly.FetchImageUrlRequest
1479
+ 1, // 28: fbcrawl_colly.Grpc.Init:output_type -> fbcrawl_colly.Pointer
1480
+ 0, // 29: fbcrawl_colly.Grpc.FreeColly:output_type -> fbcrawl_colly.Empty
1481
+ 3, // 30: fbcrawl_colly.Grpc.Login:output_type -> fbcrawl_colly.LoginResponse
1482
+ 0, // 31: fbcrawl_colly.Grpc.LoginWithCookies:output_type -> fbcrawl_colly.Empty
1483
+ 11, // 32: fbcrawl_colly.Grpc.FetchGroupInfo:output_type -> fbcrawl_colly.FacebookGroup
1484
+ 12, // 33: fbcrawl_colly.Grpc.FetchUserInfo:output_type -> fbcrawl_colly.FacebookUser
1485
+ 17, // 34: fbcrawl_colly.Grpc.FetchGroupFeed:output_type -> fbcrawl_colly.FacebookPostList
1486
+ 13, // 35: fbcrawl_colly.Grpc.FetchPost:output_type -> fbcrawl_colly.FacebookPost
1487
+ 18, // 36: fbcrawl_colly.Grpc.FetchContentImages:output_type -> fbcrawl_colly.FacebookImageList
1488
+ 15, // 37: fbcrawl_colly.Grpc.FetchImageUrl:output_type -> fbcrawl_colly.FacebookImage
1489
+ 28, // [28:38] is the sub-list for method output_type
1490
+ 18, // [18:28] is the sub-list for method input_type
1491
+ 18, // [18:18] is the sub-list for extension type_name
1492
+ 18, // [18:18] is the sub-list for extension extendee
1493
+ 0, // [0:18] is the sub-list for field type_name
1494
+ }
1495
+
1496
+ func init() { file_fbcrawl_proto_init() }
1497
+ func file_fbcrawl_proto_init() {
1498
+ if File_fbcrawl_proto != nil {
1499
+ return
1500
+ }
1501
+ if !protoimpl.UnsafeEnabled {
1502
+ file_fbcrawl_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
1503
+ switch v := v.(*Empty); i {
1504
+ case 0:
1505
+ return &v.state
1506
+ case 1:
1507
+ return &v.sizeCache
1508
+ case 2:
1509
+ return &v.unknownFields
1510
+ default:
1511
+ return nil
1512
+ }
1513
+ }
1514
+ file_fbcrawl_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
1515
+ switch v := v.(*Pointer); i {
1516
+ case 0:
1517
+ return &v.state
1518
+ case 1:
1519
+ return &v.sizeCache
1520
+ case 2:
1521
+ return &v.unknownFields
1522
+ default:
1523
+ return nil
1524
+ }
1525
+ }
1526
+ file_fbcrawl_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
1527
+ switch v := v.(*LoginRequest); i {
1528
+ case 0:
1529
+ return &v.state
1530
+ case 1:
1531
+ return &v.sizeCache
1532
+ case 2:
1533
+ return &v.unknownFields
1534
+ default:
1535
+ return nil
1536
+ }
1537
+ }
1538
+ file_fbcrawl_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
1539
+ switch v := v.(*LoginResponse); i {
1540
+ case 0:
1541
+ return &v.state
1542
+ case 1:
1543
+ return &v.sizeCache
1544
+ case 2:
1545
+ return &v.unknownFields
1546
+ default:
1547
+ return nil
1548
+ }
1549
+ }
1550
+ file_fbcrawl_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
1551
+ switch v := v.(*LoginWithCookiesRequest); i {
1552
+ case 0:
1553
+ return &v.state
1554
+ case 1:
1555
+ return &v.sizeCache
1556
+ case 2:
1557
+ return &v.unknownFields
1558
+ default:
1559
+ return nil
1560
+ }
1561
+ }
1562
+ file_fbcrawl_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
1563
+ switch v := v.(*FetchGroupInfoRequest); i {
1564
+ case 0:
1565
+ return &v.state
1566
+ case 1:
1567
+ return &v.sizeCache
1568
+ case 2:
1569
+ return &v.unknownFields
1570
+ default:
1571
+ return nil
1572
+ }
1573
+ }
1574
+ file_fbcrawl_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
1575
+ switch v := v.(*FetchUserInfoRequest); i {
1576
+ case 0:
1577
+ return &v.state
1578
+ case 1:
1579
+ return &v.sizeCache
1580
+ case 2:
1581
+ return &v.unknownFields
1582
+ default:
1583
+ return nil
1584
+ }
1585
+ }
1586
+ file_fbcrawl_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
1587
+ switch v := v.(*FetchGroupFeedRequest); i {
1588
+ case 0:
1589
+ return &v.state
1590
+ case 1:
1591
+ return &v.sizeCache
1592
+ case 2:
1593
+ return &v.unknownFields
1594
+ default:
1595
+ return nil
1596
+ }
1597
+ }
1598
+ file_fbcrawl_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
1599
+ switch v := v.(*FetchPostRequest); i {
1600
+ case 0:
1601
+ return &v.state
1602
+ case 1:
1603
+ return &v.sizeCache
1604
+ case 2:
1605
+ return &v.unknownFields
1606
+ default:
1607
+ return nil
1608
+ }
1609
+ }
1610
+ file_fbcrawl_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
1611
+ switch v := v.(*FetchContentImagesRequest); i {
1612
+ case 0:
1613
+ return &v.state
1614
+ case 1:
1615
+ return &v.sizeCache
1616
+ case 2:
1617
+ return &v.unknownFields
1618
+ default:
1619
+ return nil
1620
+ }
1621
+ }
1622
+ file_fbcrawl_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
1623
+ switch v := v.(*FetchImageUrlRequest); i {
1624
+ case 0:
1625
+ return &v.state
1626
+ case 1:
1627
+ return &v.sizeCache
1628
+ case 2:
1629
+ return &v.unknownFields
1630
+ default:
1631
+ return nil
1632
+ }
1633
+ }
1634
+ file_fbcrawl_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
1635
+ switch v := v.(*FacebookGroup); i {
1636
+ case 0:
1637
+ return &v.state
1638
+ case 1:
1639
+ return &v.sizeCache
1640
+ case 2:
1641
+ return &v.unknownFields
1642
+ default:
1643
+ return nil
1644
+ }
1645
+ }
1646
+ file_fbcrawl_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
1647
+ switch v := v.(*FacebookUser); i {
1648
+ case 0:
1649
+ return &v.state
1650
+ case 1:
1651
+ return &v.sizeCache
1652
+ case 2:
1653
+ return &v.unknownFields
1654
+ default:
1655
+ return nil
1656
+ }
1657
+ }
1658
+ file_fbcrawl_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
1659
+ switch v := v.(*FacebookPost); i {
1660
+ case 0:
1661
+ return &v.state
1662
+ case 1:
1663
+ return &v.sizeCache
1664
+ case 2:
1665
+ return &v.unknownFields
1666
+ default:
1667
+ return nil
1668
+ }
1669
+ }
1670
+ file_fbcrawl_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
1671
+ switch v := v.(*CommentList); i {
1672
+ case 0:
1673
+ return &v.state
1674
+ case 1:
1675
+ return &v.sizeCache
1676
+ case 2:
1677
+ return &v.unknownFields
1678
+ default:
1679
+ return nil
1680
+ }
1681
+ }
1682
+ file_fbcrawl_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
1683
+ switch v := v.(*FacebookImage); i {
1684
+ case 0:
1685
+ return &v.state
1686
+ case 1:
1687
+ return &v.sizeCache
1688
+ case 2:
1689
+ return &v.unknownFields
1690
+ default:
1691
+ return nil
1692
+ }
1693
+ }
1694
+ file_fbcrawl_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
1695
+ switch v := v.(*FacebookComment); i {
1696
+ case 0:
1697
+ return &v.state
1698
+ case 1:
1699
+ return &v.sizeCache
1700
+ case 2:
1701
+ return &v.unknownFields
1702
+ default:
1703
+ return nil
1704
+ }
1705
+ }
1706
+ file_fbcrawl_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
1707
+ switch v := v.(*FacebookPostList); i {
1708
+ case 0:
1709
+ return &v.state
1710
+ case 1:
1711
+ return &v.sizeCache
1712
+ case 2:
1713
+ return &v.unknownFields
1714
+ default:
1715
+ return nil
1716
+ }
1717
+ }
1718
+ file_fbcrawl_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
1719
+ switch v := v.(*FacebookImageList); i {
1720
+ case 0:
1721
+ return &v.state
1722
+ case 1:
1723
+ return &v.sizeCache
1724
+ case 2:
1725
+ return &v.unknownFields
1726
+ default:
1727
+ return nil
1728
+ }
1729
+ }
1730
+ }
1731
+ type x struct{}
1732
+ out := protoimpl.TypeBuilder{
1733
+ File: protoimpl.DescBuilder{
1734
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1735
+ RawDescriptor: file_fbcrawl_proto_rawDesc,
1736
+ NumEnums: 0,
1737
+ NumMessages: 19,
1738
+ NumExtensions: 0,
1739
+ NumServices: 1,
1740
+ },
1741
+ GoTypes: file_fbcrawl_proto_goTypes,
1742
+ DependencyIndexes: file_fbcrawl_proto_depIdxs,
1743
+ MessageInfos: file_fbcrawl_proto_msgTypes,
1744
+ }.Build()
1745
+ File_fbcrawl_proto = out.File
1746
+ file_fbcrawl_proto_rawDesc = nil
1747
+ file_fbcrawl_proto_goTypes = nil
1748
+ file_fbcrawl_proto_depIdxs = nil
1749
+ }