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/models.go

216 lignes
6,3 Kio
Go
Brut Vue normale Historique

package main
import (
2017-05-04 12:01:27 +02:00
"errors"
"github.com/jinzhu/gorm"
"html"
"html/template"
"strconv"
2017-05-04 12:31:40 +02:00
"strings"
)
2017-05-04 21:48:40 +02:00
type Feed struct {
2017-05-05 06:24:58 +02:00
Id int
Name string
Hash string
Magnet string
Timestamp string
2017-05-04 21:48:40 +02:00
}
type Categories struct {
2017-05-05 06:24:58 +02:00
Category_id int
Category_name string
Torrents []Torrents `gorm:"ForeignKey:category_id;AssociationForeignKey:category_id"`
Sub_Categories []Sub_Categories `gorm:"ForeignKey:category_id;AssociationForeignKey:parent_id"`
}
type Sub_Categories struct {
2017-05-05 06:24:58 +02:00
Sub_category_id int
Sub_category_name string
Parent_id int
2017-05-04 12:01:27 +02:00
Torrents []Torrents `gorm:"ForeignKey:sub_category_id;AssociationForeignKey:sub_category_id"`
}
2017-05-05 06:24:58 +02:00
type Statuses struct {
Status_id int
Status_name string
Torrents []Torrents `gorm:"ForeignKey:status_id;AssociationForeignKey:status_id"`
}
type Torrents struct {
2017-05-04 14:01:07 +02:00
Id int `gorm:"column:torrent_id"`
Name string `gorm:"column:torrent_name"`
Category_id int `gorm:"column:category_id"`
Sub_category_id int `gorm:"column:sub_category_id"`
2017-05-05 06:24:58 +02:00
Status_id int `gorm:"column:status_id"`
2017-05-04 12:01:27 +02:00
Hash string `gorm:"column:torrent_hash"`
2017-05-05 06:24:58 +02:00
Date int `gorm:"column:date"`
Downloads int `gorm:"column:downloads"`
Filesize string `gorm:"column:filesize"`
Description []byte `gorm:"column:description"`
Statuses Statuses `gorm:"ForeignKey:status_id;AssociationForeignKey:status_id"`
2017-05-04 12:01:27 +02:00
Categories Categories `gorm:"ForeignKey:category_id;AssociationForeignKey:category_id"`
Sub_Categories Sub_Categories `gorm:"ForeignKey:sub_category_id;AssociationForeignKey:sub_category_id"`
}
/* We need JSON Object instead because of Magnet URL that is not in the database but generated dynamically
--------------------------------------------------------------------------------------------------------------
JSON Models Oject
--------------------------------------------------------------------------------------------------------------
*/
type CategoryJson struct {
2017-05-04 12:01:27 +02:00
Category string `json: "category"`
Torrents []TorrentsJson `json: "torrents"`
QueryRecordCount int `json: "queryRecordCount"`
TotalRecordCount int `json: "totalRecordCount"`
}
type TorrentsJson struct {
2017-05-04 12:01:27 +02:00
Id string `json: "id"` // Is there a need to put the ID?
Name string `json: "name"`
Status int `json: "status"`
Hash string `json: "hash"`
Magnet template.URL `json: "magnet"`
}
type WhereParams struct {
conditions string // Ex : name LIKE ? AND category_id LIKE ?
2017-05-04 12:01:27 +02:00
params []interface{}
}
/* Each Page should have an object to pass to their own template */
type HomeTemplateVariables struct {
2017-05-04 12:01:27 +02:00
ListTorrents []TorrentsJson
ListCategories []Categories
Query string
2017-05-04 14:01:07 +02:00
Status string
2017-05-04 12:01:27 +02:00
Category string
2017-05-05 06:24:58 +02:00
Sort string
Order string
2017-05-04 12:01:27 +02:00
QueryRecordCount int
TotalRecordCount int
}
/* Function to interact with Models
*
* Get the torrents with where clause
*
2017-05-04 12:01:27 +02:00
*/
2017-05-04 21:48:40 +02:00
// don't need raw SQL once we get MySQL
func getFeeds() []Feed {
var result []Feed
rows, err := db.DB().
Query(
"SELECT `torrent_id` AS `id`, `torrent_name` AS `name`, `torrent_hash` AS `hash`, `timestamp` FROM `torrents` " +
2017-05-05 06:24:58 +02:00
"ORDER BY `timestamp` desc LIMIT 50")
if err == nil {
2017-05-04 21:48:40 +02:00
for rows.Next() {
item := Feed{}
2017-05-05 06:24:58 +02:00
rows.Scan(&item.Id, &item.Name, &item.Hash, &item.Timestamp)
2017-05-04 21:48:40 +02:00
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(item.Hash) + "&dn=" + item.Name + trackers
item.Magnet = magnet
// memory hog
2017-05-05 06:24:58 +02:00
result = append(result, item)
2017-05-04 21:48:40 +02:00
}
rows.Close()
}
return result
}
func getTorrentById(id string) (Torrents, error) {
var torrent Torrents
2017-05-04 14:51:16 +02:00
if db.Where("torrent_id = ?", id).Find(&torrent).RecordNotFound() {
return torrent, errors.New("Article is not found.")
}
return torrent, nil
}
func getTorrentsOrderBy(parameters *WhereParams, orderBy string, limit int, offset int) []Torrents {
var torrents []Torrents
var dbQuery *gorm.DB
2017-05-05 06:24:58 +02:00
if parameters != nil { // if there is where parameters
dbQuery = db.Model(&torrents).Where(parameters.conditions, parameters.params...)
} else {
dbQuery = db.Model(&torrents)
2017-05-05 06:24:58 +02:00
}
if orderBy == "" {
orderBy = "torrent_id DESC"
} // Default OrderBy
if limit != 0 || offset != 0 { // if limits provided
dbQuery = dbQuery.Limit(limit).Offset(offset)
}
2017-05-05 06:24:58 +02:00
dbQuery.Order(orderBy).Preload("Categories").Preload("Sub_Categories").Find(&torrents)
return torrents
}
2017-05-05 06:24:58 +02:00
/* Functions to simplify the get parameters of the main function
*
* Get Torrents with where parameters and limits, order by default
*/
func getTorrents(parameters WhereParams, limit int, offset int) []Torrents {
return getTorrentsOrderBy(&parameters, "", limit, offset)
}
/* Get Torrents with where parameters but no limit and order by default (get all the torrents corresponding in the db)
*/
2017-05-04 12:01:27 +02:00
func getTorrentsDB(parameters WhereParams) []Torrents {
return getTorrentsOrderBy(&parameters, "", 0, 0)
}
2017-05-04 12:01:27 +02:00
/* Function to get all torrents
*/
2017-05-05 06:24:58 +02:00
func getAllTorrentsOrderBy(orderBy string, limit int, offset int) []Torrents {
return getTorrentsOrderBy(nil, orderBy, limit, offset)
}
func getAllTorrents(limit int, offset int) []Torrents {
return getTorrentsOrderBy(nil, "", limit, offset)
}
2017-05-04 12:01:27 +02:00
func getAllTorrentsDB() []Torrents {
return getTorrentsOrderBy(nil, "", 0, 0)
}
/* Function to get all categories with/without torrents (bool)
2017-05-04 12:01:27 +02:00
*/
func getAllCategories(populatedWithTorrents bool) []Categories {
var categories []Categories
if populatedWithTorrents {
db.Preload("Torrents").Preload("Sub_Categories").Find(&categories)
} else {
db.Preload("Sub_Categories").Find(&categories)
}
return categories
}
2017-05-04 12:01:27 +02:00
func (t *Torrents) toJson() TorrentsJson {
2017-05-04 12:30:12 +02:00
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(t.Hash) + "&dn=" + t.Name + trackers
res := TorrentsJson{
Id: strconv.Itoa(t.Id),
2017-05-04 12:01:27 +02:00
Name: html.UnescapeString(t.Name),
2017-05-05 06:24:58 +02:00
Status: t.Status_id,
Hash: t.Hash,
Magnet: safe(magnet)}
2017-05-04 12:01:27 +02:00
return res
}
2017-05-04 12:01:27 +02:00
func createWhereParams(conditions string, params ...string) WhereParams {
whereParams := WhereParams{}
whereParams.conditions = conditions
for i, _ := range params {
whereParams.params = append(whereParams.params, params[i])
}
return whereParams
}
2017-05-04 12:01:27 +02:00
2017-05-05 06:24:58 +02:00
/* Complete the functions when necessary... */