Skip to content

Commit

Permalink
Merge pull request #115 from openziti-test-kitchen/enable-token
Browse files Browse the repository at this point in the history
Improve Token Generation
  • Loading branch information
michaelquigley authored Nov 28, 2022
2 parents ab627d1 + 37ac118 commit 9451e26
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.idea
*.db
automated-release-build
etc/dev.yml
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# v0.2.18 (WiP)
# v0.2.18

* First official release in the `v0.2.x` series.
* DEFECT: Token generation has been improved to use an alphabet consisting of `[a-zA-Z0-9]`. Service token generation continues to use a case-insensitive alphabet consisting of `[a-z0-9]` to be DNS-safe.
17 changes: 3 additions & 14 deletions controller/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"github.com/openziti-test-kitchen/zrok/rest_model_zrok"
"github.com/openziti/edge/rest_management_api_client"
"github.com/openziti/edge/rest_util"
"github.com/teris-io/shortid"
"net/http"
"strings"
)
Expand Down Expand Up @@ -44,10 +43,6 @@ func edgeClient() (*rest_management_api_client.ZitiEdgeManagement, error) {
return rest_util.NewEdgeManagementClientWithUpdb(cfg.Ziti.Username, cfg.Ziti.Password, cfg.Ziti.ApiEndpoint, caPool)
}

func createToken() (string, error) {
return shortid.Generate()
}

func createServiceName() (string, error) {
gen, err := nanoid.CustomASCII("abcdefghijklmnopqrstuvwxyz0123456789", 12)
if err != nil {
Expand All @@ -56,18 +51,12 @@ func createServiceName() (string, error) {
return gen(), nil
}

func dnsSafeShortId() (string, error) {
sid, err := shortid.Generate()
func createToken() (string, error) {
gen, err := nanoid.CustomASCII("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", 12)
if err != nil {
return "", err
}
for sid[0] == '-' || sid[0] == '_' {
sid, err = shortid.Generate()
if err != nil {
return "", err
}
}
return sid, nil
return gen(), nil
}

func hashPassword(raw string) string {
Expand Down

0 comments on commit 9451e26

Please sign in to comment.