ripple-api/app/v1/user_scores_relax.go

128 lines
3.5 KiB
Go
Raw Normal View History

2019-02-03 12:45:15 +00:00
package v1
import (
"fmt"
"strings"
"gopkg.in/thehowl/go-osuapi.v1"
2019-02-25 21:04:55 +00:00
"github.com/osuyozora/api/common"
2019-02-03 12:45:15 +00:00
"zxq.co/x/getrank"
)
2019-02-03 12:59:47 +00:00
type userScoreRx struct {
2019-02-03 12:45:15 +00:00
Score
Beatmap beatmap `json:"beatmap"`
}
2019-02-03 12:59:47 +00:00
type userScoresResponseRx struct {
2019-02-03 12:45:15 +00:00
common.ResponseBase
2019-02-03 12:59:47 +00:00
Scores []userScoreRx `json:"scores"`
2019-02-03 12:45:15 +00:00
}
2019-02-03 12:59:47 +00:00
const userScoreSelectBaseRelax = `
2019-02-03 12:45:15 +00:00
SELECT
2019-02-03 12:49:32 +00:00
scores_relax.id, scores_relax.beatmap_md5, scores_relax.score,
scores_relax.max_combo, scores_relax.full_combo, scores_relax.mods,
scores_relax.300_count, scores_relax.100_count, scores_relax.50_count,
scores_relax.gekis_count, scores_relax.katus_count, scores_relax.misses_count,
scores_relax.time, scores_relax.play_mode, scores_relax.accuracy, scores_relax.pp,
scores_relax.completed,
2019-02-03 12:45:15 +00:00
beatmaps.beatmap_id, beatmaps.beatmapset_id, beatmaps.beatmap_md5,
beatmaps.song_name, beatmaps.ar, beatmaps.od, beatmaps.difficulty_std,
beatmaps.difficulty_taiko, beatmaps.difficulty_ctb, beatmaps.difficulty_mania,
beatmaps.max_combo, beatmaps.hit_length, beatmaps.ranked,
beatmaps.ranked_status_freezed, beatmaps.latest_update
2019-02-03 13:07:54 +00:00
FROM scores_relax
2019-02-03 12:49:32 +00:00
INNER JOIN beatmaps ON beatmaps.beatmap_md5 = scores_relax.beatmap_md5
INNER JOIN users ON users.id = scores_relax.userid
2019-02-03 12:45:15 +00:00
`
// UserScoresBestGET retrieves the best scores of an user, sorted by PP if
// mode is standard and sorted by ranked score otherwise.
2019-02-03 12:49:32 +00:00
func UserScoresBestRelaxGET(md common.MethodData) common.CodeMessager {
2019-02-03 12:45:15 +00:00
cm, wc, param := whereClauseUser(md, "users")
if cm != nil {
return *cm
}
2019-02-03 13:21:31 +00:00
mc := genModeClauseRx(md)
2019-02-03 12:49:32 +00:00
// For all modes that have PP, we leave out 0 PP scores_relax.
2019-02-03 12:45:15 +00:00
if getMode(md.Query("mode")) != "ctb" {
2019-02-03 12:49:32 +00:00
mc += " AND scores_relax.pp > 0"
2019-02-03 12:45:15 +00:00
}
2019-02-03 12:59:47 +00:00
return scoresPutsRx(md, fmt.Sprintf(
2019-02-03 12:45:15 +00:00
`WHERE
2019-02-03 12:49:32 +00:00
scores_relax.completed = '3'
2019-02-03 12:45:15 +00:00
AND %s
%s
AND `+md.User.OnlyUserPublic(true)+`
2019-02-03 12:49:32 +00:00
ORDER BY scores_relax.pp DESC, scores_relax.score DESC %s`,
2019-02-03 12:45:15 +00:00
wc, mc, common.Paginate(md.Query("p"), md.Query("l"), 100),
), param)
}
2019-02-03 12:49:32 +00:00
// UserScoresRecentGET retrieves an user's latest scores_relax.
func UserScoresRecentRelaxGET(md common.MethodData) common.CodeMessager {
2019-02-03 12:45:15 +00:00
cm, wc, param := whereClauseUser(md, "users")
if cm != nil {
return *cm
}
2019-02-03 12:59:47 +00:00
return scoresPutsRx(md, fmt.Sprintf(
2019-02-03 12:45:15 +00:00
`WHERE
%s
%s
AND `+md.User.OnlyUserPublic(true)+`
2019-02-03 12:49:32 +00:00
ORDER BY scores_relax.id DESC %s`,
2019-02-03 13:21:31 +00:00
wc, genModeClauseRx(md), common.Paginate(md.Query("p"), md.Query("l"), 100),
2019-02-03 12:45:15 +00:00
), param)
}
2019-02-03 12:59:47 +00:00
func scoresPutsRx(md common.MethodData, whereClause string, params ...interface{}) common.CodeMessager {
rows, err := md.DB.Query(userScoreSelectBaseRelax+whereClause, params...)
2019-02-03 12:45:15 +00:00
if err != nil {
md.Err(err)
return Err500
}
2019-02-03 12:59:47 +00:00
var scores []userScoreRx
2019-02-03 12:45:15 +00:00
for rows.Next() {
var (
2019-02-03 12:59:47 +00:00
us userScoreRx
2019-02-03 12:45:15 +00:00
b beatmap
)
err = rows.Scan(
&us.ID, &us.BeatmapMD5, &us.Score.Score,
&us.MaxCombo, &us.FullCombo, &us.Mods,
&us.Count300, &us.Count100, &us.Count50,
&us.CountGeki, &us.CountKatu, &us.CountMiss,
&us.Time, &us.PlayMode, &us.Accuracy, &us.PP,
&us.Completed,
&b.BeatmapID, &b.BeatmapsetID, &b.BeatmapMD5,
&b.SongName, &b.AR, &b.OD, &b.Diff2.STD,
&b.Diff2.Taiko, &b.Diff2.CTB, &b.Diff2.Mania,
&b.MaxCombo, &b.HitLength, &b.Ranked,
&b.RankedStatusFrozen, &b.LatestUpdate,
)
if err != nil {
md.Err(err)
return Err500
}
b.Difficulty = b.Diff2.STD
us.Beatmap = b
us.Rank = strings.ToUpper(getrank.GetRank(
osuapi.Mode(us.PlayMode),
osuapi.Mods(us.Mods),
us.Accuracy,
us.Count300,
us.Count100,
us.Count50,
us.CountMiss,
))
scores = append(scores, us)
}
2019-02-03 12:59:47 +00:00
r := userScoresResponseRx{}
2019-02-03 12:45:15 +00:00
r.Code = 200
r.Scores = scores
return r
}