mirror of https://github.com/writeas/writefreely
A focused writing and publishing space.
https://write.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
514 B
25 lines
514 B
package auth
|
|
|
|
import (
|
|
uuid "github.com/nu7hatch/gouuid"
|
|
"strings"
|
|
|
|
"code.as/writeas/web/modules/log"
|
|
)
|
|
|
|
// GetToken parses out the user token from an Authorization header.
|
|
func GetToken(header string) []byte {
|
|
var accessToken []byte
|
|
if len(header) > 0 {
|
|
f := strings.Fields(header)
|
|
if len(f) == 2 && f[0] == "Token" {
|
|
t, err := uuid.ParseHex(f[1])
|
|
if err != nil {
|
|
log.Error("Couldn't parseHex on '%s': %v", accessToken, err)
|
|
} else {
|
|
accessToken = t[:]
|
|
}
|
|
}
|
|
}
|
|
return accessToken
|
|
}
|
|
|