mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
05709ce411
* chore: add alias for InitTestDB and Session Adds an alias for the sqlstore InitTestDB and Session, and updates tests using these to reduce dependencies on the sqlstore.Store. * next pass of removing sqlstore imports * last little bit * remove mockstore where possible
83 lines
3.6 KiB
Go
83 lines
3.6 KiB
Go
package queryhistory
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/api/routing"
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
func ProvideService(cfg *setting.Cfg, sqlStore db.DB, routeRegister routing.RouteRegister) *QueryHistoryService {
|
|
s := &QueryHistoryService{
|
|
store: sqlStore,
|
|
Cfg: cfg,
|
|
RouteRegister: routeRegister,
|
|
log: log.New("query-history"),
|
|
}
|
|
|
|
// Register routes only when query history is enabled
|
|
if s.Cfg.QueryHistoryEnabled {
|
|
s.registerAPIEndpoints()
|
|
}
|
|
|
|
return s
|
|
}
|
|
|
|
type Service interface {
|
|
CreateQueryInQueryHistory(ctx context.Context, user *user.SignedInUser, cmd CreateQueryInQueryHistoryCommand) (QueryHistoryDTO, error)
|
|
SearchInQueryHistory(ctx context.Context, user *user.SignedInUser, query SearchInQueryHistoryQuery) (QueryHistorySearchResult, error)
|
|
DeleteQueryFromQueryHistory(ctx context.Context, user *user.SignedInUser, UID string) (int64, error)
|
|
PatchQueryCommentInQueryHistory(ctx context.Context, user *user.SignedInUser, UID string, cmd PatchQueryCommentInQueryHistoryCommand) (QueryHistoryDTO, error)
|
|
StarQueryInQueryHistory(ctx context.Context, user *user.SignedInUser, UID string) (QueryHistoryDTO, error)
|
|
UnstarQueryInQueryHistory(ctx context.Context, user *user.SignedInUser, UID string) (QueryHistoryDTO, error)
|
|
MigrateQueriesToQueryHistory(ctx context.Context, user *user.SignedInUser, cmd MigrateQueriesToQueryHistoryCommand) (int, int, error)
|
|
DeleteStaleQueriesInQueryHistory(ctx context.Context, olderThan int64) (int, error)
|
|
EnforceRowLimitInQueryHistory(ctx context.Context, limit int, starredQueries bool) (int, error)
|
|
}
|
|
|
|
type QueryHistoryService struct {
|
|
store db.DB
|
|
Cfg *setting.Cfg
|
|
RouteRegister routing.RouteRegister
|
|
log log.Logger
|
|
}
|
|
|
|
func (s QueryHistoryService) CreateQueryInQueryHistory(ctx context.Context, user *user.SignedInUser, cmd CreateQueryInQueryHistoryCommand) (QueryHistoryDTO, error) {
|
|
return s.createQuery(ctx, user, cmd)
|
|
}
|
|
|
|
func (s QueryHistoryService) SearchInQueryHistory(ctx context.Context, user *user.SignedInUser, query SearchInQueryHistoryQuery) (QueryHistorySearchResult, error) {
|
|
return s.searchQueries(ctx, user, query)
|
|
}
|
|
|
|
func (s QueryHistoryService) DeleteQueryFromQueryHistory(ctx context.Context, user *user.SignedInUser, UID string) (int64, error) {
|
|
return s.deleteQuery(ctx, user, UID)
|
|
}
|
|
|
|
func (s QueryHistoryService) PatchQueryCommentInQueryHistory(ctx context.Context, user *user.SignedInUser, UID string, cmd PatchQueryCommentInQueryHistoryCommand) (QueryHistoryDTO, error) {
|
|
return s.patchQueryComment(ctx, user, UID, cmd)
|
|
}
|
|
|
|
func (s QueryHistoryService) StarQueryInQueryHistory(ctx context.Context, user *user.SignedInUser, UID string) (QueryHistoryDTO, error) {
|
|
return s.starQuery(ctx, user, UID)
|
|
}
|
|
|
|
func (s QueryHistoryService) UnstarQueryInQueryHistory(ctx context.Context, user *user.SignedInUser, UID string) (QueryHistoryDTO, error) {
|
|
return s.unstarQuery(ctx, user, UID)
|
|
}
|
|
|
|
func (s QueryHistoryService) MigrateQueriesToQueryHistory(ctx context.Context, user *user.SignedInUser, cmd MigrateQueriesToQueryHistoryCommand) (int, int, error) {
|
|
return s.migrateQueries(ctx, user, cmd)
|
|
}
|
|
|
|
func (s QueryHistoryService) DeleteStaleQueriesInQueryHistory(ctx context.Context, olderThan int64) (int, error) {
|
|
return s.deleteStaleQueries(ctx, olderThan)
|
|
}
|
|
|
|
func (s QueryHistoryService) EnforceRowLimitInQueryHistory(ctx context.Context, limit int, starredQueries bool) (int, error) {
|
|
return s.enforceQueryHistoryRowLimit(ctx, limit, starredQueries)
|
|
}
|