sftpgo-mirror/vfs/fileinfo.go

79 lines
1.7 KiB
Go
Raw Normal View History

package vfs
import (
"os"
2020-08-11 21:56:10 +00:00
"path"
"time"
)
2020-08-11 21:56:10 +00:00
// FileContentTyper is an optional interface for vfs.FileInfo
type FileContentTyper interface {
GetContentType() string
}
// FileInfo implements os.FileInfo for a Cloud Storage file.
type FileInfo struct {
name string
sizeInBytes int64
modTime time.Time
mode os.FileMode
2020-08-11 21:56:10 +00:00
contentType string
}
// NewFileInfo creates file info.
func NewFileInfo(name string, isDirectory bool, sizeInBytes int64, modTime time.Time) FileInfo {
mode := os.FileMode(0644)
2020-08-11 21:56:10 +00:00
contentType := ""
if isDirectory {
mode = os.FileMode(0755) | os.ModeDir
2020-08-11 21:56:10 +00:00
contentType = "inode/directory"
}
return FileInfo{
2020-08-11 21:56:10 +00:00
name: path.Base(name), // we have always Unix style paths here
sizeInBytes: sizeInBytes,
modTime: modTime,
mode: mode,
2020-08-11 21:56:10 +00:00
contentType: contentType,
}
}
// Name provides the base name of the file.
func (fi FileInfo) Name() string {
return fi.name
}
// Size provides the length in bytes for a file.
func (fi FileInfo) Size() int64 {
return fi.sizeInBytes
}
// Mode provides the file mode bits
func (fi FileInfo) Mode() os.FileMode {
return fi.mode
}
// ModTime provides the last modification time.
func (fi FileInfo) ModTime() time.Time {
return fi.modTime
}
// IsDir provides the abbreviation for Mode().IsDir()
func (fi FileInfo) IsDir() bool {
return fi.mode&os.ModeDir != 0
}
// Sys provides the underlying data source (can return nil)
func (fi FileInfo) Sys() interface{} {
return fi.getFileInfoSys()
}
2020-08-11 21:56:10 +00:00
func (fi *FileInfo) setContentType(contenType string) {
fi.contentType = contenType
}
// GetContentType implements FileContentTyper interface
func (fi FileInfo) GetContentType() string {
return fi.contentType
}