Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Add filesize and dates to page

Cette révision appartient à :
Eliot Whalan 2017-05-05 09:52:56 +10:00
Parent 6e6b34afb7
révision 8a513bcc01
2 fichiers modifiés avec 52 ajouts et 42 suppressions

Voir le fichier

@ -98,6 +98,8 @@
<th>Id</th> <th>Id</th>
<th>Name</th> <th>Name</th>
<th>Hash</th> <th>Hash</th>
<th>Date</th>
<th>Size</th>
<th>Links</th> <th>Links</th>
</tr> </tr>
{{ range .ListTorrents}} {{ range .ListTorrents}}
@ -107,6 +109,8 @@
<td>{{.Id}}</td> <td>{{.Id}}</td>
<td>{{.Name}}</td> <td>{{.Name}}</td>
<td>{{.Hash}}</td> <td>{{.Hash}}</td>
<td>{{.Date}}</td>
<td>{{.Filesize}}</td>
<td><a href="{{.Magnet}}" title="Magnet link" ><span class="glyphicon glyphicon-magnet" aria-hidden="true"></span></a> <td><a href="{{.Magnet}}" title="Magnet link" ><span class="glyphicon glyphicon-magnet" aria-hidden="true"></span></a>

Voir le fichier

@ -10,31 +10,31 @@ import (
) )
type Feed struct { type Feed struct {
Id int Id int
Name string Name string
Hash string Hash string
Magnet string Magnet string
Timestamp string Timestamp string
} }
type Categories struct { type Categories struct {
Category_id int Category_id int
Category_name string Category_name string
Torrents []Torrents `gorm:"ForeignKey:category_id;AssociationForeignKey:category_id"` Torrents []Torrents `gorm:"ForeignKey:category_id;AssociationForeignKey:category_id"`
Sub_Categories []Sub_Categories `gorm:"ForeignKey:category_id;AssociationForeignKey:parent_id"` Sub_Categories []Sub_Categories `gorm:"ForeignKey:category_id;AssociationForeignKey:parent_id"`
} }
type Sub_Categories struct { type Sub_Categories struct {
Sub_category_id int Sub_category_id int
Sub_category_name string Sub_category_name string
Parent_id int Parent_id int
Torrents []Torrents `gorm:"ForeignKey:sub_category_id;AssociationForeignKey:sub_category_id"` Torrents []Torrents `gorm:"ForeignKey:sub_category_id;AssociationForeignKey:sub_category_id"`
} }
type Statuses struct { type Statuses struct {
Status_id int Status_id int
Status_name string Status_name string
Torrents []Torrents `gorm:"ForeignKey:status_id;AssociationForeignKey:status_id"` Torrents []Torrents `gorm:"ForeignKey:status_id;AssociationForeignKey:status_id"`
} }
type Torrents struct { type Torrents struct {
@ -42,12 +42,12 @@ type Torrents struct {
Name string `gorm:"column:torrent_name"` Name string `gorm:"column:torrent_name"`
Category_id int `gorm:"column:category_id"` Category_id int `gorm:"column:category_id"`
Sub_category_id int `gorm:"column:sub_category_id"` Sub_category_id int `gorm:"column:sub_category_id"`
Status_id int `gorm:"column:status_id"` Status_id int `gorm:"column:status_id"`
Hash string `gorm:"column:torrent_hash"` Hash string `gorm:"column:torrent_hash"`
Date int `gorm:"column:date"` Date int `gorm:"column:date"`
Downloads int `gorm:"column:downloads"` Downloads int `gorm:"column:downloads"`
Filesize string `gorm:"column:filesize"` Filesize string `gorm:"column:filesize"`
Description []byte `gorm:"column:description"` Description []byte `gorm:"column:description"`
Statuses Statuses `gorm:"ForeignKey:status_id;AssociationForeignKey:status_id"` Statuses Statuses `gorm:"ForeignKey:status_id;AssociationForeignKey:status_id"`
Categories Categories `gorm:"ForeignKey:category_id;AssociationForeignKey:category_id"` Categories Categories `gorm:"ForeignKey:category_id;AssociationForeignKey:category_id"`
Sub_Categories Sub_Categories `gorm:"ForeignKey:sub_category_id;AssociationForeignKey:sub_category_id"` Sub_Categories Sub_Categories `gorm:"ForeignKey:sub_category_id;AssociationForeignKey:sub_category_id"`
@ -67,11 +67,13 @@ type CategoryJson struct {
} }
type TorrentsJson struct { type TorrentsJson struct {
Id string `json: "id"` // Is there a need to put the ID? Id string `json: "id"` // Is there a need to put the ID?
Name string `json: "name"` Name string `json: "name"`
Status int `json: "status"` Status int `json: "status"`
Hash string `json: "hash"` Hash string `json: "hash"`
Magnet template.URL `json: "magnet"` Date int `json: "date"`
Filesize string `json: "filesize"`
Magnet template.URL `json: "magnet"`
} }
type WhereParams struct { type WhereParams struct {
@ -103,15 +105,15 @@ func getFeeds() []Feed {
rows, err := db.DB(). rows, err := db.DB().
Query( Query(
"SELECT `torrent_id` AS `id`, `torrent_name` AS `name`, `torrent_hash` AS `hash`, `timestamp` FROM `torrents` " + "SELECT `torrent_id` AS `id`, `torrent_name` AS `name`, `torrent_hash` AS `hash`, `timestamp` FROM `torrents` " +
"ORDER BY `timestamp` desc LIMIT 50") "ORDER BY `timestamp` desc LIMIT 50")
if ( err == nil ) { if err == nil {
for rows.Next() { for rows.Next() {
item := Feed{} item := Feed{}
rows.Scan( &item.Id, &item.Name, &item.Hash, &item.Timestamp ) rows.Scan(&item.Id, &item.Name, &item.Hash, &item.Timestamp)
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(item.Hash) + "&dn=" + item.Name + trackers magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(item.Hash) + "&dn=" + item.Name + trackers
item.Magnet = magnet item.Magnet = magnet
// memory hog // memory hog
result = append( result, item ) result = append(result, item)
} }
rows.Close() rows.Close()
} }
@ -131,23 +133,25 @@ func getTorrentById(id string) (Torrents, error) {
func getTorrentsOrderBy(parameters *WhereParams, orderBy string, limit int, offset int) []Torrents { func getTorrentsOrderBy(parameters *WhereParams, orderBy string, limit int, offset int) []Torrents {
var torrents []Torrents var torrents []Torrents
var dbQuery *gorm.DB var dbQuery *gorm.DB
if (parameters != nil) { // if there is where parameters if parameters != nil { // if there is where parameters
dbQuery = db.Model(&torrents).Where(parameters.conditions, parameters.params...) dbQuery = db.Model(&torrents).Where(parameters.conditions, parameters.params...)
} else { } else {
dbQuery = db.Model(&torrents) dbQuery = db.Model(&torrents)
} }
if (orderBy == "") { orderBy = "torrent_id DESC" } // Default OrderBy if orderBy == "" {
orderBy = "torrent_id DESC"
} // Default OrderBy
if limit != 0 || offset != 0 { // if limits provided if limit != 0 || offset != 0 { // if limits provided
dbQuery = dbQuery.Limit(limit).Offset(offset) dbQuery = dbQuery.Limit(limit).Offset(offset)
} }
dbQuery.Order(orderBy).Preload("Categories").Preload("Sub_Categories").Find(&torrents) dbQuery.Order(orderBy).Preload("Categories").Preload("Sub_Categories").Find(&torrents)
return torrents return torrents
} }
/* Functions to simplify the get parameters of the main function /* Functions to simplify the get parameters of the main function
* *
* Get Torrents with where parameters and limits, order by default * Get Torrents with where parameters and limits, order by default
*/ */
func getTorrents(parameters WhereParams, limit int, offset int) []Torrents { func getTorrents(parameters WhereParams, limit int, offset int) []Torrents {
@ -163,7 +167,7 @@ func getTorrentsDB(parameters WhereParams) []Torrents {
/* Function to get all torrents /* Function to get all torrents
*/ */
func getAllTorrentsOrderBy(orderBy string, limit int, offset int) [] Torrents { func getAllTorrentsOrderBy(orderBy string, limit int, offset int) []Torrents {
return getTorrentsOrderBy(nil, orderBy, limit, offset) return getTorrentsOrderBy(nil, orderBy, limit, offset)
} }
@ -190,11 +194,13 @@ func getAllCategories(populatedWithTorrents bool) []Categories {
func (t *Torrents) toJson() TorrentsJson { func (t *Torrents) toJson() TorrentsJson {
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(t.Hash) + "&dn=" + t.Name + trackers magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(t.Hash) + "&dn=" + t.Name + trackers
res := TorrentsJson{ res := TorrentsJson{
Id: strconv.Itoa(t.Id), Id: strconv.Itoa(t.Id),
Name: html.UnescapeString(t.Name), Name: html.UnescapeString(t.Name),
Status: t.Status_id, Status: t.Status_id,
Hash: t.Hash, Hash: t.Hash,
Magnet: safe(magnet)} Date: t.Date,
Filesize: t.Filesize,
Magnet: safe(magnet)}
return res return res
} }