Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/model/torrent.go

127 lignes
4,1 Kio
Go
Brut Vue normale Historique

package model
import (
"github.com/ewhal/nyaa/config"
2017-05-06 04:18:24 +02:00
"github.com/ewhal/nyaa/util"
"fmt"
"html/template"
"strconv"
"strings"
"time"
)
type Feed struct {
Id int
Name string
Hash string
Magnet string
Timestamp string
}
type Torrents struct {
2017-05-09 01:56:57 +02:00
Id uint `gorm:"column:torrent_id;primary_key"`
Name string `gorm:"column:torrent_name"`
Hash string `gorm:"column:torrent_hash"`
Category int `gorm:"column:category"`
Sub_Category int `gorm:"column:sub_category"`
Status int `gorm:"column:status"`
Date time.Time `gorm:"column:date"`
UploaderId uint `gorm:"column:uploader"`
Downloads int `gorm:"column:downloads"`
Stardom int `gorm:"column:stardom"`
Filesize int64 `gorm:"column:filesize"`
Description string `gorm:"column:description"`
WebsiteLink string `gorm:"column:website_link"`
2017-05-08 19:26:29 +02:00
Uploader *User `gorm:"ForeignKey:UploaderId"`
2017-05-09 01:56:57 +02:00
OldComments []OldComment `gorm:"ForeignKey:torrent_id"`
Comments []Comment `gorm:"ForeignKey:torrent_id"`
}
2017-05-08 21:18:48 +02:00
/* We need JSON Object instead because of Magnet URL that is not in the database but generated dynamically */
type ApiResultJson struct {
2017-05-08 04:06:11 +02:00
Torrents []TorrentsJson `json:"torrents"`
QueryRecordCount int `json:"queryRecordCount"`
TotalRecordCount int `json:"totalRecordCount"`
}
2017-05-08 04:06:11 +02:00
type CommentsJson struct {
Username string `json:"username"`
2017-05-08 20:07:25 +02:00
Content template.HTML `json:"content"`
Date time.Time `json:"date"`
2017-05-08 04:06:11 +02:00
}
type TorrentsJson struct {
2017-05-08 04:06:11 +02:00
Id string `json:"id"`
Name string `json:"name"`
Status int `json:"status"`
Hash string `json:"hash"`
Date string `json:"date"`
Filesize string `json:"filesize"`
Description template.HTML `json:"description"`
Comments []CommentsJson `json:"comments"`
Sub_Category string `json:"sub_category"`
Category string `json:"category"`
2017-05-09 08:15:56 +02:00
Downloads int `json:"downloads"`
UploaderId uint `json:"uploader_id"`
UploaderName template.HTML `json:"uploader_name"`
2017-05-09 08:15:56 +02:00
WebsiteLink template.URL `json:"website_link"`
2017-05-08 04:06:11 +02:00
Magnet template.URL `json:"magnet"`
TorrentLink template.URL `json:"torrent"`
}
/* Model Conversion to Json */
func (t *Torrents) ToJson() TorrentsJson {
2017-05-07 03:10:35 +02:00
magnet := util.InfoHashToMagnet(strings.TrimSpace(t.Hash), t.Name, config.Trackers...)
2017-05-09 01:56:57 +02:00
commentsJson := make([]CommentsJson, 0, len(t.OldComments)+len(t.Comments))
2017-05-08 20:07:25 +02:00
for _, c := range t.OldComments {
commentsJson = append(commentsJson, CommentsJson{Username: c.Username, Content: template.HTML(c.Content), Date: c.Date})
}
for _, c := range t.Comments {
commentsJson = append(commentsJson, CommentsJson{Username: c.User.Username, Content: util.MarkdownToHTML(c.Content), Date: c.CreatedAt})
2017-05-08 04:06:11 +02:00
}
uploader := ""
if t.Uploader != nil {
uploader = t.Uploader.Username
}
torrentlink := ""
if t.Id <= config.LastOldTorrentId && len(config.TorrentCacheLink) > 0 {
torrentlink = fmt.Sprintf(config.TorrentCacheLink, t.Hash)
} else if t.Id > config.LastOldTorrentId && len(config.TorrentStorageLink) > 0 {
torrentlink = fmt.Sprintf(config.TorrentStorageLink, t.Hash)
}
res := TorrentsJson{
2017-05-08 19:26:29 +02:00
Id: strconv.FormatUint(uint64(t.Id), 10),
Name: t.Name,
Status: t.Status,
Hash: t.Hash,
2017-05-08 19:26:29 +02:00
Date: t.Date.Format(time.RFC3339),
2017-05-07 13:51:59 +02:00
Filesize: util.FormatFilesize2(t.Filesize),
Description: util.MarkdownToHTML(t.Description),
2017-05-08 04:06:11 +02:00
Comments: commentsJson,
Sub_Category: strconv.Itoa(t.Sub_Category),
Category: strconv.Itoa(t.Category),
2017-05-09 08:15:56 +02:00
Downloads: t.Downloads,
UploaderId: t.UploaderId,
UploaderName: util.SafeText(uploader),
2017-05-09 08:15:56 +02:00
WebsiteLink: util.Safe(t.WebsiteLink),
Magnet: util.Safe(magnet),
TorrentLink: util.Safe(torrentlink)}
return res
}
/* Complete the functions when necessary... */
2017-05-09 01:56:57 +02:00
// Map Torrents to TorrentsToJSON without reallocations
func TorrentsToJSON(t []Torrents) []TorrentsJson {
json := make([]TorrentsJson, len(t))
for i := range t {
json[i] = t[i].ToJson()
}
return json
}