Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Auto-fill filesize

Cette révision appartient à :
sfan5 2017-05-07 13:48:28 +02:00
Parent 767c91bacd
révision a6dd34a5de
2 fichiers modifiés avec 10 ajouts et 2 suppressions

Voir le fichier

@ -22,10 +22,12 @@ type UploadForm struct {
Magnet string
Infohash string
Category string
CategoryId int
SubCategoryId int
Description string
captcha.Captcha
CategoryId int
SubCategoryId int
Filesize int64
}
// TODO: these should be in another package (?)
@ -133,6 +135,9 @@ func (f *UploadForm) ExtractInfo(r *http.Request) error {
binInfohash := torrent.Infohash()
f.Infohash = strings.ToUpper(hex.EncodeToString(binInfohash[:]))
f.Magnet = util.InfoHashToMagnet(f.Infohash, f.Name)
// extract filesize
f.Filesize = int64(torrent.TotalSize())
} else {
// No torrent file provided
magnetUrl, parseErr := url.Parse(f.Magnet)
@ -148,6 +153,8 @@ func (f *UploadForm) ExtractInfo(r *http.Request) error {
if err != nil || !matched {
return metainfo.ErrInvalidTorrentFile
}
f.Filesize = 0
}

Voir le fichier

@ -41,6 +41,7 @@ func UploadHandler(w http.ResponseWriter, r *http.Request) {
Status: 1,
Hash: uploadForm.Infohash,
Date: time.Now().Unix(),
Filesize: uploadForm.Filesize, // FIXME: should set to NULL instead of 0
Description: uploadForm.Description,
Comments: []byte{}}
//fmt.Printf("%+v\n", torrent)