-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
822 lines (704 loc) · 30.5 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
package main
import (
"context"
"encoding/json"
"fmt"
"net"
"net/http"
"net/url"
"os"
"os/signal"
"path"
"strings"
"syscall"
"time"
"github.com/google/uuid"
flag "github.com/spf13/pflag"
"github.com/spf13/viper"
c3client "github.com/vocdoni/census3/apiclient"
c3web3 "github.com/vocdoni/census3/helpers/web3"
"github.com/vocdoni/vote-frame/airstack"
"github.com/vocdoni/vote-frame/communityhub"
"github.com/vocdoni/vote-frame/discover"
"github.com/vocdoni/vote-frame/farcasterapi"
"github.com/vocdoni/vote-frame/farcasterapi/hub"
"github.com/vocdoni/vote-frame/farcasterapi/neynar"
"github.com/vocdoni/vote-frame/features"
"github.com/vocdoni/vote-frame/helpers"
"github.com/vocdoni/vote-frame/mongo"
"github.com/vocdoni/vote-frame/notifications"
"github.com/vocdoni/vote-frame/reputation"
urlapi "go.vocdoni.io/dvote/api"
"go.vocdoni.io/dvote/httprouter"
"go.vocdoni.io/dvote/httprouter/apirest"
"go.vocdoni.io/dvote/log"
)
var (
serverURL = "http://localhost:8888"
explorerURL = "https://dev.explorer.vote"
onvoteURL = "https://dev.onvote.app"
maxDirectMessages = uint64(10000)
)
func main() {
flag.String("server", serverURL, "The full URL of the server (http or https)")
flag.Bool("tlsDomain", false, "Should a TLS certificate be fetched from letsencrypt for the domain? (requires port 443)")
flag.String("tlsDirCert", "./tlscert", "The directory to use to store the TLS certificate")
flag.String("listenHost", "0.0.0.0", "The host to listen on")
flag.Int("listenPort", 8888, "The port to listen on")
flag.String("dataDir", "", "The directory to use for the data")
flag.String("apiEndpoint", "https://api-dev.vocdoni.net/v2", "The Vocdoni API endpoint to use")
flag.String("apiToken", "", "The Vocdoni Bearer API token to use for the apiEndpoint (if not set, it will be generated)")
flag.String("vocdoniPrivKey", "", "The Vocdoni private key to use for orchestrating the election (hex)")
flag.String("censusFromFile", "farcaster_census.json", "Take census details from JSON file")
flag.String("logLevel", "info", "The log level to use")
flag.String("web", "./webapp/dist", "The path where the static web app is located")
flag.String("explorerURL", explorerURL, "The full URL of the explorer (http or https)")
flag.String("onvoteURL", onvoteURL, "The full URL of the onvote.app application (http or https)")
flag.String("mongoURL", "", "The URL of the MongoDB server")
flag.String("mongoDB", "voteframe", "The name of the MongoDB database")
flag.String("adminToken", "", "The admin token to use for the API (if not set, it will be generated)")
flag.Uint64("adminFID", 7548, "The FID of the admin farcaster account with superuser powers")
flag.Int("pollSize", 0, "The maximum votes allowed per poll (the more votes, the more expensive) (0 for default)")
flag.Int("pprofPort", 0, "The port to use for the pprof http endpoints")
flag.String("web3",
"https://rpc.degen.tips,https://eth.llamarpc.com,https://rpc.ankr.com/eth,https://ethereum-rpc.publicnode.com,https://mainnet.optimism.io,https://optimism.llamarpc.com,https://optimism-mainnet.public.blastapi.io,https://rpc.ankr.com/optimism",
"Web3 RPCs")
flag.Bool("indexer", false, "Enable the indexer to autodiscover users and their profiles")
// census3 flags
flag.String("census3APIEndpoint", "https://census3-stg.vocdoni.net/api", "The Census3 API endpoint to use")
// community hub flags
flag.String("chains", "base-sep,degen-dev", "The chains to use for the community hub")
flag.String("communityHubChainsConfig", "./chains_config.json", "The JSON configuration file for the community hub networks")
flag.String("communityHubAdminPrivKey", "", "The private key of a wallet admin of the CommunityHub contract in hex format")
// bot flags
// DISCLAMER: Currently the bot needs a HUB with write permissions to work.
// It also needs a FID to impersonate to it and its private key to sign the
// casts. Alternatively, it can be used with a Neynar API, but due the last
// issues with the Neynar API, it is not recommended.
flag.Uint64("botFid", 0, "FID to be used for the bot")
flag.String("botPrivKey", "", "The bot private key to use for signing the vote (hex)")
flag.String("botHubEndpoint", "", "The hub endpoint to use")
flag.String("neynarAPIKey", "", "neynar API key")
flag.String("neynarSignerUUID", "", "neynar signer UUID")
flag.String("neynarWebhookSecret", "", "neynar Webhook shared secret")
// Airstack flags
flag.String("airstackAPIEndpoint", "https://api.airstack.xyz/gql", "The Airstack API endpoint to use")
flag.String("airstackAPIKey", "", "The Airstack API key to use")
flag.String("airstackBlockchains", "ethereum,base,zora,degen", "Supported Airstack networks")
flag.Int("airstackMaxHolders", 10000, "The maximum number of holders to be retrieved from the Airstack API")
flag.String("airstackSupportAPIEndpoint", "", "Airstack support API endpoint")
flag.String("airstackTokenWhitelist", "", "Airstack token whitelist")
// Limited features flags
flag.Int32("featureNotificationReputation", 15, "Reputation threshold to enable the notification feature")
flag.Int32("maxDirectMessages", 10000, "The maximum number of direct messages that any user can send. It will be scaled based on the reputation of the user.")
flag.Duration("reputationUpdateInterval", time.Hour*6, "The interval to update the reputation of the users")
flag.Int("concurrentReputationUpdates", 5, "The number of concurrent reputation updates")
// Parse the command line flags
flag.Parse()
// Initialize Viper
viper.SetEnvPrefix("VOCDONI")
if err := viper.BindPFlags(flag.CommandLine); err != nil {
panic(err)
}
viper.AutomaticEnv()
// Using Viper to access the variables
server := viper.GetString("server")
tlsDomain := viper.GetBool("tlsDomain")
tlsDirCert := viper.GetString("tlsDirCert")
host := viper.GetString("listenHost")
port := viper.GetInt("listenPort")
dataDir := viper.GetString("dataDir")
apiEndpoint := viper.GetString("apiEndpoint")
apiToken := viper.GetString("apiToken")
adminFID := viper.GetUint64("adminFID")
vocdoniPrivKey := viper.GetString("vocdoniPrivKey")
censusFromFile := viper.GetString("censusFromFile")
logLevel := viper.GetString("logLevel")
webAppDir := viper.GetString("web")
explorerURL = viper.GetString("explorerURL")
onvoteURL = viper.GetString("onvoteURL")
mongoURL := viper.GetString("mongoURL")
mongoDB := viper.GetString("mongoDB")
adminToken := viper.GetString("adminToken")
pollSize := viper.GetInt("pollSize")
pprofPort := viper.GetInt("pprofPort")
web3endpointStr := viper.GetString("web3")
web3endpoint := strings.Split(web3endpointStr, ",")
neynarAPIKey := viper.GetString("neynarAPIKey")
indexer := viper.GetBool("indexer")
// census3 vars
census3APIEndpoint := viper.GetString("census3APIEndpoint")
// community hub vars
// flag.String("chains", "base-sep,degen-dev", "The chains to use for the community hub")
availableChains := strings.Split(viper.GetString("chains"), ",")
communityHubChainsConfigPath := viper.GetString("communityHubChainsConfig")
communityHubAdminPrivKey := viper.GetString("communityHubAdminPrivKey")
// bot vars
botFid := viper.GetUint64("botFid")
botPrivKey := viper.GetString("botPrivKey")
botHubEndpoint := viper.GetString("botHubEndpoint")
neynarSignerUUID := viper.GetString("neynarSignerUUID")
neynarWebhookSecret := viper.GetString("neynarWebhookSecret")
// airstack vars
airstackEndpoint := viper.GetString("airstackAPIEndpoint")
airstackKey := viper.GetString("airstackAPIKey")
airstackBlockchains := viper.GetString("airstackBlockchains")
airstackMaxHolders := uint32(viper.GetInt("airstackMaxHolders"))
airstackSupportAPIEndpoint := viper.GetString("airstackSupportAPIEndpoint")
airstackTokenWhitelist := viper.GetString("airstackTokenWhitelist")
// limited features vars
featureNotificationReputation := uint32(viper.GetInt32("featureNotificationReputation"))
maxDirectMessages = viper.GetUint64("maxDirectMessages")
reputationUpdateInterval := viper.GetDuration("reputationUpdateInterval")
concurrentReputationUpdates := viper.GetInt("concurrentReputationUpdates")
// overwrite features thesholds
if featureNotificationReputation > 0 {
features.SetReputation(features.NOTIFY_USERS, featureNotificationReputation)
}
if adminToken == "" {
adminToken = uuid.New().String()
fmt.Printf("generated admin token for internal API: %s\n", adminToken)
}
if apiToken == "" {
apiToken = uuid.New().String()
fmt.Printf("generated vocdoni api token: %s\n", apiToken)
}
log.Init(logLevel, "stdout", nil)
log.Infow("configuration loaded",
"server", server,
"tlsDomain", tlsDomain,
"tlsDirCert", tlsDirCert,
"host", host,
"port", port,
"dataDir", dataDir,
"apiEndpoint", apiEndpoint,
"censusFromFile", censusFromFile,
"logLevel", logLevel,
"webAppDir", webAppDir,
"explorerURL", explorerURL,
"onvoteURL", onvoteURL,
"mongoURL", mongoURL,
"mongoDB", mongoDB,
"pollSize", pollSize,
"pprofPort", pprofPort,
"communityHubChainsConfig", communityHubChainsConfigPath,
"census3APIEndpoint", census3APIEndpoint,
"communityHubAdmin", communityHubAdminPrivKey != "",
"botFid", botFid,
"botHubEndpoint", botHubEndpoint,
"neynarSignerUUID", neynarSignerUUID,
"web3endpoint", web3endpoint,
"indexer", indexer,
"apiToken", apiToken,
"adminFID", adminFID,
"airstackAPIEndpoint", airstackEndpoint,
"airstackAPIKey", airstackKey,
"airstackBlockchains", airstackBlockchains,
"airstackMaxHolders", airstackMaxHolders,
"airstackSupportAPIEndpoint", airstackSupportAPIEndpoint,
"airstackTokenWhitelist", airstackTokenWhitelist,
)
// Start the pprof http endpoints
if pprofPort > 0 {
ln, err := net.Listen("tcp", fmt.Sprintf("0.0.0.0:%d", pprofPort))
if err != nil {
log.Fatal(err)
}
go func() {
log.Warnf("started pprof http endpoints at http://%s/debug/pprof", ln.Addr())
log.Error(http.Serve(ln, nil))
}()
}
// check the server URL is http or https and extract the domain
if !strings.HasPrefix(server, "http://") && !strings.HasPrefix(server, "https://") {
log.Fatal("server URL must start with http:// or https://")
}
serverURL = server
domain := strings.Split(serverURL, "/")[2]
log.Infow("server URL", "URL", serverURL, "domain", domain)
// Set the maximum election size based on the API endpoint (try to guess the environment)
if pollSize > 0 {
maxElectionSize = pollSize
} else {
if strings.Contains(apiEndpoint, "stg") {
maxElectionSize = stageMaxElectionSize
} else {
if strings.Contains(apiEndpoint, "dev") {
maxElectionSize = devMaxElectionSize
}
}
}
// Create or load the census
censusInfo := &CensusInfo{}
if censusFromFile != "" {
if err := censusInfo.FromFile(censusFromFile); err != nil {
log.Fatal(err)
}
} else {
log.Fatal("censusFromFile is required")
}
if censusInfo.Url == "" || len(censusInfo.Root) == 0 || censusInfo.Size == 0 {
log.Fatal("censusFromFile must contain a valid URL and root hash")
}
// Create the MongoDB connection
db, err := mongo.New(mongoURL, mongoDB)
if err != nil {
log.Fatal(err)
}
// Start the discovery user profile background process
mainCtx, mainCtxCancel := context.WithCancel(context.Background())
defer mainCtxCancel()
// Create a Web3 pool
web3pool, err := c3web3.NewWeb3Pool()
if err != nil {
log.Fatal(err)
}
for _, endpoint := range web3endpoint {
if err := web3pool.AddEndpoint(endpoint); err != nil {
log.Warnw("failed to add web3 endpoint", "endpoint", endpoint, "error", err)
}
}
// Load chains config
chainsConfs, err := helpers.LoadChainsConfig(communityHubChainsConfigPath, availableChains)
if err != nil {
log.Fatalf("failed to load community hub chains config: %w", err)
}
for _, conf := range chainsConfs {
for _, endpoint := range conf.Endpoints {
if err := web3pool.AddEndpoint(endpoint); err != nil {
log.Warnw("failed to add web3 endpoint", "endpoint", endpoint, "error", err)
}
}
}
log.Infow("chain info loaded", "info", chainsConfs, "endpoints", web3pool.String())
// create census3 client
c3url, err := url.Parse(census3APIEndpoint)
if err != nil {
log.Fatal(err)
}
census3Client, err := c3client.NewHTTPclient(c3url, nil)
if err != nil {
log.Fatal(err)
}
// Create the Farcaster API client
neynarcli, err := neynar.NewNeynarAPI(neynarAPIKey, web3pool)
if err != nil {
log.Fatal(err)
}
// Start the discovery user profile background process
discover.NewFarcasterDiscover(db, neynarcli).Run(mainCtx, indexer)
// Create the community hub service
var comHub *communityhub.CommunityHub
if communityHubChainsConfigPath != "" && chainsConfs != nil {
if comHub, err = communityhub.NewCommunityHub(mainCtx, web3pool,
census3Client, &communityhub.CommunityHubConfig{
ChainAliases: chainsConfs.ChainChainIDByAlias(),
ContractAddresses: chainsConfs.ContractsAddressesByChainAlias(),
DB: db,
PrivKey: communityHubAdminPrivKey,
},
); err != nil {
log.Warnw("failed to create community hub", "error", err)
}
comHub.ScanNewCommunities()
comHub.SyncCommunities()
defer comHub.Stop()
log.Info("community hub service started")
}
// Create Airstack artifact
var as *airstack.Airstack
if airstackKey != "" {
as, err = airstack.NewAirstack(
mainCtx,
airstackEndpoint,
airstackKey,
airstackSupportAPIEndpoint,
strings.Split(airstackBlockchains, ","),
strings.Split(airstackTokenWhitelist, ","),
airstackMaxHolders)
if err != nil {
log.Fatal(err)
}
}
// start reputation updater
repUpdater, err := reputation.NewUpdater(mainCtx, db, neynarcli, census3Client, concurrentReputationUpdates)
if err != nil {
log.Fatal(err)
}
if err := repUpdater.Start(reputationUpdateInterval); err != nil {
log.Fatal(err)
}
defer repUpdater.Stop()
// Create the Vocdoni handler
apiTokenUUID := uuid.MustParse(apiToken)
handler, err := NewVocdoniHandler(apiEndpoint, vocdoniPrivKey, censusInfo,
webAppDir, db, mainCtx, neynarcli, &apiTokenUUID, as, census3Client,
comHub, repUpdater, adminFID)
if err != nil {
log.Fatal(err)
}
// Create the HTTP API router
router := new(httprouter.HTTProuter)
if tlsDomain {
router.TLSdomain = domain
}
router.TLSdirCert = tlsDirCert
if err := router.Init(host, port); err != nil {
log.Fatal(err)
}
// Add handler to serve the static files
log.Infow("serving webapp static files from", "dir", webAppDir)
// check index.html exists
if _, err := os.Stat(path.Join(webAppDir, "index.html")); err != nil {
log.Fatalf("index.html not found in webapp directory %s", webAppDir)
}
router.AddRawHTTPHandler("/app*", http.MethodGet, handler.staticHandler)
staticFiles := []string{"favicon.ico", "robots.txt"}
for _, file := range staticFiles {
router.AddRawHTTPHandler("/"+file, http.MethodGet, func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, path.Join(webAppDir, file))
})
}
// Add the Prometheus endpoint
router.ExposePrometheusEndpoint("/metrics")
// Create the API handler
uAPI, err := urlapi.NewAPI(router, "/", dataDir, "")
if err != nil {
log.Fatal(err)
}
// Set the admin token
uAPI.Endpoint.SetAdminToken(adminToken)
// Add the authentication tokens from the database
existingAuthTokens, err := db.Authentications()
if err != nil {
log.Fatal(err)
}
for _, token := range existingAuthTokens {
uAPI.Endpoint.AddAuthToken(token, 0)
}
// Set the method for adding new auth tokens
handler.AddAuthTokenFunc(func(fid uint64, token string) {
uAPI.Endpoint.AddAuthToken(token, 0)
if err := db.AddAuthentication(fid, token); err != nil {
log.Errorw(err, "failed to add authentication token to the database")
}
})
// The root endpoint redirects to /app
if err := uAPI.Endpoint.RegisterMethod("/", http.MethodGet, "public", func(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
ctx.SetHeader("Location", "/app")
return ctx.Send([]byte("Redirecting to /app"), http.StatusTemporaryRedirect)
}); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/", http.MethodPost, "public", func(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
ctx.SetHeader("Location", "/app")
return ctx.Send([]byte("Redirecting to /app"), http.StatusTemporaryRedirect)
}); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/ping", http.MethodGet, "public", func(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
return ctx.Send([]byte("pong"), http.StatusOK)
}); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/auth", http.MethodGet, "public", handler.authLinkHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/auth/check", http.MethodGet, "public", handler.authCheckHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/auth/{id}", http.MethodGet, "public", handler.authVerifyHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/{electionID}", http.MethodPost, "public", handler.landing); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/{electionID}", http.MethodGet, "public", handler.landing); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/dumpdb", http.MethodGet, "admin", handler.dumpDB); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/importdb", http.MethodPost, "admin", handler.importDB); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/whitelist/{fid}", http.MethodGet, "admin", handler.whitelistHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/notifications/{electionID}", http.MethodPost, "admin", handler.notificationsSendHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/usersByCreatedPolls", http.MethodGet, "public", handler.rankingByElectionsCreated); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/usersByCastedVotes", http.MethodGet, "public", handler.rankingByVotes); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/pollsByVotes", http.MethodGet, "public", handler.rankingOfElections); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/latestPolls", http.MethodGet, "public", handler.latestElectionsHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/usersByReputation", http.MethodGet, "public", handler.rankingByReputation); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/points", http.MethodGet, "public", handler.rankingByPoints); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/rankings/pollsByCommunity/{chainAlias}:{communityID}", http.MethodGet, "public", handler.electionsByCommunityHandler); err != nil {
log.Fatal(err)
}
// Register the API methods
if err := uAPI.Endpoint.RegisterMethod("/router/{electionID}", http.MethodPost, "public", func(msg *apirest.APIdata, ctx *httprouter.HTTPContext) error {
electionID := ctx.URLParam("electionID")
packet := &FrameSignaturePacket{}
if err := json.Unmarshal(msg.Data, packet); err != nil {
return fmt.Errorf("failed to unmarshal frame signature packet: %w", err)
}
redirectURL := ""
switch packet.UntrustedData.ButtonIndex {
case 1:
redirectURL = fmt.Sprintf(serverURL+"/poll/results/%s", electionID)
case 2:
redirectURL = fmt.Sprintf(serverURL+"/poll/%s", electionID)
case 3:
redirectURL = fmt.Sprintf(serverURL+"/info/%s", electionID)
default:
redirectURL = serverURL + "/"
}
log.Infow("received router request", "electionID", electionID, "buttonIndex", packet.UntrustedData.ButtonIndex, "redirectURL", redirectURL)
ctx.SetHeader("Location", redirectURL)
return ctx.Send([]byte(redirectURL), http.StatusTemporaryRedirect)
}); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/results/{electionID}", http.MethodGet, "public", handler.results); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/results/{electionID}", http.MethodPost, "public", handler.results); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/composer", http.MethodGet, "public", handler.composerMetadataHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/composer", http.MethodPost, "public", handler.composerActionHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/{electionID}", http.MethodGet, "public", handler.showElection); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/{electionID}/reminders", http.MethodGet, "private", handler.remindersHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/{electionID}/reminders", http.MethodPost, "private", handler.sendRemindersHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/{electionID}/reminders/queue/{queueID}", http.MethodGet, "private", handler.remindersQueueHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/info/{electionID}", http.MethodGet, "public", handler.electionFullInfo); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/poll/{electionID}", http.MethodPost, "public", handler.showElection); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/vote/{electionID}", http.MethodPost, "public", handler.vote); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/vote/{electionID}", http.MethodGet, "public", handler.vote); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/info/{electionID}", http.MethodGet, "public", handler.info); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/info/{electionID}", http.MethodPost, "public", handler.info); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/create", http.MethodPost, "private", handler.createElection); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/{electionID}", http.MethodGet, "public", handler.censusFromDatabaseByElectionID); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/root/{root}", http.MethodGet, "public", handler.censusFromDatabaseByRoot); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/csv", http.MethodPost, "private", handler.censusCSV); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/followers/{userFid}", http.MethodPost, "private", handler.censusFollowersHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/alfafrens", http.MethodPost, "private", handler.censusAlfafrensChannelHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/channel-gated/{channelID}", http.MethodPost, "private", handler.censusChannel); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/channel-gated/{channelID}/exists", http.MethodGet, "private", handler.censusChannelExists); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/community", http.MethodPost, "private", handler.censusCommunity); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/community/blockchains", http.MethodGet, "public", handler.tokenBasedCensusBlockchains); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/check/{censusID}", http.MethodGet, "private", handler.censusQueueInfo); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/exists/nft", http.MethodPost, "public", handler.checkNFTContractHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/census/exists/erc20", http.MethodPost, "public", handler.checkERC20ContractHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/create/check/{electionID}", http.MethodGet, "public", handler.checkElection); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/votersOf/{electionID}", http.MethodGet, "public", handler.votersForElection); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/remainingVotersOf/{electionID}", http.MethodGet, "public", handler.remainingVotersForElection); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/preview/{electionID}", http.MethodGet, "public", handler.preview); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/images/{id}.png", http.MethodGet, "public", handler.imagesHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/images/avatar/{avatarID}.jpg", http.MethodGet, "public", handler.avatarHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/images/avatar", http.MethodPost, "private", handler.updloadAvatarHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/notifications", http.MethodGet, "public", handler.notificationsHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/notifications", http.MethodPost, "public", handler.notificationsHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/notifications/set", http.MethodPost, "public", handler.notificationsResponseHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/notifications/filter", http.MethodPost, "public", handler.notificationsFilterByUserHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile", http.MethodGet, "private", handler.profileHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/fid/{fid}", http.MethodGet, "public", handler.profilePublicHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/user/{userHandle}", http.MethodGet, "public", handler.profilePublicHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/mutedUsers", http.MethodPost, "private", handler.muteUserHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/mutedUsers/{username}", http.MethodDelete, "private", handler.unmuteUserHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/delegation", http.MethodPost, "private", handler.delegateVoteHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/delegation/{delegationID}", http.MethodDelete, "private", handler.removeVoteDelegationHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/profile/warpcast", http.MethodPost, "private", handler.registerWarpcastApiKey); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/channels", http.MethodGet, "public", handler.findChannelHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/channels/{channelID}", http.MethodGet, "public", handler.channelHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities", http.MethodGet, "public", handler.listCommunitiesHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}/{communityID}", http.MethodGet, "public", handler.redirectCommunitiesHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}", http.MethodGet, "public", handler.communityHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}/status", http.MethodGet, "public", handler.communityStatusHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}", http.MethodPut, "private", handler.communitySettingsHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}/delegations", http.MethodGet, "public", handler.communityDelegationsHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}/announcements/users", http.MethodGet, "private", handler.usersToAnnounceHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}/announcements", http.MethodPost, "private", handler.sendAnnouncementsHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/communities/{chainAlias}:{communityID}/announcements/queue/{queueID}", http.MethodGet, "private", handler.announcementsQueueHandler); err != nil {
log.Fatal(err)
}
if err := uAPI.Endpoint.RegisterMethod("/short", http.MethodGet, "private", handler.shortURLHanlder); err != nil {
log.Fatal(err)
}
// if a bot FID is provided, start the bot background process
if botFid > 0 {
var botAPI farcasterapi.API
if botPrivKey != "" && botHubEndpoint != "" {
// Hub based bot
botAPI, err = hub.NewHubAPI(botHubEndpoint, nil)
if err != nil {
log.Fatal(err)
}
if err := botAPI.SetFarcasterUser(botFid, botPrivKey); err != nil {
log.Fatal(err)
}
log.Info("trying to init Hub based bot")
} else if neynarAPIKey != "" && neynarSignerUUID != "" && neynarWebhookSecret != "" {
// Neynar based bot
if err := neynarcli.SetFarcasterUser(botFid, neynarSignerUUID); err != nil {
log.Fatal(err)
}
botAPI = neynarcli
// register neynar webhook handler
if err := uAPI.Endpoint.RegisterMethod("/webhook/neynar", http.MethodPost, "public", neynarWebhook(neynarcli, neynarWebhookSecret)); err != nil {
log.Fatal(err)
}
log.Info("trying to init Neynar based bot")
} else {
log.Fatalf("botFid is set but botPrivKey and botHubEndpoint or neynarAPIKey, neynarSignerUUID and neynarWebhookSecret are not")
}
voteBot, err := initBot(mainCtx, handler, botAPI, censusInfo)
if err != nil {
log.Fatal(err)
}
defer voteBot.Stop()
log.Infow("bot started",
"fid", voteBot.UserData.FID,
"username", voteBot.UserData.Username)
// start notification manager
notificationManager, err := notifications.New(mainCtx, ¬ifications.NotifificationManagerConfig{
DB: db,
API: botAPI,
NotificationDeadline: 4 * time.Hour,
FrameURL: serverURL + "/notifications",
})
if err != nil {
log.Fatal(err)
}
notificationManager.Start()
defer notificationManager.Stop()
}
// close if interrupt received
log.Infof("startup complete at %s", time.Now().Format(time.RFC850))
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
<-c
log.Warnf("received SIGTERM, exiting at %s", time.Now().Format(time.RFC850))
}