From 8e88d4aed1a77b0ac0279ff132fd9e0c2b80996f Mon Sep 17 00:00:00 2001 From: pg9182 <96569817+pg9182@users.noreply.github.com> Date: Mon, 22 Jan 2024 07:55:30 -0500 Subject: cmd/origin-login-test: Drop origin-login-test --- cmd/origin-login-test/main.go | 121 ------------------------------------------ 1 file changed, 121 deletions(-) delete mode 100644 cmd/origin-login-test/main.go diff --git a/cmd/origin-login-test/main.go b/cmd/origin-login-test/main.go deleted file mode 100644 index 32634d7..0000000 --- a/cmd/origin-login-test/main.go +++ /dev/null @@ -1,121 +0,0 @@ -// Command origin-login-test debugs Origin login. -package main - -import ( - "context" - "fmt" - "net/http" - "os" - "time" - - "github.com/cardigann/harhar" - "github.com/r2northstar/atlas/pkg/juno" - "github.com/r2northstar/atlas/pkg/origin" - "github.com/spf13/pflag" -) - -var opt struct { - HAR string - Verbose bool - Help bool -} - -func init() { - pflag.StringVarP(&opt.HAR, "har", "H", "", "Write requests to a HAR file (use http://www.softwareishard.com/har/viewer/ to view it)") - pflag.BoolVarP(&opt.Verbose, "verbose", "v", false, "Print HTTP requests") - pflag.BoolVarP(&opt.Help, "help", "h", false, "Show this help text") -} - -func main() { - pflag.Parse() - - if pflag.NArg() < 2 || pflag.NArg() > 3 || opt.Help { - fmt.Printf("usage: %s [options] email password [totp_secret]\n\noptions:\n%s\nwarning: do not use this tool repeatedly, or you may trigger additional verification, which will break login\n", os.Args[0], pflag.CommandLine.FlagUsages()) - if opt.Help { - os.Exit(2) - } - os.Exit(0) - } - - if http.DefaultClient.Transport == nil { - http.DefaultClient.Transport = http.DefaultTransport - } - - if opt.Verbose { - log := &httpLogger{ - PreRequest: func(req *http.Request) { - fmt.Fprintf(os.Stderr, "http: req: %s %q\n", req.Method, req.URL.String()) - }, - PostRequest: func(_ *http.Request, resp *http.Response, err error) { - if err != nil { - fmt.Fprintf(os.Stderr, "http: resp: error: %v\n", err) - } - if resp.StatusCode >= 300 && resp.StatusCode < 400 { - fmt.Fprintf(os.Stderr, "http: resp: %d %s\n", resp.StatusCode, resp.Header.Get("Location")) - } else { - fmt.Fprintf(os.Stderr, "http: resp: %d content-type=%s\n", resp.StatusCode, resp.Header.Get("Content-Type")) - } - }, - } - log.RoundTripper, http.DefaultClient.Transport = http.DefaultClient.Transport, log - } - - var rec *harhar.Recorder - if opt.HAR != "" { - rec = harhar.NewRecorder() - rec.RoundTripper, http.DefaultClient.Transport = http.DefaultClient.Transport, rec - } - - var fail bool - ctx := context.Background() - - r, err := juno.Login(ctx, nil, pflag.Arg(0), pflag.Arg(1), pflag.Arg(2)) - if err != nil { - fmt.Fprintf(os.Stderr, "origin: error: %v\n", err) - fail = true - } else { - fmt.Printf("SID=%s\n", r.SID) - fmt.Printf("JunoCode=%s\n", r.Code) - } - - if !fail { - token, expiry, err := origin.GetNucleusToken(ctx, nil, r.SID) - if err != nil { - fmt.Fprintf(os.Stderr, "origin: error: %v\n", err) - fail = true - } else { - fmt.Printf("NucleusToken=%s\n", token) - fmt.Printf("NucleusTokenExpiry=%d\n", expiry.Unix()) - fmt.Printf("NucleusTokenExpirySecs=%.0f\n", time.Until(expiry).Seconds()) - fmt.Printf("NucleusTokenExpiryDuration=%s\n", time.Until(expiry).Truncate(time.Second)) - } - } - - if opt.HAR != "" { - if _, err := rec.WriteFile(opt.HAR); err != nil { - fmt.Fprintf(os.Stderr, "error: write har: %v\n", err) - fail = true - } - } - - if fail { - os.Exit(1) - } -} - -type httpLogger struct { - RoundTripper http.RoundTripper - PreRequest func(req *http.Request) - PostRequest func(req *http.Request, resp *http.Response, err error) -} - -func (h *httpLogger) RoundTrip(r *http.Request) (*http.Response, error) { - if h.PreRequest != nil { - h.PreRequest(r) - } - resp, err := h.RoundTripper.RoundTrip(r) - if h.PostRequest != nil { - h.PostRequest(r, resp, err) - } - return resp, err -} -- cgit v1.2.3