@@ -563,68 +563,72 @@ func searchBadgeHandler() *httputil.ReverseProxy {
563
563
}
564
564
}
565
565
566
- func servePingFromSelfHosted (w http.ResponseWriter , r * http.Request ) error {
567
- // CORS to allow request from anywhere
568
- u , err := url .Parse (r .Referer ())
569
- if err != nil {
570
- return err
571
- }
572
- w .Header ().Add ("Access-Control-Allow-Origin" , u .Host )
573
- w .Header ().Add ("Access-Control-Allow-Credentials" , "true" )
574
- if r .Method == http .MethodOptions {
575
- // CORS preflight request, respond 204 and allow origin header
576
- w .WriteHeader (http .StatusNoContent )
577
- return nil
578
- }
579
- email := r .URL .Query ().Get ("email" )
580
- tosAccepted := r .URL .Query ().Get ("tos_accepted" )
566
+ func servePingFromSelfHosted (l log.Logger ) func (w http.ResponseWriter , r * http.Request ) error {
567
+ l = l .Scoped ("servePingFromSelfHosted" )
581
568
582
- getCookie := func (name string ) string {
583
- c , err := r .Cookie (name )
584
- if err != nil || c == nil {
585
- return ""
569
+ return func (w http.ResponseWriter , r * http.Request ) error {
570
+ // CORS to allow request from anywhere
571
+ u , err := url .Parse (r .Referer ())
572
+ if err != nil {
573
+ return err
586
574
}
587
- return c .Value
588
- }
575
+ w .Header ().Add ("Access-Control-Allow-Origin" , u .Host )
576
+ w .Header ().Add ("Access-Control-Allow-Credentials" , "true" )
577
+ if r .Method == http .MethodOptions {
578
+ // CORS preflight request, respond 204 and allow origin header
579
+ w .WriteHeader (http .StatusNoContent )
580
+ return nil
581
+ }
582
+ email := r .URL .Query ().Get ("email" )
583
+ tosAccepted := r .URL .Query ().Get ("tos_accepted" )
589
584
590
- anonymousUserId , _ := cookie .AnonymousUID (r )
591
-
592
- hubspotutil .SyncUser (email , hubspotutil .SelfHostedSiteInitEventID , & hubspot.ContactProperties {
593
- IsServerAdmin : true ,
594
- AnonymousUserID : anonymousUserId ,
595
- FirstSourceURL : getCookie ("first_page_seen_url" ),
596
- LastSourceURL : getCookie ("last_page_seen_url" ),
597
- LastPageSeenShort : getCookie ("last_page_seen_url_short" ),
598
- LastPageSeenMid : getCookie ("last_page_seen_url_mid" ),
599
- LastPageSeenLong : getCookie ("last_page_seen_url_long" ),
600
- MostRecentReferrerUrl : getCookie ("most_recent_referrer_url" ),
601
- MostRecentReferrerUrlShort : getCookie ("most_recent_referrer_url_short" ),
602
- MostRecentReferrerUrlLong : getCookie ("most_recent_referrer_url_long" ),
603
- SignupSessionSourceURL : getCookie ("sourcegraphSignupSourceUrl" ),
604
- SignupSessionReferrer : getCookie ("sourcegraphSignupReferrer" ),
605
- SessionUTMCampaign : getCookie ("utm_campaign" ),
606
- SessionUTMSource : getCookie ("utm_source" ),
607
- SessionUTMMedium : getCookie ("utm_medium" ),
608
- SessionUTMContent : getCookie ("utm_content" ),
609
- SessionUTMTerm : getCookie ("utm_term" ),
610
- UtmCampaignShort : getCookie ("utm_campaign_short" ),
611
- UtmCampaignMid : getCookie ("utm_campaign_mid" ),
612
- UtmCampaignLong : getCookie ("utm_campaign_long" ),
613
- UtmSourceShort : getCookie ("utm_source_short" ),
614
- UtmSourceMid : getCookie ("utm_source_mid" ),
615
- UtmSourceLong : getCookie ("utm_source_long" ),
616
- UtmMediumShort : getCookie ("utm_medium_short" ),
617
- UtmMediumMid : getCookie ("utm_medium_mid" ),
618
- UtmMediumLong : getCookie ("utm_medium_long" ),
619
- UtmContentShort : getCookie ("utm_content_short" ),
620
- UtmContentMid : getCookie ("utm_content_mid" ),
621
- UtmContentLong : getCookie ("utm_content_long" ),
622
- UtmTermShort : getCookie ("utm_term_short" ),
623
- UtmTermMid : getCookie ("utm_term_mid" ),
624
- UtmTermLong : getCookie ("utm_term_long" ),
625
- GoogleClickID : getCookie ("gclid" ),
626
- MicrosoftClickID : getCookie ("msclkid" ),
627
- HasAgreedToToS : tosAccepted == "true" ,
628
- })
629
- return nil
585
+ getCookie := func (name string ) string {
586
+ c , err := r .Cookie (name )
587
+ if err != nil || c == nil {
588
+ return ""
589
+ }
590
+ return c .Value
591
+ }
592
+
593
+ anonymousUserId , _ := cookie .AnonymousUID (r )
594
+
595
+ hubspotutil .SyncUser (l , email , hubspotutil .SelfHostedSiteInitEventID , & hubspot.ContactProperties {
596
+ IsServerAdmin : true ,
597
+ AnonymousUserID : anonymousUserId ,
598
+ FirstSourceURL : getCookie ("first_page_seen_url" ),
599
+ LastSourceURL : getCookie ("last_page_seen_url" ),
600
+ LastPageSeenShort : getCookie ("last_page_seen_url_short" ),
601
+ LastPageSeenMid : getCookie ("last_page_seen_url_mid" ),
602
+ LastPageSeenLong : getCookie ("last_page_seen_url_long" ),
603
+ MostRecentReferrerUrl : getCookie ("most_recent_referrer_url" ),
604
+ MostRecentReferrerUrlShort : getCookie ("most_recent_referrer_url_short" ),
605
+ MostRecentReferrerUrlLong : getCookie ("most_recent_referrer_url_long" ),
606
+ SignupSessionSourceURL : getCookie ("sourcegraphSignupSourceUrl" ),
607
+ SignupSessionReferrer : getCookie ("sourcegraphSignupReferrer" ),
608
+ SessionUTMCampaign : getCookie ("utm_campaign" ),
609
+ SessionUTMSource : getCookie ("utm_source" ),
610
+ SessionUTMMedium : getCookie ("utm_medium" ),
611
+ SessionUTMContent : getCookie ("utm_content" ),
612
+ SessionUTMTerm : getCookie ("utm_term" ),
613
+ UtmCampaignShort : getCookie ("utm_campaign_short" ),
614
+ UtmCampaignMid : getCookie ("utm_campaign_mid" ),
615
+ UtmCampaignLong : getCookie ("utm_campaign_long" ),
616
+ UtmSourceShort : getCookie ("utm_source_short" ),
617
+ UtmSourceMid : getCookie ("utm_source_mid" ),
618
+ UtmSourceLong : getCookie ("utm_source_long" ),
619
+ UtmMediumShort : getCookie ("utm_medium_short" ),
620
+ UtmMediumMid : getCookie ("utm_medium_mid" ),
621
+ UtmMediumLong : getCookie ("utm_medium_long" ),
622
+ UtmContentShort : getCookie ("utm_content_short" ),
623
+ UtmContentMid : getCookie ("utm_content_mid" ),
624
+ UtmContentLong : getCookie ("utm_content_long" ),
625
+ UtmTermShort : getCookie ("utm_term_short" ),
626
+ UtmTermMid : getCookie ("utm_term_mid" ),
627
+ UtmTermLong : getCookie ("utm_term_long" ),
628
+ GoogleClickID : getCookie ("gclid" ),
629
+ MicrosoftClickID : getCookie ("msclkid" ),
630
+ HasAgreedToToS : tosAccepted == "true" ,
631
+ })
632
+ return nil
633
+ }
630
634
}
0 commit comments