mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
61 lines
1.9 KiB
Go
61 lines
1.9 KiB
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
"mime"
|
|
"path/filepath"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/filestorage"
|
|
"github.com/grafana/grafana/pkg/services/rendering"
|
|
"github.com/grafana/grafana/pkg/services/store/sanitizer"
|
|
"github.com/grafana/grafana/pkg/services/user"
|
|
)
|
|
|
|
func (s *standardStorageService) sanitizeContents(ctx context.Context, user *user.SignedInUser, req *UploadRequest, storagePath string) ([]byte, error) {
|
|
if req.EntityType == EntityTypeImage {
|
|
ext := filepath.Ext(req.Path)
|
|
if ext == ".svg" {
|
|
resp, err := sanitizer.SanitizeSVG(ctx, &rendering.SanitizeSVGRequest{
|
|
Filename: storagePath,
|
|
Content: req.Contents,
|
|
})
|
|
if err != nil {
|
|
if s.cfg != nil && s.cfg.AllowUnsanitizedSvgUpload {
|
|
grafanaStorageLogger.Debug("Allowing unsanitized svg upload", "filename", req.Path, "sanitizationError", err)
|
|
return req.Contents, nil
|
|
} else {
|
|
grafanaStorageLogger.Debug("Disallowing unsanitized svg upload", "filename", req.Path, "sanitizationError", err)
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return resp.Sanitized, nil
|
|
}
|
|
}
|
|
|
|
return req.Contents, nil
|
|
}
|
|
|
|
func (s *standardStorageService) sanitizeUploadRequest(ctx context.Context, user *user.SignedInUser, req *UploadRequest, storagePath string) (*filestorage.UpsertFileCommand, error) {
|
|
contents, err := s.sanitizeContents(ctx, user, req, storagePath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// we have already validated that the file contents match the extension in `./validate.go`
|
|
mimeType := mime.TypeByExtension(filepath.Ext(req.Path))
|
|
if mimeType == "" {
|
|
grafanaStorageLogger.Info("Failed to find mime type", "path", req.Path)
|
|
mimeType = "application/octet-stream"
|
|
}
|
|
|
|
return &filestorage.UpsertFileCommand{
|
|
Path: storagePath,
|
|
Contents: contents,
|
|
MimeType: mimeType,
|
|
CacheControl: req.CacheControl,
|
|
ContentDisposition: req.ContentDisposition,
|
|
Properties: req.Properties,
|
|
}, nil
|
|
}
|