Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Conflicts:
	main.go
Resolved conflicts with new merge
Cette révision appartient à :
akuma06 2017-05-05 22:30:56 +02:00
révision 6b1196f12c
12 fichiers modifiés avec 45 ajouts et 19 suppressions

Voir le fichier

@ -1,5 +1,5 @@
package config package config
const ( const (
Trackers = "&tr=udp://zer0day.to:1337/announce&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://explodie.org:6969&tr=udp://tracker.opentrackr.org:1337&tr=udp://tracker.coppersurfer.tk:6969&tr=http://tracker.baka-sub.cf/announce" Trackers = "&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://zer0day.to:1337/announce&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://explodie.org:6969&tr=udp://tracker.opentrackr.org:1337&tr=http://tracker.baka-sub.cf/announce"
) )

Voir le fichier

@ -9,7 +9,6 @@
background-color: #81d3fa; background-color: #81d3fa;
} }
/* modified copy of NyaaTorrent theme */ /* modified copy of NyaaTorrent theme */
nav#mainmenu { nav#mainmenu {
background: #263238; background: #263238;
@ -56,6 +55,19 @@ a {
text-decoration : none; text-decoration : none;
} }
.download-btn {
font-size: 20px;
}
.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
border: none;
}
.torrent-info .name { .torrent-info .name {
font-weight: bold; font-weight: bold;
overflow: hidden; overflow: hidden;
@ -72,11 +84,16 @@ a {
white-space: nowrap; white-space: nowrap;
} }
/* Styling/fixes for the table: */
.table > tbody > tr > td { .table > tbody > tr > td {
/* fix bootstrap uglyness */ /* fix bootstrap uglyness */
vertical-align: middle; vertical-align: middle;
} }
.custom-table-hover > tbody > tr:hover {
opacity: 0.82;
}
div.container div.blockBody:nth-of-type(2) table{table-layout:fixed;} div.container div.blockBody:nth-of-type(2) table{table-layout:fixed;}
div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:first-of-type, div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:nth-of-type(5){width:10%;} div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:first-of-type, div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:nth-of-type(5){width:10%;}
div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:nth-of-type(3){width:15%;} div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:nth-of-type(3){width:15%;}

Voir le fichier

@ -15,7 +15,6 @@ import (
"time" "time"
) )
func RunServer(conf *config.Config) { func RunServer(conf *config.Config) {
http.Handle("/", router.Router) http.Handle("/", router.Router)

Voir le fichier

@ -10,8 +10,10 @@ import(
func FaqHandler(w http.ResponseWriter, r *http.Request) { func FaqHandler(w http.ResponseWriter, r *http.Request) {
var templates = template.Must(template.New("FAQ").Funcs(FuncMap).ParseFiles("templates/index.html", "templates/FAQ.html")) var templates = template.Must(template.New("FAQ").Funcs(FuncMap).ParseFiles("templates/index.html", "templates/FAQ.html"))
templates.ParseGlob("templates/_*.html") // common templates.ParseGlob("templates/_*.html") // common
err := templates.ExecuteTemplate(w, "index.html", FaqTemplateVariables{Navigation{}, NewSearchForm(), r.URL, mux.CurrentRoute(r)}) searchForm := NewSearchForm()
if err != nil { searchForm.HideAdvancedSearch = true
err := templates.ExecuteTemplate(w, "index.html", FaqTemplateVariables{Navigation{}, searchForm, r.URL, mux.CurrentRoute(r)})
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError) http.Error(w, err.Error(), http.StatusInternalServerError)
} }
} }

Voir le fichier

@ -5,7 +5,7 @@ import(
"net/http" "net/http"
"github.com/gorilla/feeds" "github.com/gorilla/feeds"
"github.com/ewhal/nyaa/util/search" "github.com/ewhal/nyaa/util/search"
"strconv"
) )
func RssHandler(w http.ResponseWriter, r *http.Request) { func RssHandler(w http.ResponseWriter, r *http.Request) {
@ -29,7 +29,7 @@ func RssHandler(w http.ResponseWriter, r *http.Request) {
torrent_json := torrents[i].ToJson() torrent_json := torrents[i].ToJson()
feed.Items[i] = &feeds.Item{ feed.Items[i] = &feeds.Item{
// need a torrent view first // need a torrent view first
//Id: URL + torrents[i].Hash, Id: "https://nyaa.pantsu.cat/view/" + strconv.Itoa(torrents[i].Id),
Title: torrents[i].Name, Title: torrents[i].Name,
Link: &feeds.Link{Href: string(torrent_json.Magnet)}, Link: &feeds.Link{Href: string(torrent_json.Magnet)},
Description: "", Description: "",

Voir le fichier

@ -39,6 +39,7 @@ func SearchHandler(w http.ResponseWriter, r *http.Request) {
search_param.Category, search_param.Category,
search_param.Sort, search_param.Sort,
search_param.Order, search_param.Order,
false,
} }
htv := HomeTemplateVariables{b, torrentService.GetAllCategories(false), searchForm, navigationTorrents, r.URL, mux.CurrentRoute(r)} htv := HomeTemplateVariables{b, torrentService.GetAllCategories(false), searchForm, navigationTorrents, r.URL, mux.CurrentRoute(r)}

Voir le fichier

@ -53,6 +53,7 @@ type SearchForm struct {
Category string Category string
Sort string Sort string
Order string Order string
HideAdvancedSearch bool
} }
// Some Default Values to ease things out // Some Default Values to ease things out
@ -74,4 +75,4 @@ func NewSearchForm(params ...string) SearchForm {
searchForm.Order = "DESC" searchForm.Order = "DESC"
} }
return searchForm return searchForm
} }

Voir le fichier

@ -27,7 +27,7 @@
</select> </select>
<select name="s" class="form-control input-sm"> <select name="s" class="form-control input-sm">
<option value="">Show all</option> <option value="">Show all</option>
<option value="2" {{if eq .Search.Status "2"}}selected{{end}}>Remakes</option> <option value="2" {{if eq .Search.Status "2"}}selected{{end}}>Filter Remakes</option>
<option value="3" {{if eq .Search.Status "3"}}selected{{end}}>Trusted</option> <option value="3" {{if eq .Search.Status "3"}}selected{{end}}>Trusted</option>
<option value="4" {{if eq .Search.Status "4"}}selected{{end}}>A+</option> <option value="4" {{if eq .Search.Status "4"}}selected{{end}}>A+</option>
</select> </select>
@ -43,7 +43,7 @@
<option value="desc" {{if eq .Search.Order "desc"}}selected{{end}}>Descending</option> <option value="desc" {{if eq .Search.Order "desc"}}selected{{end}}>Descending</option>
<option value="asc" {{if eq .Search.Order "asc"}}selected{{end}}>Ascending</option> <option value="asc" {{if eq .Search.Order "asc"}}selected{{end}}>Ascending</option>
</select> </select>
<select name="max" class="form-control input-sm" value> <select name="max" class="form-control input-sm">
<option value="5" {{if eq .Navigation.MaxItemPerPage 5}}selected{{end}}>5</option> <option value="5" {{if eq .Navigation.MaxItemPerPage 5}}selected{{end}}>5</option>
<option value="10" {{if eq .Navigation.MaxItemPerPage 10}}selected{{end}}>10</option> <option value="10" {{if eq .Navigation.MaxItemPerPage 10}}selected{{end}}>10</option>
<option value="15" {{if eq .Navigation.MaxItemPerPage 15}}selected{{end}}>15</option> <option value="15" {{if eq .Navigation.MaxItemPerPage 15}}selected{{end}}>15</option>

Voir le fichier

@ -8,7 +8,7 @@
</nav> </nav>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-hover"> <table class="table custom-table-hover">
<tr> <tr>
<th>Category</th> <th>Category</th>
<th>Name</th> <th>Name</th>
@ -34,7 +34,7 @@
<td class="date date-short">{{.Date}}</td> <td class="date date-short">{{.Date}}</td>
<td class="filesize">{{.Filesize}}</td> <td class="filesize">{{.Filesize}}</td>
<td> <td>
<a href="{{.Magnet}}" target="_blank" title="Magnet link"> <a href="{{.Magnet}}" title="Magnet link">
<span class="glyphicon glyphicon-magnet" aria-hidden="true"></span> <span class="glyphicon glyphicon-magnet" aria-hidden="true"></span>
</a> </a>
<!-- <a href="https://itorrents.org/torrent/{{.Hash}}.torrent" title="Torrent file"> <!-- <a href="https://itorrents.org/torrent/{{.Hash}}.torrent" title="Torrent file">

Voir le fichier

@ -59,6 +59,7 @@
<div style="padding-top: 10rem"></div> <div style="padding-top: 10rem"></div>
<div class="container" id="container"> <div class="container" id="container">
{{if not .Search.HideAdvancedSearch}}
<div class="blockBody" style="text-align:center"> <div class="blockBody" style="text-align:center">
<font size="4.5">Advanced Search</font><br /> <font size="4.5">Advanced Search</font><br />
<form class="navbar-form" role="search" action="/search" method="get"> <form class="navbar-form" role="search" action="/search" method="get">
@ -71,6 +72,8 @@
<div style="clear:both"></div> <div style="clear:both"></div>
</div> </div>
<div style="margin:0.5em"></div> <div style="margin:0.5em"></div>
{{end}}
{{block "content" .}}Nothing Here.{{end}} {{block "content" .}}Nothing Here.{{end}}
</div> </div>

Voir le fichier

@ -2,12 +2,11 @@
{{define "content"}} {{define "content"}}
<div class="blockBody"> <div class="blockBody">
{{with .Torrent}} {{with .Torrent}}
<table class="table"> <hr>
<table class="table table-borderless">
<tr {{if eq .Status 2}}class="remake"{{end}} <tr {{if eq .Status 2}}class="remake"{{end}}
{{if eq .Status 3}}class="trusted"{{end}} {{if eq .Status 3}}class="trusted"{{end}}
{{if eq .Status 4}}class="aplus"{{end}}> {{if eq .Status 4}}class="aplus"{{end}}>
<td>Id</td>
<td>{{.Id}}</td>
</tr> </tr>
<tr> <tr>
<td>Name</td> <td>Name</td>
@ -22,12 +21,12 @@
<td class="date-full">{{.Date}}</td> <td class="date-full">{{.Date}}</td>
</tr> </tr>
<tr> <tr>
<td>FileSize</td> <td>Size</td>
<td>{{.Filesize}}</td> <td>{{.Filesize}}</td>
</tr> </tr>
<tr> <tr>
<td>Links</td> <td>Links</td>
<td><a href="{{.Magnet}}" title="Magnet link" ><span class="glyphicon glyphicon-magnet" aria-hidden="true"></span></a> <td><a aria-label="Magnet Button" href="{{.Magnet}}" type="button" class="btn btn-success download-btn"><span class="glyphicon glyphicon-magnet" aria-hidden="true"></span> Download!</button>
<!-- <a <!-- <a
href="https://itorrents.org/torrent/{{.Hash}}.torrent" title="Torrent file"><span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span></a>--> href="https://itorrents.org/torrent/{{.Hash}}.torrent" title="Torrent file"><span class="glyphicon glyphicon-floppy-save" aria-hidden="true"></span></a>-->
</td> </td>

Voir le fichier

@ -60,7 +60,11 @@ func SearchByQuery(r *http.Request, pagenum int) (SearchParam, []model.Torrents,
parameters.Params = append(parameters.Params, searchSubCatId) parameters.Params = append(parameters.Params, searchSubCatId)
} }
if search_param.Status != "" { if search_param.Status != "" {
conditions = append(conditions, "status_id = ?") if search_param.Status == "2" {
conditions = append(conditions, "status_id != ?")
} else {
conditions = append(conditions, "status_id = ?")
}
parameters.Params = append(parameters.Params, search_param.Status) parameters.Params = append(parameters.Params, search_param.Status)
} }
searchQuerySplit := strings.Split(search_param.Query, " ") searchQuerySplit := strings.Split(search_param.Query, " ")