fix(measurex): use same keys of the OONI data format (#572)
This change should simplify the pipeline's job. Reference issue: https://github.com/ooni/probe/issues/1817. I previously dismissed this possibility, but now it seems clear it is simpler to have a very tabular data format internally and to convert such a format to OONI's data format when serializing. The OONI data format is what the pipeline expects, but processing is easier with a more linear/tabular format.
This commit is contained in:
parent
6f90d29bfa
commit
aa27bbe33f
35 changed files with 1539 additions and 993 deletions
|
|
@ -13,7 +13,6 @@ import (
|
|||
"context"
|
||||
"crypto/tls"
|
||||
"errors"
|
||||
stdlog "log"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
|
|
@ -712,7 +711,7 @@ type MeasureURLHelper interface {
|
|||
// test helper protocol allows one to set.
|
||||
LookupExtraHTTPEndpoints(ctx context.Context, URL *url.URL,
|
||||
headers http.Header, epnts ...*HTTPEndpoint) (
|
||||
newEpnts []*HTTPEndpoint, thMeasurement interface{}, err error)
|
||||
newEpnts []*HTTPEndpoint, thMeasurement *THMeasurement, err error)
|
||||
}
|
||||
|
||||
// MeasureURL measures an HTTP or HTTPS URL. The DNS resolvers
|
||||
|
|
@ -802,12 +801,8 @@ func (mx *Measurer) maybeQUICFollowUp(ctx context.Context,
|
|||
if epnt.QUICHandshake != nil {
|
||||
return
|
||||
}
|
||||
for idx, rtrip := range epnt.HTTPRoundTrip {
|
||||
if rtrip.Response == nil {
|
||||
stdlog.Printf("malformed HTTPRoundTrip@%d: %+v", idx, rtrip)
|
||||
continue
|
||||
}
|
||||
if v := rtrip.Response.Headers.Get("alt-svc"); v != "" {
|
||||
for _, rtrip := range epnt.HTTPRoundTrip {
|
||||
if v := rtrip.ResponseHeaders.Get("alt-svc"); v != "" {
|
||||
altsvc = append(altsvc, v)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue