30 lines
690 B
Go
30 lines
690 B
Go
|
package probeservices
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/url"
|
||
|
|
||
|
"github.com/ooni/probe-cli/v3/internal/engine/internal/httpx"
|
||
|
)
|
||
|
|
||
|
type checkReportIDResponse struct {
|
||
|
Found bool `json:"found"`
|
||
|
}
|
||
|
|
||
|
// CheckReportID checks whether the given ReportID exists.
|
||
|
func (c Client) CheckReportID(ctx context.Context, reportID string) (bool, error) {
|
||
|
query := url.Values{}
|
||
|
query.Add("report_id", reportID)
|
||
|
var response checkReportIDResponse
|
||
|
err := (httpx.Client{
|
||
|
BaseURL: c.BaseURL,
|
||
|
HTTPClient: c.HTTPClient,
|
||
|
Logger: c.Logger,
|
||
|
UserAgent: c.UserAgent,
|
||
|
}).GetJSONWithQuery(ctx, "/api/_/check_report_id", query, &response)
|
||
|
if err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
return response.Found, nil
|
||
|
}
|