48 lignes
1,4 Kio
Go
48 lignes
1,4 Kio
Go
package torrents
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/NyaaPantsu/nyaa/models"
|
|
"github.com/NyaaPantsu/nyaa/utils/log"
|
|
"github.com/NyaaPantsu/nyaa/utils/validator/torrent"
|
|
)
|
|
|
|
func Create(user *models.User, uploadForm *torrentValidator.TorrentRequest) (*models.Torrent, error) {
|
|
torrent := models.Torrent{
|
|
Name: uploadForm.Name,
|
|
Category: uploadForm.CategoryID,
|
|
SubCategory: uploadForm.SubCategoryID,
|
|
Status: uploadForm.Status,
|
|
Hidden: uploadForm.Hidden,
|
|
Hash: uploadForm.Infohash,
|
|
Date: time.Now(),
|
|
Filesize: uploadForm.Filesize,
|
|
Description: uploadForm.Description,
|
|
WebsiteLink: uploadForm.WebsiteLink,
|
|
UploaderID: user.ID}
|
|
torrent.ParseTrackers(uploadForm.Trackers)
|
|
models.ORM.Create(&torrent)
|
|
if models.ElasticSearchClient != nil {
|
|
err := torrent.AddToESIndex(models.ElasticSearchClient)
|
|
if err == nil {
|
|
log.Infof("Successfully added torrent to ES index.")
|
|
} else {
|
|
log.Errorf("Unable to add torrent to ES index: %s", err)
|
|
}
|
|
} else {
|
|
log.Error("Unable to create elasticsearch client")
|
|
}
|
|
NewTorrentEvent(user, &torrent)
|
|
if len(uploadForm.FileList) > 0 {
|
|
for _, uploadedFile := range uploadForm.FileList {
|
|
file := models.File{TorrentID: torrent.ID, Filesize: uploadForm.Filesize}
|
|
err := file.SetPath(uploadedFile.Path)
|
|
if err != nil {
|
|
return &torrent, err
|
|
}
|
|
models.ORM.Create(&file)
|
|
}
|
|
}
|
|
return &torrent, nil
|
|
}
|