telebit/cmd/signjwt/signjwt.go

113 lines
2.8 KiB
Go
Raw Normal View History

2020-05-26 09:05:39 +00:00
package main
import (
2020-05-31 12:19:41 +00:00
"encoding/base64"
"encoding/hex"
2020-07-06 09:23:12 +00:00
"flag"
2020-05-26 09:05:39 +00:00
"fmt"
"os"
2020-06-03 07:47:06 +00:00
"git.coolaj86.com/coolaj86/go-telebitd/mgmt/authstore"
2020-07-06 09:23:12 +00:00
telebit "git.coolaj86.com/coolaj86/go-telebitd/mplexer"
2020-05-31 12:19:41 +00:00
"github.com/denisbrodbeck/machineid"
2020-05-26 09:05:39 +00:00
_ "github.com/joho/godotenv/autoload"
)
func main() {
2020-07-19 08:16:11 +00:00
var secret, clientSecret, relaySecret string
2020-07-06 09:23:12 +00:00
appID := flag.String("app-id", "", "a unique identifier for a deploy target environment")
authURL := flag.String("auth-url", "", "the base url for authentication, if not the same as the tunnel relay")
machinePPID := flag.Bool("machine-ppid", false, "just print the machine ppid, not the token")
2020-07-19 08:16:11 +00:00
flag.StringVar(&secret, "secret", "", "either the remote server or the tunnel relay secret (used for JWT authentication)")
2020-07-06 09:23:12 +00:00
flag.Parse()
2020-05-26 09:05:39 +00:00
2020-07-19 08:16:11 +00:00
if 0 == len(*authURL) {
*authURL = os.Getenv("AUTH_URL")
}
2020-07-06 09:23:12 +00:00
if 0 == len(*appID) {
*appID = os.Getenv("APP_ID")
2020-05-26 09:05:39 +00:00
}
2020-07-06 09:23:12 +00:00
if 0 == len(*appID) {
2020-07-19 08:16:11 +00:00
*appID = os.Getenv("CLIENT_ID")
2020-05-26 09:05:39 +00:00
}
2020-07-19 08:16:11 +00:00
if 0 == len(*appID) {
*appID = "telebit.io"
2020-07-06 09:23:12 +00:00
}
2020-07-19 08:16:11 +00:00
if 0 == len(secret) {
clientSecret = os.Getenv("CLIENT_SECRET")
relaySecret = os.Getenv("RELAY_SECRET")
if 0 == len(relaySecret) {
relaySecret = os.Getenv("SECRET")
2020-07-06 09:23:12 +00:00
}
}
2020-07-19 08:16:11 +00:00
if 0 == len(secret) {
secret = clientSecret
2020-07-06 09:23:12 +00:00
}
2020-07-19 08:16:11 +00:00
if 0 == len(secret) {
secret = relaySecret
2020-07-06 09:23:12 +00:00
}
2020-07-19 08:16:11 +00:00
if 0 == len(secret) && 0 == len(clientSecret) && 0 == len(relaySecret) {
fmt.Fprintf(os.Stderr, "See usage: signjwt --help\n")
os.Exit(1)
return
} else if 0 != len(clientSecret) && 0 != len(relaySecret) {
fmt.Fprintf(os.Stderr, "Use only one of $SECRET or --relay-secret or --client-secret\n")
2020-05-26 09:05:39 +00:00
os.Exit(1)
return
}
2020-07-19 08:16:11 +00:00
var ppid string
muid, err := machineid.ProtectedID(fmt.Sprintf("%s|%s", *appID, secret))
//muid, err := machineid.ProtectedID(fmt.Sprintf("%s|%s", ClientID, ClientSecret))
if nil != err {
fmt.Fprintf(os.Stderr, "unauthorized device: %s\n", err)
os.Exit(1)
return
2020-07-06 09:23:12 +00:00
}
2020-07-19 08:16:11 +00:00
muidBytes, _ := hex.DecodeString(muid)
ppid = base64.RawURLEncoding.EncodeToString(muidBytes)
2020-07-06 09:23:12 +00:00
2020-07-19 08:16:11 +00:00
fmt.Fprintf(os.Stderr, "[debug] appID = %s\n", *appID)
fmt.Fprintf(os.Stderr, "[debug] secret = %s\n", secret)
pub := authstore.ToPublicKeyString(ppid)
if *machinePPID {
fmt.Fprintf(os.Stderr, "[debug]: <ppid> <pub>\n")
fmt.Fprintf(
os.Stdout,
"%s %s\n",
ppid,
pub,
)
return
2020-05-31 12:19:41 +00:00
}
2020-07-19 08:16:11 +00:00
fmt.Fprintf(os.Stderr, "[debug] ppid = %s\n", ppid)
fmt.Fprintf(os.Stderr, "[debug] pub = %s\n", pub)
tok, err := authstore.HMACToken(ppid)
2020-05-26 09:05:39 +00:00
if nil != err {
2020-07-06 09:23:12 +00:00
fmt.Fprintf(os.Stderr, "signing error: %s\n", err)
2020-05-26 09:05:39 +00:00
os.Exit(1)
return
}
2020-07-06 09:23:12 +00:00
fmt.Fprintf(os.Stderr, "[debug] <token>\n")
2020-07-19 08:16:11 +00:00
fmt.Fprintf(os.Stdout, "%s\n", tok)
2020-07-06 09:23:12 +00:00
2020-07-19 08:16:11 +00:00
if "" != *authURL {
grants, err := telebit.Inspect(*authURL, tok)
if nil != err {
fmt.Fprintf(os.Stderr, "inspect relay token failed:\n%s\n", err)
os.Exit(1)
}
fmt.Fprintf(os.Stderr, "[debug] <grants>\n")
fmt.Fprintf(os.Stderr, "%+v\n", grants)
2020-07-06 09:23:12 +00:00
}
2020-05-26 09:05:39 +00:00
}