18 lines
649 B
Go
18 lines
649 B
Go
package shorturls
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/api/dtos"
|
|
"github.com/grafana/grafana/pkg/apimachinery/identity"
|
|
)
|
|
|
|
type Service interface {
|
|
GetShortURLByUID(ctx context.Context, user identity.Requester, uid string) (*ShortUrl, error)
|
|
CreateShortURL(ctx context.Context, user identity.Requester, cmd *dtos.CreateShortURLCmd) (*ShortUrl, error)
|
|
UpdateLastSeenAt(ctx context.Context, shortURL *ShortUrl) error
|
|
DeleteStaleShortURLs(ctx context.Context, cmd *DeleteShortUrlCommand) error
|
|
ConvertShortURLToDTO(shortURL *ShortUrl, appURL string) *dtos.ShortURL
|
|
List(ctx context.Context, orgID int64) ([]*ShortUrl, error)
|
|
}
|