fbcrawl-colly 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/fbcrawl.proto +10 -15
- data/fbcrawl/fbcolly.go +12 -12
- data/fbcrawl/pb/fbcrawl.pb.go +246 -289
- data/fbcrawl/pb/fbcrawl_grpc.pb.go +0 -108
- data/go.mod +0 -1
- data/go.sum +0 -3
- data/lib/fbcrawl_colly/client.rb +13 -13
- data/lib/fbcrawl_colly/version.rb +1 -1
- data/lib/pb/fbcrawl_pb.rb +10 -12
- data/lib/pb/fbcrawl_services_pb.rb +0 -3
- data/main.go +16 -35
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 138016b11ed36541b96961dbfad0627b5d8bccd26a7638f95e5a8806d0fadf31
|
4
|
+
data.tar.gz: 376c58bc102d6ece54631f0151889d7546af436e9f40f64d994ac44b7110e29e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8580cf0cf980989aab899d4f1185a33dff13743cfedea5487e59f8a990cd23d8c9c4751e18c2192b396c27c4ef5d5e95919404522fc4399b9754c1c0753f63a
|
7
|
+
data.tar.gz: 84b182c8dcfd4a3b5aa7297c6cd3bca485a4f372d65579f03220c32bcf2fcda1d95be02cff4caf5c0bb88a997daa53684b6f25fc8c088be4e7e31406c4f1f4ba
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fbcrawl-colly (1.0
|
4
|
+
fbcrawl-colly (1.1.0)
|
5
5
|
google-protobuf
|
6
6
|
grpc
|
7
7
|
|
@@ -11,7 +11,7 @@ GEM
|
|
11
11
|
google-protobuf (3.13.0)
|
12
12
|
googleapis-common-protos-types (1.0.5)
|
13
13
|
google-protobuf (~> 3.11)
|
14
|
-
grpc (1.
|
14
|
+
grpc (1.31.1)
|
15
15
|
google-protobuf (~> 3.12)
|
16
16
|
googleapis-common-protos-types (~> 1.0)
|
17
17
|
minitest (5.14.1)
|
data/fbcrawl.proto
CHANGED
@@ -5,10 +5,7 @@ option go_package = "./fbcrawl/pb;pb";
|
|
5
5
|
|
6
6
|
service Grpc {
|
7
7
|
// Sends a greeting
|
8
|
-
rpc Init (Empty) returns (Pointer) {}
|
9
|
-
rpc FreeColly (Pointer) returns (Empty) {}
|
10
8
|
rpc Login (LoginRequest) returns (LoginResponse) {}
|
11
|
-
rpc LoginWithCookies (LoginWithCookiesRequest) returns (Empty) {}
|
12
9
|
rpc FetchGroupInfo (FetchGroupInfoRequest) returns (FacebookGroup) {}
|
13
10
|
rpc FetchUserInfo (FetchUserInfoRequest) returns (FacebookUser) {}
|
14
11
|
rpc FetchGroupFeed (FetchGroupFeedRequest) returns (FacebookPostList) {}
|
@@ -21,12 +18,11 @@ message Empty {
|
|
21
18
|
|
22
19
|
}
|
23
20
|
|
24
|
-
message
|
25
|
-
|
21
|
+
message Context {
|
22
|
+
string cookies = 1;
|
26
23
|
}
|
27
24
|
|
28
25
|
message LoginRequest {
|
29
|
-
Pointer pointer = 1;
|
30
26
|
string email = 2;
|
31
27
|
string password = 3;
|
32
28
|
string totp_secret = 4;
|
@@ -37,41 +33,40 @@ message LoginResponse {
|
|
37
33
|
}
|
38
34
|
|
39
35
|
message LoginWithCookiesRequest {
|
40
|
-
|
41
|
-
string cookies = 2;
|
36
|
+
string cookies = 1;
|
42
37
|
}
|
43
38
|
|
44
39
|
message FetchGroupInfoRequest {
|
45
|
-
|
40
|
+
Context context = 1;
|
46
41
|
string group_username = 2;
|
47
42
|
}
|
48
43
|
|
49
44
|
message FetchUserInfoRequest {
|
50
|
-
|
45
|
+
Context context = 1;
|
51
46
|
string username = 2;
|
52
47
|
}
|
53
48
|
|
54
49
|
message FetchGroupFeedRequest {
|
55
|
-
|
50
|
+
Context context = 1;
|
56
51
|
int64 group_id = 2;
|
57
52
|
string next_cursor = 3;
|
58
53
|
}
|
59
54
|
|
60
55
|
message FetchPostRequest {
|
61
|
-
|
56
|
+
Context context = 1;
|
62
57
|
int64 group_id = 2;
|
63
58
|
int64 post_id = 3;
|
64
59
|
string comment_next_cursor = 4;
|
65
60
|
}
|
66
61
|
|
67
62
|
message FetchContentImagesRequest {
|
68
|
-
|
63
|
+
Context context = 1;
|
69
64
|
int64 post_id = 2;
|
70
65
|
string next_cursor = 3;
|
71
66
|
}
|
72
67
|
|
73
68
|
message FetchImageUrlRequest {
|
74
|
-
|
69
|
+
Context context = 1;
|
75
70
|
int64 image_id = 2;
|
76
71
|
}
|
77
72
|
|
@@ -86,7 +81,7 @@ message FacebookUser {
|
|
86
81
|
int64 id = 1;
|
87
82
|
string name = 2;
|
88
83
|
string username = 3;
|
89
|
-
int64 friend_count =4;
|
84
|
+
int64 friend_count = 4;
|
90
85
|
}
|
91
86
|
|
92
87
|
message FacebookPost {
|
data/fbcrawl/fbcolly.go
CHANGED
@@ -7,7 +7,6 @@ import (
|
|
7
7
|
"fmt"
|
8
8
|
"github.com/PuerkitoBio/goquery"
|
9
9
|
"github.com/gocolly/colly/v2"
|
10
|
-
"github.com/gocolly/colly/v2/debug"
|
11
10
|
"github.com/gocolly/colly/v2/extensions"
|
12
11
|
"github.com/gocolly/colly/v2/storage"
|
13
12
|
"github.com/google/logger"
|
@@ -67,7 +66,6 @@ func setupSharedCollector(collector *colly.Collector) error {
|
|
67
66
|
collector.AllowURLRevisit = true
|
68
67
|
collector.OnRequest(sharedOnRequest)
|
69
68
|
collector.OnResponse(sharedOnResponse)
|
70
|
-
collector.SetDebugger(&debug.LogDebugger{})
|
71
69
|
collector.OnError(func(resp *colly.Response, errHttp error) {
|
72
70
|
err = errHttp
|
73
71
|
logger.Error("OnError", err)
|
@@ -413,16 +411,18 @@ func (f *Fbcolly) FetchPost(groupId int64, postId int64, commentNextCursor strin
|
|
413
411
|
logger.Info("comment", commentId)
|
414
412
|
createdAtWhenResult, _ := f.w.Parse(selection.Find("abbr").Text(), time.Now())
|
415
413
|
parsed, _ := url.Parse(selection.Find("h3 > a").AttrOr("href", ""))
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
414
|
+
if len(parsed.Path) > 1 {
|
415
|
+
post.Comments.Comments = append(post.Comments.Comments, &pb.FacebookComment{
|
416
|
+
Id: commentId,
|
417
|
+
Post: &pb.FacebookPost{Id: post.Id},
|
418
|
+
User: &pb.FacebookUser{
|
419
|
+
Username: parsed.Path[1:],
|
420
|
+
Name: selection.Find("h3 > a").Text(),
|
421
|
+
},
|
422
|
+
Content: selection.Find("h3 + div").Text(),
|
423
|
+
CreatedAt: createdAtWhenResult.Time.Unix(),
|
424
|
+
})
|
425
|
+
}
|
426
426
|
})
|
427
427
|
|
428
428
|
}
|
data/fbcrawl/pb/fbcrawl.pb.go
CHANGED
@@ -63,16 +63,16 @@ func (*Empty) Descriptor() ([]byte, []int) {
|
|
63
63
|
return file_fbcrawl_proto_rawDescGZIP(), []int{0}
|
64
64
|
}
|
65
65
|
|
66
|
-
type
|
66
|
+
type Context struct {
|
67
67
|
state protoimpl.MessageState
|
68
68
|
sizeCache protoimpl.SizeCache
|
69
69
|
unknownFields protoimpl.UnknownFields
|
70
70
|
|
71
|
-
|
71
|
+
Cookies string `protobuf:"bytes,1,opt,name=cookies,proto3" json:"cookies,omitempty"`
|
72
72
|
}
|
73
73
|
|
74
|
-
func (x *
|
75
|
-
*x =
|
74
|
+
func (x *Context) Reset() {
|
75
|
+
*x = Context{}
|
76
76
|
if protoimpl.UnsafeEnabled {
|
77
77
|
mi := &file_fbcrawl_proto_msgTypes[1]
|
78
78
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
@@ -80,13 +80,13 @@ func (x *Pointer) Reset() {
|
|
80
80
|
}
|
81
81
|
}
|
82
82
|
|
83
|
-
func (x *
|
83
|
+
func (x *Context) String() string {
|
84
84
|
return protoimpl.X.MessageStringOf(x)
|
85
85
|
}
|
86
86
|
|
87
|
-
func (*
|
87
|
+
func (*Context) ProtoMessage() {}
|
88
88
|
|
89
|
-
func (x *
|
89
|
+
func (x *Context) ProtoReflect() protoreflect.Message {
|
90
90
|
mi := &file_fbcrawl_proto_msgTypes[1]
|
91
91
|
if protoimpl.UnsafeEnabled && x != nil {
|
92
92
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
@@ -98,16 +98,16 @@ func (x *Pointer) ProtoReflect() protoreflect.Message {
|
|
98
98
|
return mi.MessageOf(x)
|
99
99
|
}
|
100
100
|
|
101
|
-
// Deprecated: Use
|
102
|
-
func (*
|
101
|
+
// Deprecated: Use Context.ProtoReflect.Descriptor instead.
|
102
|
+
func (*Context) Descriptor() ([]byte, []int) {
|
103
103
|
return file_fbcrawl_proto_rawDescGZIP(), []int{1}
|
104
104
|
}
|
105
105
|
|
106
|
-
func (x *
|
106
|
+
func (x *Context) GetCookies() string {
|
107
107
|
if x != nil {
|
108
|
-
return x.
|
108
|
+
return x.Cookies
|
109
109
|
}
|
110
|
-
return
|
110
|
+
return ""
|
111
111
|
}
|
112
112
|
|
113
113
|
type LoginRequest struct {
|
@@ -115,10 +115,9 @@ type LoginRequest struct {
|
|
115
115
|
sizeCache protoimpl.SizeCache
|
116
116
|
unknownFields protoimpl.UnknownFields
|
117
117
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
TotpSecret string `protobuf:"bytes,4,opt,name=totp_secret,json=totpSecret,proto3" json:"totp_secret,omitempty"`
|
118
|
+
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
119
|
+
Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
|
120
|
+
TotpSecret string `protobuf:"bytes,4,opt,name=totp_secret,json=totpSecret,proto3" json:"totp_secret,omitempty"`
|
122
121
|
}
|
123
122
|
|
124
123
|
func (x *LoginRequest) Reset() {
|
@@ -153,13 +152,6 @@ func (*LoginRequest) Descriptor() ([]byte, []int) {
|
|
153
152
|
return file_fbcrawl_proto_rawDescGZIP(), []int{2}
|
154
153
|
}
|
155
154
|
|
156
|
-
func (x *LoginRequest) GetPointer() *Pointer {
|
157
|
-
if x != nil {
|
158
|
-
return x.Pointer
|
159
|
-
}
|
160
|
-
return nil
|
161
|
-
}
|
162
|
-
|
163
155
|
func (x *LoginRequest) GetEmail() string {
|
164
156
|
if x != nil {
|
165
157
|
return x.Email
|
@@ -233,8 +225,7 @@ type LoginWithCookiesRequest struct {
|
|
233
225
|
sizeCache protoimpl.SizeCache
|
234
226
|
unknownFields protoimpl.UnknownFields
|
235
227
|
|
236
|
-
|
237
|
-
Cookies string `protobuf:"bytes,2,opt,name=cookies,proto3" json:"cookies,omitempty"`
|
228
|
+
Cookies string `protobuf:"bytes,1,opt,name=cookies,proto3" json:"cookies,omitempty"`
|
238
229
|
}
|
239
230
|
|
240
231
|
func (x *LoginWithCookiesRequest) Reset() {
|
@@ -269,13 +260,6 @@ func (*LoginWithCookiesRequest) Descriptor() ([]byte, []int) {
|
|
269
260
|
return file_fbcrawl_proto_rawDescGZIP(), []int{4}
|
270
261
|
}
|
271
262
|
|
272
|
-
func (x *LoginWithCookiesRequest) GetPointer() *Pointer {
|
273
|
-
if x != nil {
|
274
|
-
return x.Pointer
|
275
|
-
}
|
276
|
-
return nil
|
277
|
-
}
|
278
|
-
|
279
263
|
func (x *LoginWithCookiesRequest) GetCookies() string {
|
280
264
|
if x != nil {
|
281
265
|
return x.Cookies
|
@@ -288,7 +272,7 @@ type FetchGroupInfoRequest struct {
|
|
288
272
|
sizeCache protoimpl.SizeCache
|
289
273
|
unknownFields protoimpl.UnknownFields
|
290
274
|
|
291
|
-
|
275
|
+
Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
|
292
276
|
GroupUsername string `protobuf:"bytes,2,opt,name=group_username,json=groupUsername,proto3" json:"group_username,omitempty"`
|
293
277
|
}
|
294
278
|
|
@@ -324,9 +308,9 @@ func (*FetchGroupInfoRequest) Descriptor() ([]byte, []int) {
|
|
324
308
|
return file_fbcrawl_proto_rawDescGZIP(), []int{5}
|
325
309
|
}
|
326
310
|
|
327
|
-
func (x *FetchGroupInfoRequest)
|
311
|
+
func (x *FetchGroupInfoRequest) GetContext() *Context {
|
328
312
|
if x != nil {
|
329
|
-
return x.
|
313
|
+
return x.Context
|
330
314
|
}
|
331
315
|
return nil
|
332
316
|
}
|
@@ -343,7 +327,7 @@ type FetchUserInfoRequest struct {
|
|
343
327
|
sizeCache protoimpl.SizeCache
|
344
328
|
unknownFields protoimpl.UnknownFields
|
345
329
|
|
346
|
-
|
330
|
+
Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
|
347
331
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
348
332
|
}
|
349
333
|
|
@@ -379,9 +363,9 @@ func (*FetchUserInfoRequest) Descriptor() ([]byte, []int) {
|
|
379
363
|
return file_fbcrawl_proto_rawDescGZIP(), []int{6}
|
380
364
|
}
|
381
365
|
|
382
|
-
func (x *FetchUserInfoRequest)
|
366
|
+
func (x *FetchUserInfoRequest) GetContext() *Context {
|
383
367
|
if x != nil {
|
384
|
-
return x.
|
368
|
+
return x.Context
|
385
369
|
}
|
386
370
|
return nil
|
387
371
|
}
|
@@ -398,7 +382,7 @@ type FetchGroupFeedRequest struct {
|
|
398
382
|
sizeCache protoimpl.SizeCache
|
399
383
|
unknownFields protoimpl.UnknownFields
|
400
384
|
|
401
|
-
|
385
|
+
Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
|
402
386
|
GroupId int64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
|
403
387
|
NextCursor string `protobuf:"bytes,3,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
|
404
388
|
}
|
@@ -435,9 +419,9 @@ func (*FetchGroupFeedRequest) Descriptor() ([]byte, []int) {
|
|
435
419
|
return file_fbcrawl_proto_rawDescGZIP(), []int{7}
|
436
420
|
}
|
437
421
|
|
438
|
-
func (x *FetchGroupFeedRequest)
|
422
|
+
func (x *FetchGroupFeedRequest) GetContext() *Context {
|
439
423
|
if x != nil {
|
440
|
-
return x.
|
424
|
+
return x.Context
|
441
425
|
}
|
442
426
|
return nil
|
443
427
|
}
|
@@ -461,7 +445,7 @@ type FetchPostRequest struct {
|
|
461
445
|
sizeCache protoimpl.SizeCache
|
462
446
|
unknownFields protoimpl.UnknownFields
|
463
447
|
|
464
|
-
|
448
|
+
Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
|
465
449
|
GroupId int64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
|
466
450
|
PostId int64 `protobuf:"varint,3,opt,name=post_id,json=postId,proto3" json:"post_id,omitempty"`
|
467
451
|
CommentNextCursor string `protobuf:"bytes,4,opt,name=comment_next_cursor,json=commentNextCursor,proto3" json:"comment_next_cursor,omitempty"`
|
@@ -499,9 +483,9 @@ func (*FetchPostRequest) Descriptor() ([]byte, []int) {
|
|
499
483
|
return file_fbcrawl_proto_rawDescGZIP(), []int{8}
|
500
484
|
}
|
501
485
|
|
502
|
-
func (x *FetchPostRequest)
|
486
|
+
func (x *FetchPostRequest) GetContext() *Context {
|
503
487
|
if x != nil {
|
504
|
-
return x.
|
488
|
+
return x.Context
|
505
489
|
}
|
506
490
|
return nil
|
507
491
|
}
|
@@ -532,7 +516,7 @@ type FetchContentImagesRequest struct {
|
|
532
516
|
sizeCache protoimpl.SizeCache
|
533
517
|
unknownFields protoimpl.UnknownFields
|
534
518
|
|
535
|
-
|
519
|
+
Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
|
536
520
|
PostId int64 `protobuf:"varint,2,opt,name=post_id,json=postId,proto3" json:"post_id,omitempty"`
|
537
521
|
NextCursor string `protobuf:"bytes,3,opt,name=next_cursor,json=nextCursor,proto3" json:"next_cursor,omitempty"`
|
538
522
|
}
|
@@ -569,9 +553,9 @@ func (*FetchContentImagesRequest) Descriptor() ([]byte, []int) {
|
|
569
553
|
return file_fbcrawl_proto_rawDescGZIP(), []int{9}
|
570
554
|
}
|
571
555
|
|
572
|
-
func (x *FetchContentImagesRequest)
|
556
|
+
func (x *FetchContentImagesRequest) GetContext() *Context {
|
573
557
|
if x != nil {
|
574
|
-
return x.
|
558
|
+
return x.Context
|
575
559
|
}
|
576
560
|
return nil
|
577
561
|
}
|
@@ -595,7 +579,7 @@ type FetchImageUrlRequest struct {
|
|
595
579
|
sizeCache protoimpl.SizeCache
|
596
580
|
unknownFields protoimpl.UnknownFields
|
597
581
|
|
598
|
-
|
582
|
+
Context *Context `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"`
|
599
583
|
ImageId int64 `protobuf:"varint,2,opt,name=image_id,json=imageId,proto3" json:"image_id,omitempty"`
|
600
584
|
}
|
601
585
|
|
@@ -631,9 +615,9 @@ func (*FetchImageUrlRequest) Descriptor() ([]byte, []int) {
|
|
631
615
|
return file_fbcrawl_proto_rawDescGZIP(), []int{10}
|
632
616
|
}
|
633
617
|
|
634
|
-
func (x *FetchImageUrlRequest)
|
618
|
+
func (x *FetchImageUrlRequest) GetContext() *Context {
|
635
619
|
if x != nil {
|
636
|
-
return x.
|
620
|
+
return x.Context
|
637
621
|
}
|
638
622
|
return nil
|
639
623
|
}
|
@@ -1211,206 +1195,187 @@ var File_fbcrawl_proto protoreflect.FileDescriptor
|
|
1211
1195
|
var file_fbcrawl_proto_rawDesc = []byte{
|
1212
1196
|
0x0a, 0x0d, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
1213
1197
|
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,
|
1215
|
-
|
1216
|
-
0x01, 0x28,
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22,
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e,
|
1233
|
-
|
1234
|
-
0x6f,
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22,
|
1243
|
-
|
1244
|
-
0x0a, 0x07,
|
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,
|
1198
|
+
0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65,
|
1199
|
+
0x78, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20,
|
1200
|
+
0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22, 0x61, 0x0a, 0x0c,
|
1201
|
+
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
|
1202
|
+
0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61,
|
1203
|
+
0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03,
|
1204
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x1f,
|
1205
|
+
0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x70, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20,
|
1206
|
+
0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x70, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22,
|
1207
|
+
0x29, 0x0a, 0x0d, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
1208
|
+
0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
|
1209
|
+
0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22, 0x33, 0x0a, 0x17, 0x4c, 0x6f,
|
1210
|
+
0x67, 0x69, 0x6e, 0x57, 0x69, 0x74, 0x68, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x52, 0x65,
|
1211
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73,
|
1212
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x73, 0x22,
|
1213
|
+
0x70, 0x0a, 0x15, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66,
|
1214
|
+
0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
|
1215
|
+
0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72,
|
1216
|
+
0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78,
|
1217
|
+
0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x67, 0x72,
|
1218
|
+
0x6f, 0x75, 0x70, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
1219
|
+
0x28, 0x09, 0x52, 0x0d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
1220
|
+
0x65, 0x22, 0x64, 0x0a, 0x14, 0x46, 0x65, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
|
1221
|
+
0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
|
1222
|
+
0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63,
|
1223
|
+
0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65,
|
1224
|
+
0x78, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75,
|
1225
|
+
0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
|
1226
|
+
0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x85, 0x01, 0x0a, 0x15, 0x46, 0x65, 0x74, 0x63,
|
1227
|
+
0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
1228
|
+
0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01,
|
1279
1229
|
0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
|
1280
|
-
0x6c, 0x79, 0x2e,
|
1281
|
-
|
1282
|
-
0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
|
1283
|
-
0x0a,
|
1230
|
+
0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74,
|
1231
|
+
0x65, 0x78, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x18,
|
1232
|
+
0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x12, 0x1f,
|
1233
|
+
0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x03, 0x20,
|
1234
|
+
0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22,
|
1235
|
+
0xa8, 0x01, 0x0a, 0x10, 0x46, 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f, 0x73, 0x74, 0x52, 0x65, 0x71,
|
1236
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18,
|
1237
|
+
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f,
|
1238
|
+
0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x07, 0x63,
|
1239
|
+
0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
|
1240
|
+
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x49,
|
1241
|
+
0x64, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
|
1242
|
+
0x28, 0x03, 0x52, 0x06, 0x70, 0x6f, 0x73, 0x74, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x13, 0x63, 0x6f,
|
1243
|
+
0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f,
|
1244
|
+
0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74,
|
1245
|
+
0x4e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x87, 0x01, 0x0a, 0x19, 0x46,
|
1246
|
+
0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65,
|
1247
|
+
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
|
1248
|
+
0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x66, 0x62, 0x63, 0x72,
|
1249
|
+
0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78,
|
1250
|
+
0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x6f,
|
1251
|
+
0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x70, 0x6f, 0x73,
|
1252
|
+
0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73,
|
1253
|
+
0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75,
|
1254
|
+
0x72, 0x73, 0x6f, 0x72, 0x22, 0x63, 0x0a, 0x14, 0x46, 0x65, 0x74, 0x63, 0x68, 0x49, 0x6d, 0x61,
|
1255
|
+
0x67, 0x65, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x07,
|
1256
|
+
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e,
|
1257
|
+
0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f,
|
1258
|
+
0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x19,
|
1259
|
+
0x0a, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
|
1260
|
+
0x52, 0x07, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x49, 0x64, 0x22, 0x56, 0x0a, 0x0d, 0x46, 0x61, 0x63,
|
1261
|
+
0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
|
1262
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
|
1263
|
+
0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21,
|
1264
|
+
0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
|
1265
|
+
0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e,
|
1266
|
+
0x74, 0x22, 0x71, 0x0a, 0x0c, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65,
|
1267
|
+
0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
|
1268
|
+
0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
1269
|
+
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
1270
|
+
0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
1271
|
+
0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
|
1272
|
+
0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x43,
|
1273
|
+
0x6f, 0x75, 0x6e, 0x74, 0x22, 0xeb, 0x03, 0x0a, 0x0c, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
|
1274
|
+
0x6b, 0x50, 0x6f, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
1275
|
+
0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x32, 0x0a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02,
|
1276
|
+
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63,
|
1277
|
+
0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f,
|
1278
|
+
0x75, 0x70, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x2f, 0x0a, 0x04, 0x75, 0x73, 0x65,
|
1279
|
+
0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
|
1280
|
+
0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b,
|
1281
|
+
0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
|
1282
|
+
0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e,
|
1283
|
+
0x74, 0x65, 0x6e, 0x74, 0x12, 0x36, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73,
|
1284
|
+
0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
|
1285
|
+
0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69,
|
1286
|
+
0x73, 0x74, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x21, 0x0a, 0x0c,
|
1287
|
+
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0x06, 0x20, 0x01,
|
1288
|
+
0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12,
|
1289
|
+
0x43, 0x0a, 0x0e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
|
1290
|
+
0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77,
|
1291
|
+
0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b,
|
1292
|
+
0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d,
|
1293
|
+
0x61, 0x67, 0x65, 0x73, 0x12, 0x41, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f,
|
1294
|
+
0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62,
|
1295
|
+
0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65,
|
1296
|
+
0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65,
|
1297
|
+
0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
|
1298
|
+
0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65,
|
1299
|
+
0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69,
|
1300
|
+
0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
|
1301
|
+
0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x23, 0x0a,
|
1302
|
+
0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0b,
|
1303
|
+
0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x75,
|
1304
|
+
0x6e, 0x74, 0x22, 0x6a, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
|
1305
|
+
0x74, 0x12, 0x3a, 0x0a, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20,
|
1306
|
+
0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
|
1307
|
+
0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x43, 0x6f, 0x6d, 0x6d,
|
1308
|
+
0x65, 0x6e, 0x74, 0x52, 0x08, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1f, 0x0a,
|
1309
|
+
0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x0c, 0x20, 0x01,
|
1310
|
+
0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x31,
|
1311
|
+
0x0a, 0x0d, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12,
|
1284
1312
|
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
0x6d,
|
1307
|
-
0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e,
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
0x65,
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
0x63, 0x72,
|
1321
|
-
|
1322
|
-
0x65,
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
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,
|
1313
|
+
0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72,
|
1314
|
+
0x6c, 0x22, 0xbc, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x43, 0x6f,
|
1315
|
+
0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
1316
|
+
0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2f, 0x0a, 0x04, 0x70, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20,
|
1317
|
+
0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
|
1318
|
+
0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74,
|
1319
|
+
0x52, 0x04, 0x70, 0x6f, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03,
|
1320
|
+
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63,
|
1321
|
+
0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65,
|
1322
|
+
0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
|
1323
|
+
0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
|
1324
|
+
0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18,
|
1325
|
+
0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74,
|
1326
|
+
0x22, 0x66, 0x0a, 0x10, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74,
|
1327
|
+
0x4c, 0x69, 0x73, 0x74, 0x12, 0x31, 0x0a, 0x05, 0x70, 0x6f, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20,
|
1328
|
+
0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
|
1329
|
+
0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74,
|
1330
|
+
0x52, 0x05, 0x70, 0x6f, 0x73, 0x74, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f,
|
1331
|
+
0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65,
|
1332
|
+
0x78, 0x74, 0x43, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x6a, 0x0a, 0x11, 0x46, 0x61, 0x63, 0x65,
|
1333
|
+
0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x34, 0x0a,
|
1334
|
+
0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e,
|
1335
|
+
0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61,
|
1336
|
+
0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x06, 0x69, 0x6d, 0x61,
|
1337
|
+
0x67, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x63, 0x75, 0x72, 0x73,
|
1338
|
+
0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x43, 0x75,
|
1339
|
+
0x72, 0x73, 0x6f, 0x72, 0x32, 0xdb, 0x04, 0x0a, 0x04, 0x47, 0x72, 0x70, 0x63, 0x12, 0x44, 0x0a,
|
1340
|
+
0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c,
|
1341
|
+
0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
1342
|
+
0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f,
|
1343
|
+
0x6c, 0x6c, 0x79, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
1344
|
+
0x65, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x0e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75,
|
1345
|
+
0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f,
|
1346
|
+
0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
1347
|
+
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62,
|
1348
|
+
0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65,
|
1349
|
+
0x62, 0x6f, 0x6f, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x0d, 0x46,
|
1350
|
+
0x65, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x23, 0x2e, 0x66,
|
1351
|
+
0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74,
|
1352
|
+
0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
1353
|
+
0x74, 0x1a, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c,
|
1354
|
+
0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x22, 0x00,
|
1355
|
+
0x12, 0x59, 0x0a, 0x0e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65,
|
1356
|
+
0x65, 0x64, 0x12, 0x24, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
|
1357
|
+
0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65,
|
1358
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
|
1340
1359
|
0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
|
1341
|
-
0x6b, 0x50, 0x6f, 0x73, 0x74,
|
1342
|
-
|
1360
|
+
0x6b, 0x50, 0x6f, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x09, 0x46,
|
1361
|
+
0x65, 0x74, 0x63, 0x68, 0x50, 0x6f, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
|
1362
|
+
0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x50, 0x6f,
|
1363
|
+
0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x66, 0x62, 0x63, 0x72,
|
1343
1364
|
0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f,
|
1344
|
-
0x6f, 0x6b,
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
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,
|
1365
|
+
0x6f, 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x22, 0x00, 0x12, 0x62, 0x0a, 0x12, 0x46, 0x65, 0x74, 0x63,
|
1366
|
+
0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x28,
|
1367
|
+
0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46,
|
1368
|
+
0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65,
|
1369
|
+
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61,
|
1351
1370
|
0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
|
1352
|
-
0x6b,
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
0x73, 0x74,
|
1357
|
-
0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
|
1371
|
+
0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d,
|
1372
|
+
0x46, 0x65, 0x74, 0x63, 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x23, 0x2e,
|
1373
|
+
0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x79, 0x2e, 0x46, 0x65,
|
1374
|
+
0x74, 0x63, 0x68, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
|
1375
|
+
0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x5f, 0x63, 0x6f, 0x6c,
|
1358
1376
|
0x6c, 0x79, 0x2e, 0x46, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x49, 0x6d, 0x61, 0x67, 0x65,
|
1359
|
-
|
1360
|
-
|
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,
|
1377
|
+
0x22, 0x00, 0x42, 0x11, 0x5a, 0x0f, 0x2e, 0x2f, 0x66, 0x62, 0x63, 0x72, 0x61, 0x77, 0x6c, 0x2f,
|
1378
|
+
0x70, 0x62, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
1414
1379
|
}
|
1415
1380
|
|
1416
1381
|
var (
|
@@ -1428,7 +1393,7 @@ func file_fbcrawl_proto_rawDescGZIP() []byte {
|
|
1428
1393
|
var file_fbcrawl_proto_msgTypes = make([]protoimpl.MessageInfo, 19)
|
1429
1394
|
var file_fbcrawl_proto_goTypes = []interface{}{
|
1430
1395
|
(*Empty)(nil), // 0: fbcrawl_colly.Empty
|
1431
|
-
(*
|
1396
|
+
(*Context)(nil), // 1: fbcrawl_colly.Context
|
1432
1397
|
(*LoginRequest)(nil), // 2: fbcrawl_colly.LoginRequest
|
1433
1398
|
(*LoginResponse)(nil), // 3: fbcrawl_colly.LoginResponse
|
1434
1399
|
(*LoginWithCookiesRequest)(nil), // 4: fbcrawl_colly.LoginWithCookiesRequest
|
@@ -1448,49 +1413,41 @@ var file_fbcrawl_proto_goTypes = []interface{}{
|
|
1448
1413
|
(*FacebookImageList)(nil), // 18: fbcrawl_colly.FacebookImageList
|
1449
1414
|
}
|
1450
1415
|
var file_fbcrawl_proto_depIdxs = []int32{
|
1451
|
-
1, // 0: fbcrawl_colly.
|
1452
|
-
1, // 1: fbcrawl_colly.
|
1453
|
-
1, // 2: fbcrawl_colly.
|
1454
|
-
1, // 3: fbcrawl_colly.
|
1455
|
-
1, // 4: fbcrawl_colly.
|
1456
|
-
1, // 5: fbcrawl_colly.
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
13, // 14: fbcrawl_colly.
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
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
|
1416
|
+
1, // 0: fbcrawl_colly.FetchGroupInfoRequest.context:type_name -> fbcrawl_colly.Context
|
1417
|
+
1, // 1: fbcrawl_colly.FetchUserInfoRequest.context:type_name -> fbcrawl_colly.Context
|
1418
|
+
1, // 2: fbcrawl_colly.FetchGroupFeedRequest.context:type_name -> fbcrawl_colly.Context
|
1419
|
+
1, // 3: fbcrawl_colly.FetchPostRequest.context:type_name -> fbcrawl_colly.Context
|
1420
|
+
1, // 4: fbcrawl_colly.FetchContentImagesRequest.context:type_name -> fbcrawl_colly.Context
|
1421
|
+
1, // 5: fbcrawl_colly.FetchImageUrlRequest.context:type_name -> fbcrawl_colly.Context
|
1422
|
+
11, // 6: fbcrawl_colly.FacebookPost.group:type_name -> fbcrawl_colly.FacebookGroup
|
1423
|
+
12, // 7: fbcrawl_colly.FacebookPost.user:type_name -> fbcrawl_colly.FacebookUser
|
1424
|
+
14, // 8: fbcrawl_colly.FacebookPost.comments:type_name -> fbcrawl_colly.CommentList
|
1425
|
+
15, // 9: fbcrawl_colly.FacebookPost.content_images:type_name -> fbcrawl_colly.FacebookImage
|
1426
|
+
15, // 10: fbcrawl_colly.FacebookPost.content_image:type_name -> fbcrawl_colly.FacebookImage
|
1427
|
+
16, // 11: fbcrawl_colly.CommentList.comments:type_name -> fbcrawl_colly.FacebookComment
|
1428
|
+
13, // 12: fbcrawl_colly.FacebookComment.post:type_name -> fbcrawl_colly.FacebookPost
|
1429
|
+
12, // 13: fbcrawl_colly.FacebookComment.user:type_name -> fbcrawl_colly.FacebookUser
|
1430
|
+
13, // 14: fbcrawl_colly.FacebookPostList.posts:type_name -> fbcrawl_colly.FacebookPost
|
1431
|
+
15, // 15: fbcrawl_colly.FacebookImageList.images:type_name -> fbcrawl_colly.FacebookImage
|
1432
|
+
2, // 16: fbcrawl_colly.Grpc.Login:input_type -> fbcrawl_colly.LoginRequest
|
1433
|
+
5, // 17: fbcrawl_colly.Grpc.FetchGroupInfo:input_type -> fbcrawl_colly.FetchGroupInfoRequest
|
1434
|
+
6, // 18: fbcrawl_colly.Grpc.FetchUserInfo:input_type -> fbcrawl_colly.FetchUserInfoRequest
|
1435
|
+
7, // 19: fbcrawl_colly.Grpc.FetchGroupFeed:input_type -> fbcrawl_colly.FetchGroupFeedRequest
|
1436
|
+
8, // 20: fbcrawl_colly.Grpc.FetchPost:input_type -> fbcrawl_colly.FetchPostRequest
|
1437
|
+
9, // 21: fbcrawl_colly.Grpc.FetchContentImages:input_type -> fbcrawl_colly.FetchContentImagesRequest
|
1438
|
+
10, // 22: fbcrawl_colly.Grpc.FetchImageUrl:input_type -> fbcrawl_colly.FetchImageUrlRequest
|
1439
|
+
3, // 23: fbcrawl_colly.Grpc.Login:output_type -> fbcrawl_colly.LoginResponse
|
1440
|
+
11, // 24: fbcrawl_colly.Grpc.FetchGroupInfo:output_type -> fbcrawl_colly.FacebookGroup
|
1441
|
+
12, // 25: fbcrawl_colly.Grpc.FetchUserInfo:output_type -> fbcrawl_colly.FacebookUser
|
1442
|
+
17, // 26: fbcrawl_colly.Grpc.FetchGroupFeed:output_type -> fbcrawl_colly.FacebookPostList
|
1443
|
+
13, // 27: fbcrawl_colly.Grpc.FetchPost:output_type -> fbcrawl_colly.FacebookPost
|
1444
|
+
18, // 28: fbcrawl_colly.Grpc.FetchContentImages:output_type -> fbcrawl_colly.FacebookImageList
|
1445
|
+
15, // 29: fbcrawl_colly.Grpc.FetchImageUrl:output_type -> fbcrawl_colly.FacebookImage
|
1446
|
+
23, // [23:30] is the sub-list for method output_type
|
1447
|
+
16, // [16:23] is the sub-list for method input_type
|
1448
|
+
16, // [16:16] is the sub-list for extension type_name
|
1449
|
+
16, // [16:16] is the sub-list for extension extendee
|
1450
|
+
0, // [0:16] is the sub-list for field type_name
|
1494
1451
|
}
|
1495
1452
|
|
1496
1453
|
func init() { file_fbcrawl_proto_init() }
|
@@ -1512,7 +1469,7 @@ func file_fbcrawl_proto_init() {
|
|
1512
1469
|
}
|
1513
1470
|
}
|
1514
1471
|
file_fbcrawl_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
1515
|
-
switch v := v.(*
|
1472
|
+
switch v := v.(*Context); i {
|
1516
1473
|
case 0:
|
1517
1474
|
return &v.state
|
1518
1475
|
case 1:
|