mirror of
https://github.com/cloudflare/cloudflared
synced 2026-06-08 13:33:07 +00:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a57fc25b54 | |||
| 2437675c04 | |||
| ec07269122 | |||
| 3ac69f2d06 | |||
| a29184a171 | |||
| e05939f1c9 | |||
| ab0bce58f8 | |||
| d6b0833209 | |||
| 9f0f22c036 | |||
| 394d3546bf | |||
| a9365296ae | |||
| 30c435fee6 | |||
| c7d63beba2 | |||
| 619c12cc64 |
@@ -1,3 +1,18 @@
|
||||
2024.9.1
|
||||
- 2024-09-10 Revert Release 2024.9.0
|
||||
|
||||
2024.9.0
|
||||
- 2024-09-10 TUN-8621: Fix cloudflared version in change notes.
|
||||
- 2024-09-06 PPIP-2310: Update quick tunnel disclaimer
|
||||
- 2024-08-30 TUN-8621: Prevent QUIC connection from closing before grace period after unregistering
|
||||
- 2024-08-09 TUN-8592: Use metadata from the edge to determine if request body is empty for QUIC transport
|
||||
- 2024-06-26 TUN-8484: Print response when QuickTunnel can't be unmarshalled
|
||||
|
||||
2024.8.3
|
||||
- 2024-08-15 TUN-8591 login command without extra text
|
||||
- 2024-03-25 remove code that will not be executed
|
||||
- 2024-03-25 remove code that will not be executed
|
||||
|
||||
2024.8.2
|
||||
- 2024-08-05 TUN-8583: change final directory of artifacts
|
||||
- 2024-08-05 TUN-8585: Avoid creating GH client when dry-run is true
|
||||
|
||||
@@ -26,6 +26,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
appURLFlag = "app"
|
||||
loginQuietFlag = "quiet"
|
||||
sshHostnameFlag = "hostname"
|
||||
sshDestinationFlag = "destination"
|
||||
@@ -83,9 +84,10 @@ func Commands() []*cli.Command {
|
||||
applications from the command line.`,
|
||||
Subcommands: []*cli.Command{
|
||||
{
|
||||
Name: "login",
|
||||
Action: cliutil.Action(login),
|
||||
Usage: "login <url of access application>",
|
||||
Name: "login",
|
||||
Action: cliutil.Action(login),
|
||||
Usage: "login <url of access application>",
|
||||
ArgsUsage: "url of Access application",
|
||||
Description: `The login subcommand initiates an authentication flow with your identity provider.
|
||||
The subcommand will launch a browser. For headless systems, a url is provided.
|
||||
Once authenticated with your identity provider, the login command will generate a JSON Web Token (JWT)
|
||||
@@ -97,6 +99,13 @@ func Commands() []*cli.Command {
|
||||
Aliases: []string{"q"},
|
||||
Usage: "do not print the jwt to the command line",
|
||||
},
|
||||
&cli.BoolFlag{
|
||||
Name: "no-verbose",
|
||||
Usage: "print only the jwt to stdout",
|
||||
},
|
||||
&cli.StringFlag{
|
||||
Name: appURLFlag,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -111,12 +120,12 @@ func Commands() []*cli.Command {
|
||||
{
|
||||
Name: "token",
|
||||
Action: cliutil.Action(generateToken),
|
||||
Usage: "token -app=<url of access application>",
|
||||
Usage: "token <url of access application>",
|
||||
ArgsUsage: "url of Access application",
|
||||
Description: `The token subcommand produces a JWT which can be used to authenticate requests.`,
|
||||
Flags: []cli.Flag{
|
||||
&cli.StringFlag{
|
||||
Name: "app",
|
||||
Name: appURLFlag,
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -232,9 +241,8 @@ func login(c *cli.Context) error {
|
||||
|
||||
log := logger.CreateLoggerFromContext(c, logger.EnableTerminalLog)
|
||||
|
||||
args := c.Args()
|
||||
appURL, err := parseURL(args.First())
|
||||
if args.Len() < 1 || err != nil {
|
||||
appURL, err := getAppURLFromArgs(c)
|
||||
if err != nil {
|
||||
log.Error().Msg("Please provide the url of the Access application")
|
||||
return err
|
||||
}
|
||||
@@ -261,7 +269,14 @@ func login(c *cli.Context) error {
|
||||
if c.Bool(loginQuietFlag) {
|
||||
return nil
|
||||
}
|
||||
fmt.Fprintf(os.Stdout, "Successfully fetched your token:\n\n%s\n\n", cfdToken)
|
||||
|
||||
// Chatty by default for backward compat. The new --app flag
|
||||
// is an implicit opt-out of the backwards-compatible chatty output.
|
||||
if c.Bool("no-verbose") || c.IsSet(appURLFlag) {
|
||||
fmt.Fprint(os.Stdout, cfdToken)
|
||||
} else {
|
||||
fmt.Fprintf(os.Stdout, "Successfully fetched your token:\n\n%s\n\n", cfdToken)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
@@ -340,6 +355,17 @@ func run(cmd string, args ...string) error {
|
||||
return c.Run()
|
||||
}
|
||||
|
||||
func getAppURLFromArgs(c *cli.Context) (*url.URL, error) {
|
||||
var appURLStr string
|
||||
args := c.Args()
|
||||
if args.Len() < 1 {
|
||||
appURLStr = c.String(appURLFlag)
|
||||
} else {
|
||||
appURLStr = args.First()
|
||||
}
|
||||
return parseURL(appURLStr)
|
||||
}
|
||||
|
||||
// token dumps provided token to stdout
|
||||
func generateToken(c *cli.Context) error {
|
||||
err := sentry.Init(sentry.ClientOptions{
|
||||
@@ -349,8 +375,8 @@ func generateToken(c *cli.Context) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
appURL, err := parseURL(c.String("app"))
|
||||
if err != nil || c.NumFlags() < 1 {
|
||||
appURL, err := getAppURLFromArgs(c)
|
||||
if err != nil {
|
||||
fmt.Fprintln(os.Stderr, "Please provide a url.")
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -52,13 +52,11 @@ func testRequest(t *testing.T, ts *httptest.Server, method, path string, body io
|
||||
req, err := http.NewRequest(method, ts.URL+path, body)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
resp, err := ts.Client().Do(req)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
return nil, nil
|
||||
}
|
||||
var claims managementErrorResponse
|
||||
err = json.NewDecoder(resp.Body).Decode(&claims)
|
||||
|
||||
Reference in New Issue
Block a user