48 lines
1.1 KiB
Go
Raw Normal View History

2017-10-06 20:07:12 +00:00
package editor
import (
2018-03-23 00:43:45 +00:00
"strconv"
2017-10-06 20:07:12 +00:00
"github.com/aerogo/aero"
2018-03-19 21:55:55 +00:00
"github.com/animenotifier/arn"
2017-10-06 20:07:12 +00:00
"github.com/animenotifier/notify.moe/components"
"github.com/animenotifier/notify.moe/utils"
)
// Get ...
func Get(ctx *aero.Context) string {
user := utils.GetUser(ctx)
if user == nil || (user.Role != "admin" && user.Role != "editor") {
return ctx.Redirect("/")
}
2018-03-19 21:55:55 +00:00
ignoreDifferences := arn.FilterIgnoreAnimeDifferences(func(entry *arn.IgnoreAnimeDifference) bool {
return entry.CreatedBy == user.ID
})
score := len(ignoreDifferences) * arn.IgnoreAnimeDifferenceEditorScore
scoreTypes := map[string]int{}
logEntries := arn.FilterEditLogEntries(func(entry *arn.EditLogEntry) bool {
return entry.UserID == user.ID
})
for _, entry := range logEntries {
entryScore := entry.EditorScore()
score += entryScore
if entry.ObjectType != "" {
scoreTypes[entry.ObjectType]++
}
}
2018-03-23 00:43:45 +00:00
scoreTitle := ""
for objectType, score := range scoreTypes {
scoreTitle += objectType + ": " + strconv.Itoa(score) + "\n"
}
return ctx.HTML(components.Editor(ctx.URI(), score, scoreTitle, scoreTypes, user))
2017-10-06 20:07:12 +00:00
}