added
keystore added
This commit is contained in:
parent
70dcd253e2
commit
677021cd10
76
proxy/keystore/keystore_service.go
Normal file
76
proxy/keystore/keystore_service.go
Normal file
|
@ -0,0 +1,76 @@
|
|||
package keystore
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
"encoding/json"
|
||||
"git.loafle.net/overflow/commons_go/model/timestamp"
|
||||
"git.loafle.net/overflow/overflow_proxy_service/proxy"
|
||||
"log"
|
||||
)
|
||||
|
||||
type KeyStoreService struct {
|
||||
|
||||
}
|
||||
|
||||
|
||||
type ApiKey struct {
|
||||
Id json.Number `json:"id,Number,omitempty"`
|
||||
Apikey string `json:"apiKey,omitempty"`
|
||||
CreateDAte timestamp.Timestamp`json:"createDate,omitempty"`
|
||||
HostName string `json:"hostName,omitempty"`
|
||||
}
|
||||
|
||||
func(k *KeyStoreService)CreateKey() (string,error) {
|
||||
uu, err := uuid.NewUUID();
|
||||
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
return uu.String(), nil
|
||||
}
|
||||
|
||||
func(k *KeyStoreService)SaveApikey(key *ApiKey) (string, error) {
|
||||
|
||||
|
||||
bytes, err := json.Marshal(key)
|
||||
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
m := make(map[string]string)
|
||||
|
||||
m["com.loafle.overflow.keystore.model.Apikey"] = string(bytes)
|
||||
|
||||
out := proxy.InvokeDB("apiKey", "create", m)
|
||||
|
||||
log.Print(out)
|
||||
|
||||
return "", nil
|
||||
|
||||
}
|
||||
|
||||
func(k *KeyStoreService)CheckApikey(apikey string) (bool, error) {
|
||||
|
||||
ak := ApiKey{
|
||||
Apikey:apikey,
|
||||
}
|
||||
|
||||
bytes, err := json.Marshal(ak)
|
||||
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
m := make(map[string]string)
|
||||
|
||||
m["com.loafle.overflow.keystore.model.Apikey"] = string(bytes)
|
||||
|
||||
out := proxy.InvokeDB("apiKey", "findByApiKey", m)
|
||||
|
||||
log.Print(out)
|
||||
|
||||
return true, nil
|
||||
|
||||
}
|
1
proxy/keystore/keystore_service_test.go
Normal file
1
proxy/keystore/keystore_service_test.go
Normal file
|
@ -0,0 +1 @@
|
|||
package keystore
|
Loading…
Reference in New Issue
Block a user