Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
* Update torrent.go

* another typo yay!!!

* typo
Cette révision appartient à :
Anthony D'Alessandro 2017-05-09 23:54:12 -04:00 révisé par Austin
Parent 48a9f7ebc2
révision 30d82f77bc
3 fichiers modifiés avec 78 ajouts et 77 suppressions

Voir le fichier

@ -3,22 +3,23 @@
package router
import (
"net/http"
"strconv"
"html/template"
"net/http"
"path/filepath"
"strconv"
"github.com/ewhal/nyaa/service/comment"
"github.com/ewhal/nyaa/service/user"
"github.com/ewhal/nyaa/service/user/permission"
form "github.com/ewhal/nyaa/service/user/form"
"github.com/ewhal/nyaa/service/torrent"
"github.com/ewhal/nyaa/service/torrent/form"
"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/modelHelper"
)
var panelIndex, panelTorrentList, panelUserList, panelCommentList, panelTorrentEd *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")))
panelUserList = template.Must(template.New("userlist").Funcs(FuncMap).ParseFiles(filepath.Join(TemplateDir, "admin_index.html"), filepath.Join(TemplateDir, "admin/userlist.html")))
@ -29,100 +30,100 @@ func init() {
func IndexModPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
if (userPermission.HasAdmin(currentUser)) {
offset := 10
if userPermission.HasAdmin(currentUser) {
offset := 10
torrents, _, _ := torrentService.GetAllTorrents(0, offset)
users := userService.RetrieveUsersForAdmin(0, offset)
comments := commentService.GetAllComments(0, offset)
languages.SetTranslationFromRequest(panelIndex, r, "en-us")
htv := PanelIndexVbs{torrents, users, comments}
_ = panelIndex.ExecuteTemplate(w, "admin_index.html", htv)
}
torrents, _, _ := torrentService.GetAllTorrents(0, offset)
users := userService.RetrieveUsersForAdmin(0, offset)
comments := commentService.GetAllComments(0, offset)
languages.SetTranslationFromRequest(panelIndex, r, "en-us")
htv := PanelIndexVbs{torrents, users, comments}
_ = panelIndex.ExecuteTemplate(w, "admin_index.html", htv)
}
}
func TorrentsListPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
if (userPermission.HasAdmin(currentUser)) {
page,_ := strconv.Atoi(r.URL.Query().Get("p"))
offset := 100
if userPermission.HasAdmin(currentUser) {
page, _ := strconv.Atoi(r.URL.Query().Get("p"))
offset := 100
torrents, _, _ := torrentService.GetAllTorrents(page*offset, offset)
languages.SetTranslationFromRequest(panelTorrentList, r, "en-us")
htv := PanelTorrentListVbs{torrents}
_= panelTorrentList.ExecuteTemplate(w, "admin_index.html", htv)
}
torrents, _, _ := torrentService.GetAllTorrents(page*offset, offset)
languages.SetTranslationFromRequest(panelTorrentList, r, "en-us")
htv := PanelTorrentListVbs{torrents}
_ = panelTorrentList.ExecuteTemplate(w, "admin_index.html", htv)
}
}
func UsersListPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
if (userPermission.HasAdmin(currentUser)) {
page,_ := strconv.Atoi(r.URL.Query().Get("p"))
offset := 100
if userPermission.HasAdmin(currentUser) {
page, _ := strconv.Atoi(r.URL.Query().Get("p"))
offset := 100
users := userService.RetrieveUsersForAdmin(page*offset, offset)
languages.SetTranslationFromRequest(panelUserList, r, "en-us")
htv := PanelUserListVbs{users}
_ = panelUserList.ExecuteTemplate(w, "admin_index.html", htv)
}
users := userService.RetrieveUsersForAdmin(page*offset, offset)
languages.SetTranslationFromRequest(panelUserList, r, "en-us")
htv := PanelUserListVbs{users}
_ = panelUserList.ExecuteTemplate(w, "admin_index.html", htv)
}
}
func CommentsListPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
if (userPermission.HasAdmin(currentUser)) {
page,_ := strconv.Atoi(r.URL.Query().Get("p"))
offset := 100
if userPermission.HasAdmin(currentUser) {
page, _ := strconv.Atoi(r.URL.Query().Get("p"))
offset := 100
comments := commentService.GetAllComments(page*offset, offset)
languages.SetTranslationFromRequest(panelCommentList, r, "en-us")
htv := PanelCommentListVbs{comments}
_= panelCommentList.ExecuteTemplate(w, "admin_index.html", htv)
}
comments := commentService.GetAllComments(page*offset, offset)
languages.SetTranslationFromRequest(panelCommentList, r, "en-us")
htv := PanelCommentListVbs{comments}
_ = panelCommentList.ExecuteTemplate(w, "admin_index.html", htv)
}
}
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")
htv := PanelTorrentEdVbs{torrent}
_= panelTorrentEd.ExecuteTemplate(w, "admin_index.html", htv)
}
if userPermission.HasAdmin(currentUser) {
id := r.URL.Query().Get("id")
torrent, _ := torrentService.GetTorrentById(id)
languages.SetTranslationFromRequest(panelTorrentEd, r, "en-us")
htv := PanelTorrentEdVbs{torrent}
_ = panelTorrentEd.ExecuteTemplate(w, "admin_index.html", htv)
}
}
func TorrentPostEditModPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
if (userPermission.HasAdmin(currentUser)) {
b := torrentform.PanelPost{}
err := form.NewErrors()
infos := form.NewInfos()
modelHelper.BindValueForm(&b, r)
err = modelHelper.ValidateForm(&b, err)
id := r.URL.Query().Get("id")
torrent, _ := torrentService.GetTorrentById(id)
if (torrent.Id > 0) {
modelHelper.AssignValue(&torrent, &b)
if (len(err) == 0) {
_, errorT := torrentService.UpdateTorrent(torrent)
if (errorT != nil) {
err["errors"] = append(err["errors"], errorT.Error())
}
if (len(err) == 0) {
infos["infos"] = append(infos["infos"], "torrent_updated")
if userPermission.HasAdmin(currentUser) {
b := torrentform.PanelPost{}
err := form.NewErrors()
infos := form.NewInfos()
modelHelper.BindValueForm(&b, r)
err = modelHelper.ValidateForm(&b, err)
id := r.URL.Query().Get("id")
torrent, _ := torrentService.GetTorrentById(id)
if torrent.ID > 0 {
modelHelper.AssignValue(&torrent, &b)
if len(err) == 0 {
_, errorT := torrentService.UpdateTorrent(torrent)
if errorT != nil {
err["errors"] = append(err["errors"], errorT.Error())
}
if len(err) == 0 {
infos["infos"] = append(infos["infos"], "torrent_updated")
}
}
}
languages.SetTranslationFromRequest(panelTorrentEd, r, "en-us")
htv := PanelTorrentEdVbs{torrent}
_ = panelTorrentEd.ExecuteTemplate(w, "admin_index.html", htv)
}
languages.SetTranslationFromRequest(panelTorrentEd, r, "en-us")
htv := PanelTorrentEdVbs{torrent}
_ = panelTorrentEd.ExecuteTemplate(w, "admin_index.html", htv)
}
}
func CommentDeleteModPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
id := r.URL.Query().Get("id")
if (userPermission.HasAdmin(currentUser)) {
_= form.NewErrors()
if userPermission.HasAdmin(currentUser) {
_ = form.NewErrors()
_, _ = userService.DeleteComment(id)
url, _ := Router.Get("mod_comment_list").URL()
http.Redirect(w, r, url.String()+"?deleted", http.StatusSeeOther)
@ -131,8 +132,8 @@ func CommentDeleteModPanel(w http.ResponseWriter, r *http.Request) {
func TorrentDeleteModPanel(w http.ResponseWriter, r *http.Request) {
currentUser := GetUser(r)
id := r.URL.Query().Get("id")
if (userPermission.HasAdmin(currentUser)) {
_= form.NewErrors()
if userPermission.HasAdmin(currentUser) {
_ = form.NewErrors()
_, _ = torrentService.DeleteTorrent(id)
url, _ := Router.Get("mod_torrent_list").URL()
http.Redirect(w, r, url.String()+"?deleted", http.StatusSeeOther)

Voir le fichier

@ -114,13 +114,13 @@ type UploadTemplateVariables struct {
}
type PanelIndexVbs struct {
Torrents []model.Torrents
Torrents []model.Torrent
Users []model.User
Comments []model.Comment
}
type PanelTorrentListVbs struct {
Torrents []model.Torrents
Torrents []model.Torrent
}
type PanelUserListVbs struct {
Users []model.User
@ -129,7 +129,7 @@ type PanelCommentListVbs struct {
Comments []model.Comment
}
type PanelTorrentEdVbs struct {
Torrent model.Torrents
Torrent model.Torrent
}
/*

Voir le fichier

@ -174,7 +174,7 @@ func CreateWhereParams(conditions string, params ...string) WhereParams {
}
func DeleteTorrent(id string) (int, error) {
var torrent model.Torrents
var torrent model.Torrent
if db.ORM.First(&torrent, id).RecordNotFound() {
return http.StatusNotFound, errors.New("Torrent is not found.")
}
@ -184,7 +184,7 @@ func DeleteTorrent(id string) (int, error) {
return http.StatusOK, nil
}
func UpdateTorrent(torrent model.Torrents) (int, error) {
func UpdateTorrent(torrent model.Torrent) (int, error) {
if db.ORM.Save(torrent).Error != nil {
return http.StatusInternalServerError, errors.New("Torrent is not updated.")
}