2017-06-28 13:42:38 +02:00
package controllers
2017-05-05 03:53:38 +02:00
2017-05-05 06:07:45 +02:00
import (
"html/template"
"math"
"net/url"
"strconv"
2017-05-17 16:05:42 +02:00
"time"
2017-05-14 21:45:50 +02:00
2017-07-11 22:25:52 +02:00
"strings"
2017-06-28 13:42:38 +02:00
"github.com/CloudyKit/jet"
2017-05-17 07:58:40 +02:00
"github.com/NyaaPantsu/nyaa/config"
2017-06-29 13:15:23 +02:00
"github.com/NyaaPantsu/nyaa/models"
"github.com/NyaaPantsu/nyaa/models/torrents"
2017-07-02 16:54:55 +02:00
"github.com/NyaaPantsu/nyaa/utils/categories"
"github.com/NyaaPantsu/nyaa/utils/filelist"
2017-07-02 23:53:23 +02:00
"github.com/NyaaPantsu/nyaa/utils/format"
2017-07-02 16:54:55 +02:00
"github.com/NyaaPantsu/nyaa/utils/publicSettings"
"github.com/NyaaPantsu/nyaa/utils/torrentLanguages"
Consistency, formatting, error checking, cleanup, and a couple bug fixes (#245)
* Checkpoint: it builds
The config, db, model, network, os, and public packages have had some
fixes to glaringly obvious flaws, dead code removed, and stylistic
changes.
* Style changes and old code removal in router
Router needs a lot of work done to its (lack of) error handling.
* Dead code removal and style changes
Now up to util/email/email.go. After I'm finished with the initial sweep
I'll go back and fix error handling and security issues. Then I'll fix
the broken API. Then I'll go through to add documentation and fix code
visibility.
* Finish dead code removal and style changes
Vendored libraries not touched. Everything still needs security fixes
and documentation. There's also one case of broken functionality.
* Fix accidental find-and-replace
* Style, error checking, saftey, bug fix changes
* Redo error checking erased during merge
* Re-add merge-erased fix. Make Safe safe.
2017-05-10 04:34:40 +02:00
)
2017-05-05 03:53:38 +02:00
2017-05-21 04:10:31 +02:00
type captchaData struct {
CaptchaID string
2017-05-27 19:08:47 +02:00
T publicSettings . TemplateTfunc
2017-05-21 04:10:31 +02:00
}
2017-05-25 21:54:58 +02:00
// FuncMap : Functions accessible in templates by {{ $.Function }}
2017-06-28 13:42:38 +02:00
func templateFunctions ( vars jet . VarMap ) jet . VarMap {
vars . Set ( "inc" , func ( i int ) int {
2017-05-17 13:16:40 +02:00
return i + 1
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "min" , math . Min )
vars . Set ( "genRoute" , func ( name string , params ... string ) string {
2017-05-05 17:14:10 +02:00
return "error"
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "getRawQuery" , func ( currentUrl * url . URL ) string {
return currentUrl . RawQuery
} )
vars . Set ( "genViewTorrentRoute" , func ( torrent_id uint ) string {
2017-05-13 00:31:27 +02:00
// Helper for when you have an uint while genRoute("view_torrent", ...) takes a string
// FIXME better solution?
s := strconv . FormatUint ( uint64 ( torrent_id ) , 10 )
2017-06-28 13:42:38 +02:00
url := "/view/" + s
return url
} )
vars . Set ( "genSearchWithOrdering" , func ( currentUrl * url . URL , sortBy string ) string {
2017-05-13 18:53:54 +02:00
values := currentUrl . Query ( )
2017-05-20 01:10:16 +02:00
order := false //Default is DESC
sort := "2" //Default is Date (Actually ID, but Date is the same thing)
2017-05-18 01:03:11 +02:00
2017-05-13 18:53:54 +02:00
if _ , ok := values [ "order" ] ; ok {
order , _ = strconv . ParseBool ( values [ "order" ] [ 0 ] )
}
2017-05-18 01:03:11 +02:00
if _ , ok := values [ "sort" ] ; ok {
sort = values [ "sort" ] [ 0 ]
}
2017-05-20 01:10:16 +02:00
2017-05-18 01:03:11 +02:00
if sort == sortBy {
order = ! order //Flip order by repeat-clicking
} else {
order = false //Default to descending when sorting by something new
}
2017-05-13 18:53:54 +02:00
values . Set ( "sort" , sortBy )
values . Set ( "order" , strconv . FormatBool ( order ) )
2017-06-28 13:42:38 +02:00
u , _ := url . Parse ( "/search" )
u . RawQuery = values . Encode ( )
2017-05-14 14:30:09 +02:00
2017-06-28 13:42:38 +02:00
return u . String ( )
} )
vars . Set ( "genSortArrows" , func ( currentUrl * url . URL , sortBy string ) template . HTML {
2017-05-15 02:01:04 +02:00
values := currentUrl . Query ( )
leftclass := "sortarrowdim"
rightclass := "sortarrowdim"
2017-05-18 01:03:11 +02:00
order := false
sort := "2"
2017-05-15 02:01:04 +02:00
if _ , ok := values [ "order" ] ; ok {
2017-05-18 01:03:11 +02:00
order , _ = strconv . ParseBool ( values [ "order" ] [ 0 ] )
}
if _ , ok := values [ "sort" ] ; ok {
sort = values [ "sort" ] [ 0 ]
}
if sort == sortBy {
if order {
rightclass = ""
} else {
leftclass = ""
2017-05-15 02:01:04 +02:00
}
}
2017-05-15 11:08:17 +02:00
arrows := "<span class=\"sortarrowleft " + leftclass + "\">▼</span><span class=\"" + rightclass + "\">▲</span>"
2017-05-15 02:01:04 +02:00
return template . HTML ( arrows )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "genNav" , func ( nav navigation , currentUrl * url . URL , pagesSelectable int ) template . HTML {
2017-05-10 16:43:50 +02:00
var ret = ""
2017-05-14 14:30:09 +02:00
if nav . TotalItem > 0 {
maxPages := math . Ceil ( float64 ( nav . TotalItem ) / float64 ( nav . MaxItemPerPage ) )
2017-05-05 03:53:38 +02:00
2017-05-14 14:30:09 +02:00
if nav . CurrentPage - 1 > 0 {
2017-07-06 23:54:21 +02:00
url := "/" + nav . Route + "/1"
2017-06-28 13:42:38 +02:00
ret = ret + "<a id=\"page-prev\" href=\"" + url + "?" + currentUrl . RawQuery + "\" aria-label=\"Previous\"><li><span aria-hidden=\"true\">«</span></li></a>"
2017-05-14 14:30:09 +02:00
}
startValue := 1
if nav . CurrentPage > pagesSelectable / 2 {
startValue = ( int ( math . Min ( ( float64 ( nav . CurrentPage ) + math . Floor ( float64 ( pagesSelectable ) / 2 ) ) , maxPages ) ) - pagesSelectable + 1 )
2017-05-05 06:07:45 +02:00
}
2017-05-20 16:26:22 +02:00
if startValue < 1 {
startValue = 1
}
2017-05-14 14:30:09 +02:00
endValue := ( startValue + pagesSelectable - 1 )
if endValue > int ( maxPages ) {
endValue = int ( maxPages )
}
for i := startValue ; i <= endValue ; i ++ {
pageNum := strconv . Itoa ( i )
2017-07-06 23:54:21 +02:00
url := "/" + nav . Route + "/" + pageNum
2017-06-28 13:42:38 +02:00
ret = ret + "<a aria-label=\"Page " + strconv . Itoa ( i ) + "\" href=\"" + url + "?" + currentUrl . RawQuery + "\">" + "<li"
2017-05-14 14:30:09 +02:00
if i == nav . CurrentPage {
ret = ret + " class=\"active\""
}
2017-05-27 09:16:43 +02:00
ret = ret + ">" + strconv . Itoa ( i ) + "</li></a>"
2017-05-14 14:30:09 +02:00
}
if nav . CurrentPage < int ( maxPages ) {
2017-07-06 23:54:21 +02:00
url := "/" + nav . Route + "/" + strconv . Itoa ( nav . CurrentPage + 1 )
2017-06-28 13:42:38 +02:00
ret = ret + "<a id=\"page-next\" href=\"" + url + "?" + currentUrl . RawQuery + "\" aria-label=\"Next\"><li><span aria-hidden=\"true\">»</span></li></a>"
2017-05-14 14:30:09 +02:00
}
2017-05-25 21:54:58 +02:00
itemsThisPageStart := nav . MaxItemPerPage * ( nav . CurrentPage - 1 ) + 1
2017-05-24 16:14:24 +02:00
itemsThisPageEnd := nav . MaxItemPerPage * nav . CurrentPage
if nav . TotalItem < itemsThisPageEnd {
itemsThisPageEnd = nav . TotalItem
}
ret = ret + "<p>" + strconv . Itoa ( itemsThisPageStart ) + "-" + strconv . Itoa ( itemsThisPageEnd ) + "/" + strconv . Itoa ( nav . TotalItem ) + "</p>"
2017-05-10 16:43:50 +02:00
}
2017-05-05 06:07:45 +02:00
return template . HTML ( ret )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "Sukebei" , config . IsSukebei )
vars . Set ( "getDefaultLanguage" , publicSettings . GetDefaultLanguage )
vars . Set ( "getAvatar" , func ( hash string , size int ) string {
Consistency, formatting, error checking, cleanup, and a couple bug fixes (#245)
* Checkpoint: it builds
The config, db, model, network, os, and public packages have had some
fixes to glaringly obvious flaws, dead code removed, and stylistic
changes.
* Style changes and old code removal in router
Router needs a lot of work done to its (lack of) error handling.
* Dead code removal and style changes
Now up to util/email/email.go. After I'm finished with the initial sweep
I'll go back and fix error handling and security issues. Then I'll fix
the broken API. Then I'll go through to add documentation and fix code
visibility.
* Finish dead code removal and style changes
Vendored libraries not touched. Everything still needs security fixes
and documentation. There's also one case of broken functionality.
* Fix accidental find-and-replace
* Style, error checking, saftey, bug fix changes
* Redo error checking erased during merge
* Re-add merge-erased fix. Make Safe safe.
2017-05-10 04:34:40 +02:00
return "https://www.gravatar.com/avatar/" + hash + "?s=" + strconv . Itoa ( size )
2017-06-28 13:42:38 +02:00
} )
2017-07-02 23:53:23 +02:00
2017-07-01 23:09:35 +02:00
vars . Set ( "DisplayTorrent" , func ( t models . Torrent , u * models . User ) bool {
2017-07-02 23:53:23 +02:00
return ( ! t . Hidden && t . Status != 0 ) || u . CurrentOrAdmin ( t . UploaderID )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "NoEncode" , func ( str string ) template . HTML {
2017-05-10 22:03:57 +02:00
return template . HTML ( str )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "calcWidthSeed" , func ( seed uint32 , leech uint32 ) float64 {
2017-05-14 14:30:09 +02:00
return float64 ( float64 ( seed ) / ( float64 ( seed ) + float64 ( leech ) ) ) * 100
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "calcWidthLeech" , func ( seed uint32 , leech uint32 ) float64 {
2017-05-14 14:30:09 +02:00
return float64 ( float64 ( leech ) / ( float64 ( seed ) + float64 ( leech ) ) ) * 100
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "formatDateRFC" , func ( t time . Time ) string {
2017-05-17 16:05:42 +02:00
// because time.* isn't available in templates...
return t . Format ( time . RFC3339 )
2017-06-28 13:42:38 +02:00
} )
2017-07-02 23:53:23 +02:00
vars . Set ( "GetHostname" , format . GetHostname )
2017-07-06 22:19:44 +02:00
vars . Set ( "GetCategories" , func ( keepParent bool , keepChild bool ) categories . Categories {
2017-07-06 21:53:13 +02:00
return categories . GetSelect ( keepParent , keepChild )
2017-06-28 13:42:38 +02:00
} )
2017-07-06 22:19:44 +02:00
vars . Set ( "GetCategory" , func ( category string , keepParent bool ) ( categoryRet categories . Categories ) {
cats := categories . GetSelect ( true , true )
2017-06-17 04:24:30 +02:00
found := false
2017-07-06 22:19:44 +02:00
categoryRet = make ( categories . Categories , len ( cats ) )
for _ , v := range cats {
if v . ID == category + "_" {
2017-06-17 04:24:30 +02:00
found = true
if keepParent {
2017-07-06 22:19:44 +02:00
categoryRet = append ( categoryRet , v )
2017-06-17 04:24:30 +02:00
}
2017-07-06 22:19:44 +02:00
} else if len ( v . ID ) <= 2 && len ( categoryRet ) > 0 {
2017-06-17 04:24:30 +02:00
break
} else if found {
2017-07-06 22:19:44 +02:00
categoryRet = append ( categoryRet , v )
2017-06-17 04:24:30 +02:00
}
}
return
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "CategoryName" , func ( category string , sub_category string ) string {
2017-05-22 18:25:04 +02:00
s := category + "_" + sub_category
2017-07-06 21:53:13 +02:00
if category , ok := categories . GetByID ( s ) ; ok {
return category . Name
2017-05-22 18:25:04 +02:00
}
2017-05-25 21:54:58 +02:00
return ""
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "GetTorrentLanguages" , torrentLanguages . GetTorrentLanguages )
2017-07-11 22:25:52 +02:00
vars . Set ( "LanguageName" , func ( lang publicSettings . Language , T publicSettings . TemplateTfunc ) string {
if strings . Contains ( lang . Name , "," ) {
langs := strings . Split ( lang . Name , ", " )
tags := strings . Split ( lang . Tag , ", " )
for k := range langs {
langs [ k ] = publicSettings . Translate ( tags [ k ] , string ( T ( "language_code" ) ) )
}
return strings . Join ( langs , ", " )
2017-06-12 01:14:26 +02:00
}
2017-07-11 22:25:52 +02:00
return lang . Translate ( T ( "language_code" ) )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "fileSize" , func ( filesize int64 , T publicSettings . TemplateTfunc ) template . HTML {
2017-05-26 03:53:18 +02:00
if filesize == 0 {
return T ( "unknown" )
}
2017-07-02 23:53:23 +02:00
return template . HTML ( format . FileSize ( filesize ) )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "makeCaptchaData" , func ( captchaID string , T publicSettings . TemplateTfunc ) captchaData {
2017-05-21 04:10:31 +02:00
return captchaData { captchaID , T }
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "DefaultUserSettings" , func ( s string ) bool {
2017-07-10 14:11:05 +02:00
return config . Get ( ) . Users . DefaultUserSettings [ s ]
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "makeTreeViewData" , func ( f * filelist . FileListFolder , nestLevel int , T publicSettings . TemplateTfunc , identifierChain string ) interface { } {
2017-05-30 00:28:21 +02:00
return struct {
Folder * filelist . FileListFolder
NestLevel int
T publicSettings . TemplateTfunc
2017-05-26 03:53:18 +02:00
IdentifierChain string
2017-05-30 00:28:21 +02:00
} { f , nestLevel , T , identifierChain }
2017-06-28 13:42:38 +02:00
} )
2017-07-01 23:09:35 +02:00
vars . Set ( "lastID" , func ( currentUrl * url . URL , torrents [ ] models . TorrentJSON ) int {
2017-05-30 00:28:21 +02:00
values := currentUrl . Query ( )
order := false
sort := "2"
if _ , ok := values [ "order" ] ; ok {
order , _ = strconv . ParseBool ( values [ "order" ] [ 0 ] )
}
if _ , ok := values [ "sort" ] ; ok {
sort = values [ "sort" ] [ 0 ]
}
lastID := 0
if sort == "2" || sort == "" {
if order {
lastID = int ( torrents [ len ( torrents ) - 1 ] . ID )
2017-05-31 21:07:56 +02:00
} else if len ( torrents ) > 0 {
2017-05-30 00:28:21 +02:00
lastID = int ( torrents [ 0 ] . ID )
}
}
return lastID
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "getReportDescription" , func ( d string , T publicSettings . TemplateTfunc ) string {
2017-06-04 02:28:33 +02:00
if d == "illegal" {
return "Illegal content"
} else if d == "spam" {
return "Spam / Garbage"
} else if d == "wrongcat" {
return "Wrong category"
} else if d == "dup" {
return "Duplicate / Deprecated"
}
return string ( T ( d ) )
2017-06-28 13:42:38 +02:00
} )
vars . Set ( "genUploaderLink" , func ( uploaderID uint , uploaderName template . HTML , torrentHidden bool ) template . HTML {
2017-07-02 23:53:23 +02:00
uploaderID , username := torrents . HideUser ( uploaderID , string ( uploaderName ) , torrentHidden )
2017-06-06 00:06:04 +02:00
if uploaderID == 0 {
2017-06-15 04:44:46 +02:00
return template . HTML ( username )
2017-06-06 00:06:04 +02:00
}
2017-06-28 13:42:38 +02:00
url := "/user/" + strconv . Itoa ( int ( uploaderID ) ) + "/" + username
return template . HTML ( "<a href=\"" + url + "\">" + username + "</a>" )
} )
2017-07-01 23:09:35 +02:00
vars . Set ( "genActivityContent" , func ( a models . Activity , T publicSettings . TemplateTfunc ) template . HTML {
2017-07-02 23:53:23 +02:00
return a . ToLocale ( T )
2017-06-28 13:42:38 +02:00
} )
2017-07-04 02:07:25 +02:00
vars . Set ( "contains" , func ( arr [ ] string , comp string ) bool {
for _ , str := range arr {
if str == comp {
return true
}
}
return false
} )
2017-06-28 13:42:38 +02:00
return vars
2017-05-05 06:07:45 +02:00
}