1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-09-27 12:54:16 +00:00
imgsrv/types/types.go
Vincent Batts b3f5e06c4d
layout: humanize some values
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-04-07 14:55:13 -04:00

48 lines
931 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 {
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
}