1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-12-03 05:25:40 +00:00
imgsrv/types/types.go
Vincent Batts 4a23b6bac1
types: override webm as a video
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-08-08 16:10:27 -04:00

51 lines
993 B
Go

package types
import (
"mime"
"path/filepath"
"strings"
"time"
)
type Info struct {
Keywords []string // tags
Ip string // who uploaded it
Random int64
TimeStamp time.Time "timestamp,omitempty"
}
type File struct {
Metadata Info ",omitempty"
Md5 string
ChunkSize int
UploadDate time.Time
Length uint64
Filename string ",omitempty"
}
// ContentType guesses the mime-type by the file's extension
func (f *File) ContentType() string {
return mime.TypeByExtension(filepath.Ext(f.Filename))
}
func (f *File) IsImage() bool {
return strings.HasPrefix(f.ContentType(), "image")
}
func (f *File) IsVideo() bool {
if strings.HasSuffix(f.Filename, ".webm") {
return true
}
return strings.HasPrefix(f.ContentType(), "video")
}
func (f *File) IsAudio() bool {
return strings.HasPrefix(f.ContentType(), "audio")
}
// IdCount structure used for collecting values for a tag cloud
type IdCount struct {
Id string "_id"
Value int
Root string
}