mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
d1c523838b
* API: Optionally list expired keys * Update docs
99 lines
2.3 KiB
Go
99 lines
2.3 KiB
Go
package sqlstore
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
func init() {
|
|
bus.AddHandler("sql", GetApiKeys)
|
|
bus.AddHandler("sql", GetApiKeyById)
|
|
bus.AddHandler("sql", GetApiKeyByName)
|
|
bus.AddHandlerCtx("sql", DeleteApiKeyCtx)
|
|
bus.AddHandler("sql", AddApiKey)
|
|
}
|
|
|
|
func GetApiKeys(query *models.GetApiKeysQuery) error {
|
|
sess := x.Limit(100, 0).Where("org_id=? and ( expires IS NULL or expires >= ?)",
|
|
query.OrgId, timeNow().Unix()).Asc("name")
|
|
if query.IncludeExpired {
|
|
sess = x.Limit(100, 0).Where("org_id=?", query.OrgId).Asc("name")
|
|
}
|
|
|
|
query.Result = make([]*models.ApiKey, 0)
|
|
return sess.Find(&query.Result)
|
|
}
|
|
|
|
func DeleteApiKeyCtx(ctx context.Context, cmd *models.DeleteApiKeyCommand) error {
|
|
return withDbSession(ctx, func(sess *DBSession) error {
|
|
var rawSql = "DELETE FROM api_key WHERE id=? and org_id=?"
|
|
_, err := sess.Exec(rawSql, cmd.Id, cmd.OrgId)
|
|
return err
|
|
})
|
|
}
|
|
|
|
func AddApiKey(cmd *models.AddApiKeyCommand) error {
|
|
return inTransaction(func(sess *DBSession) error {
|
|
key := models.ApiKey{OrgId: cmd.OrgId, Name: cmd.Name}
|
|
exists, _ := sess.Get(&key)
|
|
if exists {
|
|
return models.ErrDuplicateApiKey
|
|
}
|
|
|
|
updated := timeNow()
|
|
var expires *int64 = nil
|
|
if cmd.SecondsToLive > 0 {
|
|
v := updated.Add(time.Second * time.Duration(cmd.SecondsToLive)).Unix()
|
|
expires = &v
|
|
} else if cmd.SecondsToLive < 0 {
|
|
return models.ErrInvalidApiKeyExpiration
|
|
}
|
|
t := models.ApiKey{
|
|
OrgId: cmd.OrgId,
|
|
Name: cmd.Name,
|
|
Role: cmd.Role,
|
|
Key: cmd.Key,
|
|
Created: updated,
|
|
Updated: updated,
|
|
Expires: expires,
|
|
}
|
|
|
|
if _, err := sess.Insert(&t); err != nil {
|
|
return err
|
|
}
|
|
cmd.Result = &t
|
|
return nil
|
|
})
|
|
}
|
|
|
|
func GetApiKeyById(query *models.GetApiKeyByIdQuery) error {
|
|
var apikey models.ApiKey
|
|
has, err := x.Id(query.ApiKeyId).Get(&apikey)
|
|
|
|
if err != nil {
|
|
return err
|
|
} else if !has {
|
|
return models.ErrInvalidApiKey
|
|
}
|
|
|
|
query.Result = &apikey
|
|
return nil
|
|
}
|
|
|
|
func GetApiKeyByName(query *models.GetApiKeyByNameQuery) error {
|
|
var apikey models.ApiKey
|
|
has, err := x.Where("org_id=? AND name=?", query.OrgId, query.KeyName).Get(&apikey)
|
|
|
|
if err != nil {
|
|
return err
|
|
} else if !has {
|
|
return models.ErrInvalidApiKey
|
|
}
|
|
|
|
query.Result = &apikey
|
|
return nil
|
|
}
|