301 lignes
11 Kio
Go
301 lignes
11 Kio
Go
// hurry mod panel to get it faaaaaaaaaaaast
|
|
|
|
package router
|
|
|
|
import (
|
|
"fmt"
|
|
"html"
|
|
"html/template"
|
|
"net/http"
|
|
"path/filepath"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/ewhal/nyaa/config"
|
|
"github.com/ewhal/nyaa/db"
|
|
"github.com/ewhal/nyaa/model"
|
|
"github.com/ewhal/nyaa/service"
|
|
"github.com/ewhal/nyaa/service/comment"
|
|
"github.com/ewhal/nyaa/service/report"
|
|
"github.com/ewhal/nyaa/service/torrent"
|
|
"github.com/ewhal/nyaa/service/user"
|
|
form "github.com/ewhal/nyaa/service/user/form"
|
|
"github.com/ewhal/nyaa/service/user/permission"
|
|
"github.com/ewhal/nyaa/util/languages"
|
|
"github.com/ewhal/nyaa/util/log"
|
|
"github.com/ewhal/nyaa/util/search"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
var panelIndex, panelTorrentList, panelUserList, panelCommentList, panelTorrentEd, panelTorrentReportList *template.Template
|
|
|
|
func init() {
|
|
panelTorrentList = template.Must(template.New("torrentlist").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/torrentlist.html")))
|
|
panelTorrentList = template.Must(panelTorrentList.ParseGlob(filepath.Join("templates", "_*.html")))
|
|
panelUserList = template.Must(template.New("userlist").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/userlist.html")))
|
|
panelUserList = template.Must(panelUserList.ParseGlob(filepath.Join("templates", "_*.html")))
|
|
panelCommentList = template.Must(template.New("commentlist").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/commentlist.html")))
|
|
panelCommentList = template.Must(panelCommentList.ParseGlob(filepath.Join("templates", "_*.html")))
|
|
panelIndex = template.Must(template.New("indexPanel").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/panelindex.html")))
|
|
panelIndex = template.Must(panelIndex.ParseGlob(filepath.Join("templates", "_*.html")))
|
|
panelTorrentEd = template.Must(template.New("torrent_ed").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/paneltorrentedit.html")))
|
|
panelTorrentEd = template.Must(panelTorrentEd.ParseGlob(filepath.Join("templates", "_*.html")))
|
|
panelTorrentReportList = template.Must(template.New("torrent_report").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/torrent_report.html")))
|
|
panelTorrentReportList = template.Must(panelTorrentReportList.ParseGlob(filepath.Join("templates", "_*.html")))
|
|
}
|
|
|
|
func IndexModPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
offset := 10
|
|
|
|
torrents, _, _ := torrentService.GetAllTorrents(offset, 0)
|
|
users, _ := userService.RetrieveUsersForAdmin(offset, 0)
|
|
comments, _ := commentService.GetAllComments(offset, 0, "", "")
|
|
torrentReports, _, _ := reportService.GetAllTorrentReports(offset, 0)
|
|
|
|
languages.SetTranslationFromRequest(panelIndex, r, "en-us")
|
|
htv := PanelIndexVbs{torrents, torrentReports, users, comments, NewSearchForm(), currentUser, r.URL}
|
|
_ = panelIndex.ExecuteTemplate(w, "admin_index.html", htv)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func TorrentsListPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
vars := mux.Vars(r)
|
|
page := vars["page"]
|
|
|
|
var err error
|
|
pagenum := 1
|
|
if page != "" {
|
|
pagenum, err = strconv.Atoi(html.EscapeString(page))
|
|
if !log.CheckError(err) {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
offset := 100
|
|
|
|
searchParam, torrents, _, err := search.SearchByQuery(r, pagenum)
|
|
searchForm := SearchForm{
|
|
SearchParam: searchParam,
|
|
Category: searchParam.Category.String(),
|
|
HideAdvancedSearch: false,
|
|
}
|
|
|
|
languages.SetTranslationFromRequest(panelTorrentList, r, "en-us")
|
|
htv := PanelTorrentListVbs{torrents, searchForm, Navigation{int(searchParam.Max), offset, pagenum, "mod_tlist_page"}, currentUser, r.URL}
|
|
err = panelTorrentList.ExecuteTemplate(w, "admin_index.html", htv)
|
|
log.CheckError(err)
|
|
} else {
|
|
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func TorrentReportListPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
vars := mux.Vars(r)
|
|
page := vars["page"]
|
|
|
|
var err error
|
|
pagenum := 1
|
|
if page != "" {
|
|
pagenum, err = strconv.Atoi(html.EscapeString(page))
|
|
if !log.CheckError(err) {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
offset := 100
|
|
|
|
torrentReports, nbReports, _ := reportService.GetAllTorrentReports(offset, (pagenum-1)*offset)
|
|
|
|
reportJSON := model.TorrentReportsToJSON(torrentReports)
|
|
languages.SetTranslationFromRequest(panelTorrentReportList, r, "en-us")
|
|
htv := PanelTorrentReportListVbs{reportJSON, NewSearchForm(), Navigation{nbReports, offset, pagenum, "mod_trlist_page"}, currentUser, r.URL}
|
|
err = panelTorrentReportList.ExecuteTemplate(w, "admin_index.html", htv)
|
|
log.CheckError(err)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func UsersListPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
vars := mux.Vars(r)
|
|
page := vars["page"]
|
|
|
|
var err error
|
|
pagenum := 1
|
|
if page != "" {
|
|
pagenum, err = strconv.Atoi(html.EscapeString(page))
|
|
if !log.CheckError(err) {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
offset := 100
|
|
|
|
users, nbUsers := userService.RetrieveUsersForAdmin(offset, (pagenum-1)*offset)
|
|
languages.SetTranslationFromRequest(panelUserList, r, "en-us")
|
|
htv := PanelUserListVbs{users, NewSearchForm(), Navigation{nbUsers, offset, pagenum, "mod_ulist_page"}, currentUser, r.URL}
|
|
err = panelUserList.ExecuteTemplate(w, "admin_index.html", htv)
|
|
log.CheckError(err)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func CommentsListPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
vars := mux.Vars(r)
|
|
page := vars["page"]
|
|
|
|
var err error
|
|
pagenum := 1
|
|
if page != "" {
|
|
pagenum, err = strconv.Atoi(html.EscapeString(page))
|
|
if !log.CheckError(err) {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
offset := 100
|
|
userid := r.URL.Query().Get("userid")
|
|
var conditions string
|
|
var values []interface{}
|
|
if userid != "" {
|
|
conditions = "user_id = ?"
|
|
values = append(values, userid)
|
|
}
|
|
|
|
comments, nbComments := commentService.GetAllComments(offset, (pagenum-1)*offset, conditions, values...)
|
|
languages.SetTranslationFromRequest(panelCommentList, r, "en-us")
|
|
htv := PanelCommentListVbs{comments, NewSearchForm(), Navigation{nbComments, offset, pagenum, "mod_clist_page"}, currentUser, r.URL}
|
|
err = panelCommentList.ExecuteTemplate(w, "admin_index.html", htv)
|
|
log.CheckError(err)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
|
|
}
|
|
func TorrentEditModPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
id := r.URL.Query().Get("id")
|
|
torrent, _ := torrentService.GetTorrentById(id)
|
|
languages.SetTranslationFromRequest(panelTorrentEd, r, "en-us")
|
|
|
|
torrentJson := torrent.ToJSON()
|
|
uploadForm := NewUploadForm()
|
|
uploadForm.Name = torrentJson.Name
|
|
uploadForm.Category = torrentJson.Category + "_" + torrentJson.SubCategory
|
|
uploadForm.Magnet = string(torrentJson.Magnet)
|
|
uploadForm.Status = torrentJson.Status
|
|
uploadForm.Description = string(torrentJson.Description)
|
|
htv := PanelTorrentEdVbs{uploadForm, NewSearchForm(), currentUser, form.NewErrors(), form.NewInfos()}
|
|
err := panelTorrentEd.ExecuteTemplate(w, "admin_index.html", htv)
|
|
log.CheckError(err)
|
|
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
|
|
}
|
|
func TorrentPostEditModPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
if config.UploadsDisabled {
|
|
http.Error(w, "Error uploads are disabled", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
var uploadForm UploadForm
|
|
id := r.URL.Query().Get("id")
|
|
err := form.NewErrors()
|
|
infos := form.NewInfos()
|
|
torrent, _ := torrentService.GetTorrentById(id)
|
|
if (torrent.ID > 0) {
|
|
// validation is done in ExtractInfo()
|
|
errUp := uploadForm.ExtractInfo(r)
|
|
if errUp != nil {
|
|
err["errors"] = append(err["errors"], "Failed to upload!")
|
|
}
|
|
if (len(err) > 0) {
|
|
//add to db and redirect depending on result
|
|
torrent.Name= uploadForm.Name
|
|
torrent.Category= uploadForm.CategoryID
|
|
torrent.SubCategory=uploadForm.SubCategoryID
|
|
torrent.Status= uploadForm.Status
|
|
torrent.Hash= uploadForm.Infohash
|
|
torrent.Date= time.Now()
|
|
torrent.Filesize= uploadForm.Filesize
|
|
torrent.Description= uploadForm.Description
|
|
db.ORM.Save(&torrent)
|
|
infos["infos"] = append(infos["infos"], "Torrent details updated!")
|
|
}
|
|
}
|
|
languages.SetTranslationFromRequest(panelTorrentEd, r, "en-us")
|
|
htv := PanelTorrentEdVbs{uploadForm, NewSearchForm(), currentUser, err, infos}
|
|
_ = panelTorrentEd.ExecuteTemplate(w, "admin_index.html", htv)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
|
|
}
|
|
|
|
func CommentDeleteModPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
id := r.URL.Query().Get("id")
|
|
|
|
if userPermission.HasAdmin(currentUser) {
|
|
_ = form.NewErrors()
|
|
_, _ = userService.DeleteComment(id)
|
|
url, _ := Router.Get("mod_clist").URL()
|
|
http.Redirect(w, r, url.String()+"?deleted", http.StatusSeeOther)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func TorrentDeleteModPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
id := r.URL.Query().Get("id")
|
|
if userPermission.HasAdmin(currentUser) {
|
|
_ = form.NewErrors()
|
|
_, _ = torrentService.DeleteTorrent(id)
|
|
|
|
//delete reports of torrent
|
|
whereParams := serviceBase.CreateWhereParams("torrent_id = ?", id)
|
|
reports, _, _ := reportService.GetTorrentReportsOrderBy(&whereParams, "", 0, 0)
|
|
for _, report := range reports {
|
|
reportService.DeleteTorrentReport(report.ID)
|
|
}
|
|
url, _ := Router.Get("mod_tlist").URL()
|
|
http.Redirect(w, r, url.String()+"?deleted", http.StatusSeeOther)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func TorrentReportDeleteModPanel(w http.ResponseWriter, r *http.Request) {
|
|
currentUser := GetUser(r)
|
|
if userPermission.HasAdmin(currentUser) {
|
|
id := r.URL.Query().Get("id")
|
|
fmt.Println(id)
|
|
idNum, _ := strconv.ParseUint(id, 10, 64)
|
|
_ = form.NewErrors()
|
|
_, _ = reportService.DeleteTorrentReport(uint(idNum))
|
|
|
|
url, _ := Router.Get("mod_trlist").URL()
|
|
http.Redirect(w, r, url.String()+"?deleted", http.StatusSeeOther)
|
|
} else {
|
|
http.Error(w, "admins only", http.StatusForbidden)
|
|
}
|
|
}
|