Disable old profile pages
This commit is contained in:
@ -1,102 +1,102 @@
|
||||
package profile
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
// import (
|
||||
// "net/http"
|
||||
// "strconv"
|
||||
// "strings"
|
||||
// "time"
|
||||
|
||||
"github.com/aerogo/aero"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
"github.com/animenotifier/notify.moe/utils"
|
||||
)
|
||||
// "github.com/aerogo/aero"
|
||||
// "github.com/animenotifier/arn"
|
||||
// "github.com/animenotifier/notify.moe/components"
|
||||
// "github.com/animenotifier/notify.moe/utils"
|
||||
// )
|
||||
|
||||
type stats map[string]float64
|
||||
// type stats map[string]float64
|
||||
|
||||
// GetStatsByUser shows statistics for a given user.
|
||||
func GetStatsByUser(ctx *aero.Context) string {
|
||||
nick := ctx.Get("nick")
|
||||
viewUser, err := arn.GetUserByNick(nick)
|
||||
userStats := utils.UserStats{}
|
||||
ratings := stats{}
|
||||
status := stats{}
|
||||
types := stats{}
|
||||
years := stats{}
|
||||
studios := stats{}
|
||||
genres := stats{}
|
||||
trackTags := stats{}
|
||||
// // GetStatsByUser shows statistics for a given user.
|
||||
// func GetStatsByUser(ctx *aero.Context) string {
|
||||
// nick := ctx.Get("nick")
|
||||
// viewUser, err := arn.GetUserByNick(nick)
|
||||
// userStats := utils.UserStats{}
|
||||
// ratings := stats{}
|
||||
// status := stats{}
|
||||
// types := stats{}
|
||||
// years := stats{}
|
||||
// studios := stats{}
|
||||
// genres := stats{}
|
||||
// trackTags := stats{}
|
||||
|
||||
if err != nil {
|
||||
return ctx.Error(http.StatusNotFound, "User not found", err)
|
||||
}
|
||||
// if err != nil {
|
||||
// return ctx.Error(http.StatusNotFound, "User not found", err)
|
||||
// }
|
||||
|
||||
animeList, err := arn.GetAnimeList(viewUser.ID)
|
||||
// animeList, err := arn.GetAnimeList(viewUser.ID)
|
||||
|
||||
if err != nil {
|
||||
return ctx.Error(http.StatusInternalServerError, "Anime list not found", err)
|
||||
}
|
||||
// if err != nil {
|
||||
// return ctx.Error(http.StatusInternalServerError, "Anime list not found", err)
|
||||
// }
|
||||
|
||||
animeList.Lock()
|
||||
defer animeList.Unlock()
|
||||
// animeList.Lock()
|
||||
// defer animeList.Unlock()
|
||||
|
||||
for _, item := range animeList.Items {
|
||||
status[item.Status]++
|
||||
// for _, item := range animeList.Items {
|
||||
// status[item.Status]++
|
||||
|
||||
if item.Status == arn.AnimeListStatusPlanned {
|
||||
continue
|
||||
}
|
||||
// if item.Status == arn.AnimeListStatusPlanned {
|
||||
// continue
|
||||
// }
|
||||
|
||||
currentWatch := item.Episodes * item.Anime().EpisodeLength
|
||||
reWatch := item.RewatchCount * item.Anime().EpisodeCount * item.Anime().EpisodeLength
|
||||
duration := time.Duration(currentWatch + reWatch)
|
||||
userStats.AnimeWatchingTime += duration * time.Minute
|
||||
// currentWatch := item.Episodes * item.Anime().EpisodeLength
|
||||
// reWatch := item.RewatchCount * item.Anime().EpisodeCount * item.Anime().EpisodeLength
|
||||
// duration := time.Duration(currentWatch + reWatch)
|
||||
// userStats.AnimeWatchingTime += duration * time.Minute
|
||||
|
||||
ratings[strconv.Itoa(int(item.Rating.Overall+0.5))]++
|
||||
types[item.Anime().Type]++
|
||||
// ratings[strconv.Itoa(int(item.Rating.Overall+0.5))]++
|
||||
// types[item.Anime().Type]++
|
||||
|
||||
for _, studio := range item.Anime().Studios() {
|
||||
studios[studio.Name.English]++
|
||||
}
|
||||
// for _, studio := range item.Anime().Studios() {
|
||||
// studios[studio.Name.English]++
|
||||
// }
|
||||
|
||||
for _, genre := range item.Anime().Genres {
|
||||
genres[genre]++
|
||||
}
|
||||
// for _, genre := range item.Anime().Genres {
|
||||
// genres[genre]++
|
||||
// }
|
||||
|
||||
if item.Anime().StartDate != "" {
|
||||
year := item.Anime().StartDate[:4]
|
||||
// if item.Anime().StartDate != "" {
|
||||
// year := item.Anime().StartDate[:4]
|
||||
|
||||
if year < "2000" {
|
||||
year = "Before 2000"
|
||||
}
|
||||
// if year < "2000" {
|
||||
// year = "Before 2000"
|
||||
// }
|
||||
|
||||
years[year]++
|
||||
}
|
||||
}
|
||||
// years[year]++
|
||||
// }
|
||||
// }
|
||||
|
||||
for track := range arn.StreamSoundTracks() {
|
||||
if !track.LikedBy(viewUser.ID) {
|
||||
continue
|
||||
}
|
||||
// for track := range arn.StreamSoundTracks() {
|
||||
// if !track.LikedBy(viewUser.ID) {
|
||||
// continue
|
||||
// }
|
||||
|
||||
for _, tag := range track.Tags {
|
||||
if strings.Contains(tag, ":") {
|
||||
continue
|
||||
}
|
||||
// for _, tag := range track.Tags {
|
||||
// if strings.Contains(tag, ":") {
|
||||
// continue
|
||||
// }
|
||||
|
||||
trackTags[tag]++
|
||||
}
|
||||
}
|
||||
// trackTags[tag]++
|
||||
// }
|
||||
// }
|
||||
|
||||
userStats.PieCharts = []*arn.PieChart{
|
||||
arn.NewPieChart("Genres", genres),
|
||||
arn.NewPieChart("Studios", studios),
|
||||
arn.NewPieChart("Years", years),
|
||||
arn.NewPieChart("Ratings", ratings),
|
||||
arn.NewPieChart("Types", types),
|
||||
arn.NewPieChart("Status", status),
|
||||
arn.NewPieChart("Soundtracks", trackTags),
|
||||
}
|
||||
// userStats.PieCharts = []*arn.PieChart{
|
||||
// arn.NewPieChart("Genres", genres),
|
||||
// arn.NewPieChart("Studios", studios),
|
||||
// arn.NewPieChart("Years", years),
|
||||
// arn.NewPieChart("Ratings", ratings),
|
||||
// arn.NewPieChart("Types", types),
|
||||
// arn.NewPieChart("Status", status),
|
||||
// arn.NewPieChart("Soundtracks", trackTags),
|
||||
// }
|
||||
|
||||
return ctx.HTML(components.ProfileStats(&userStats, viewUser, utils.GetUser(ctx), ctx.URI()))
|
||||
}
|
||||
// return ctx.HTML(components.ProfileStats(&userStats, viewUser, utils.GetUser(ctx), ctx.URI()))
|
||||
// }
|
||||
|
Reference in New Issue
Block a user