1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
package apikeymanager
import (
"encoding/json"
"io/ioutil"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/client-v1"
)
type Keys []int
type Key struct {
Id int `json:"id,omitempty"`
Value string `json:"value,omitempty"`
Label string `json:"label,omitempty"`
Tags []string `json:"tags,omitempty"`
CollectionName string `json:"collectionName,omitempty"`
CollectionId int `json:"collectionId,omitempty"`
Description string `json:"description,omitempty"`
Revoked bool `json:"revoked,omitempty"`
Dirty bool `json:"dirty,omitempty"`
CreatedAt string `json:"createdAt,omitempty"`
RevokedAt string `json:"revokedAt,omitempty"`
TerminationAt string `json:"terminationAt,omitempty"`
QuotaUsage int `json:"quotaUsage,omitempty"`
QuotaUsageTimestamp string `json:"quotaUsageTimestamp,omitempty"`
QuotaUpdateState string `json:"quotaUpdateState,omitempty"`
}
type CreateKey struct {
Value string `json:"value,omitempty"`
Label string `json:"label,omitempty"`
Tags []string `json:"tags,omitempty"`
CollectionId int `json:"collectionId,omitempty"`
Description string `json:"description,omitempty"`
Mode string `json:"mode,omitempty"`
}
func CollectionAddKey(collectionId int, name, value string) (*Key, error) {
req, err := client.NewJSONRequest(
Config,
"POST",
"/apikey-manager-api/v1/keys",
&CreateKey{
Label: name,
Value: value,
CollectionId: collectionId,
Mode: "CREATE_ONE",
},
)
if err != nil {
return nil, err
}
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
if client.IsError(res) {
return nil, client.NewAPIError(res)
}
rep := &Key{}
if err = client.BodyJSON(res, rep); err != nil {
return nil, err
}
return rep, nil
}
type ImportKey struct {
Name string `json:"name,omitempty"`
Content string `json:"content,omitempty"`
CollectionId int `json:"collectionId,omitempty"`
}
func CollectionImportKeys(collectionId int, filename string) (*Keys, error) {
fileContent, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
req, err := client.NewJSONRequest(
Config,
"POST",
"/apikey-manager-api/v1/keys/import",
&ImportKey{
Name: filename,
CollectionId: collectionId,
Content: string(fileContent),
},
)
if err != nil {
return nil, err
}
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
if client.IsError(res) {
return nil, client.NewAPIError(res)
}
rep := &Keys{}
err = json.Unmarshal(fileContent, rep)
return rep, err
}
type RevokeKeys struct {
Keys Keys `json:"keys,omitempty"`
}
func RevokeKey(key int) (*Key, error) {
req, err := client.NewJSONRequest(
Config,
"POST",
"/apikey-manager-api/v1/keys/revoke",
&RevokeKeys{
Keys: Keys{key},
},
)
if err != nil {
return nil, err
}
res, err := client.Do(Config, req)
if err != nil {
return nil, err
}
if client.IsError(res) {
return nil, client.NewAPIError(res)
}
return &Key{}, nil
}
|