You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bog/dataswamp/swampfile/valueobjects.go

53 lines
713 B
Go

package swampfile
import (
"io"
3 years ago
"path"
"path/filepath"
"strings"
"time"
)
type SwampOutFile interface {
Path() string
Size() int64
Modified() time.Time
io.Reader
io.Seeker
io.Closer
}
type SwampInFile interface {
Path() string
Size() int64
Modified() time.Time
io.Writer
io.Seeker
io.Closer
}
type FileReference struct {
Path string
UserAgent string
}
3 years ago
type DeletedSwampFile struct {
Path string
Size int64
}
func (fr *FileReference) Clean(strict bool) (*FileReference, error) {
3 years ago
c := filepath.FromSlash(path.Clean("/" + strings.Trim(fr.Path, "/")))
if c != fr.Path && strict {
return nil, ErrUnacceptablePath
3 years ago
}
n := FileReference{
c,
fr.UserAgent,
}
3 years ago
return &n, nil
3 years ago
}