ripple-api/app/v1/user.go

273 lines
8.5 KiB
Go
Raw Normal View History

2016-04-03 17:59:27 +00:00
// Package v1 implements the first version of the Ripple API.
package v1
import (
"database/sql"
"strconv"
"strings"
"time"
2016-04-19 14:07:27 +00:00
"git.zxq.co/ripple/rippleapi/common"
2016-04-03 17:59:27 +00:00
)
type userData struct {
2016-04-16 16:05:24 +00:00
common.ResponseBase
2016-04-03 17:59:27 +00:00
ID int `json:"id"`
Username string `json:"username"`
UsernameAKA string `json:"username_aka"`
RegisteredOn time.Time `json:"registered_on"`
Rank int `json:"rank"`
LatestActivity time.Time `json:"latest_activity"`
Country string `json:"country"`
}
// UsersGET is the API handler for GET /users
func UsersGET(md common.MethodData) common.CodeMessager {
shouldRet, whereClause, param := whereClauseUser(md)
if shouldRet != nil {
return *shouldRet
2016-04-03 17:59:27 +00:00
}
2016-04-03 21:09:28 +00:00
query := `
SELECT users.id, users.username, register_datetime, rank,
latest_activity, users_stats.username_aka,
2016-04-03 21:09:28 +00:00
users_stats.country, users_stats.show_country
FROM users
LEFT JOIN users_stats
ON users.id=users_stats.id
WHERE ` + whereClause + ` AND users.allowed='1'
2016-04-03 21:09:28 +00:00
LIMIT 1`
return userPuts(md, md.DB.QueryRow(query, param))
2016-04-03 21:09:28 +00:00
}
2016-04-16 16:05:24 +00:00
func userPuts(md common.MethodData, row *sql.Row) common.CodeMessager {
2016-04-03 21:09:28 +00:00
var err error
var user userData
2016-04-03 17:59:27 +00:00
2016-04-07 11:47:42 +00:00
var (
registeredOn int64
latestActivity int64
showCountry bool
)
2016-04-09 21:58:27 +00:00
err = row.Scan(&user.ID, &user.Username, &registeredOn, &user.Rank, &latestActivity, &user.UsernameAKA, &user.Country, &showCountry)
2016-04-03 17:59:27 +00:00
switch {
case err == sql.ErrNoRows:
2016-04-16 16:05:24 +00:00
return common.SimpleResponse(404, "No such user was found!")
2016-04-03 17:59:27 +00:00
case err != nil:
md.Err(err)
2016-04-16 16:05:24 +00:00
return Err500
2016-04-03 17:59:27 +00:00
}
user.RegisteredOn = time.Unix(registeredOn, 0)
user.LatestActivity = time.Unix(latestActivity, 0)
2016-04-07 11:47:42 +00:00
user.Country = genCountry(md, user.ID, showCountry, user.Country)
2016-04-16 16:05:24 +00:00
user.Code = 200
return user
2016-04-07 11:47:42 +00:00
}
func badgesToArray(badges string) []int {
var end []int
2016-04-03 17:59:27 +00:00
badgesSl := strings.Split(badges, ",")
for _, badge := range badgesSl {
if badge != "" && badge != "0" {
// We are ignoring errors because who really gives a shit if something's gone wrong on our end in this
// particular thing, we can just silently ignore this.
nb, err := strconv.Atoi(badge)
if err == nil && nb != 0 {
2016-04-07 11:47:42 +00:00
end = append(end, nb)
2016-04-03 17:59:27 +00:00
}
}
}
2016-04-07 11:47:42 +00:00
return end
}
2016-04-03 17:59:27 +00:00
2016-04-07 11:47:42 +00:00
func genCountry(md common.MethodData, uid int, showCountry bool, country string) string {
// If the user wants to stay anonymous, don't show their country.
// This can be overriden if we have the ReadConfidential privilege and the user we are accessing is the token owner.
if showCountry || (md.User.Privileges.HasPrivilegeReadConfidential() && uid == md.ID()) {
2016-04-07 11:47:42 +00:00
return country
2016-04-03 17:59:27 +00:00
}
2016-04-07 11:47:42 +00:00
return "XX"
2016-04-03 17:59:27 +00:00
}
2016-04-05 20:38:33 +00:00
// UserSelfGET is a shortcut for /users/id/self. (/users/self)
2016-04-16 16:05:24 +00:00
func UserSelfGET(md common.MethodData) common.CodeMessager {
md.C.Request.URL.RawQuery = "id=self&" + md.C.Request.URL.RawQuery
return UsersGET(md)
2016-04-05 20:38:33 +00:00
}
2016-04-07 09:59:38 +00:00
2016-04-16 16:05:24 +00:00
type whatIDResponse struct {
common.ResponseBase
ID int `json:"id"`
}
2016-04-07 09:59:38 +00:00
// UserWhatsTheIDGET is an API request that only returns an user's ID.
2016-04-16 16:05:24 +00:00
func UserWhatsTheIDGET(md common.MethodData) common.CodeMessager {
2016-04-07 09:59:38 +00:00
var (
2016-04-16 16:05:24 +00:00
r whatIDResponse
2016-04-07 09:59:38 +00:00
allowed int
)
err := md.DB.QueryRow("SELECT id, allowed FROM users WHERE username = ? LIMIT 1", md.C.Query("name")).Scan(&r.ID, &allowed)
if err != nil || (allowed != 1 && !md.User.Privileges.HasPrivilegeViewUserAdvanced()) {
2016-04-16 16:05:24 +00:00
return common.SimpleResponse(404, "That user could not be found!")
2016-04-07 09:59:38 +00:00
}
2016-04-16 16:05:24 +00:00
r.Code = 200
return r
2016-04-07 09:59:38 +00:00
}
2016-04-07 11:47:42 +00:00
type modeData struct {
RankedScore uint64 `json:"ranked_score"`
TotalScore uint64 `json:"total_score"`
PlayCount int `json:"playcount"`
ReplaysWatched int `json:"replays_watched"`
TotalHits int `json:"total_hits"`
Level float64 `json:"level"`
Accuracy float64 `json:"accuracy"`
GlobalLeaderboardRank int `json:"global_leaderboard_rank"`
}
2016-04-16 16:05:24 +00:00
type userFullResponse struct {
common.ResponseBase
2016-04-07 11:47:42 +00:00
userData
STD modeData `json:"std"`
Taiko modeData `json:"taiko"`
CTB modeData `json:"ctb"`
Mania modeData `json:"mania"`
PlayStyle int `json:"play_style"`
FavouriteMode int `json:"favourite_mode"`
2016-04-09 21:58:27 +00:00
Badges []int `json:"badges"`
2016-04-07 11:47:42 +00:00
}
// UserFullGET gets all of an user's information, with one exception: their userpage.
2016-04-16 16:05:24 +00:00
func UserFullGET(md common.MethodData) common.CodeMessager {
shouldRet, whereClause, param := whereClauseUser(md)
if shouldRet != nil {
return *shouldRet
}
2016-04-07 11:47:42 +00:00
// Hellest query I've ever done.
query := `
SELECT
users.id, users.username, users.register_datetime, users.rank, users.latest_activity,
users_stats.username_aka, users_stats.badges_shown, users_stats.country, users_stats.show_country,
users_stats.play_style, users_stats.favourite_mode,
users_stats.ranked_score_std, users_stats.total_score_std, users_stats.playcount_std,
users_stats.replays_watched_std, users_stats.total_hits_std, users_stats.level_std,
users_stats.avg_accuracy_std, leaderboard_std.position as std_position,
users_stats.ranked_score_taiko, users_stats.total_score_taiko, users_stats.playcount_taiko,
users_stats.replays_watched_taiko, users_stats.total_hits_taiko, users_stats.level_taiko,
users_stats.avg_accuracy_taiko, leaderboard_taiko.position as taiko_position,
users_stats.ranked_score_ctb, users_stats.total_score_ctb, users_stats.playcount_ctb,
users_stats.replays_watched_ctb, users_stats.total_hits_ctb, users_stats.level_ctb,
users_stats.avg_accuracy_ctb, leaderboard_ctb.position as ctb_position,
users_stats.ranked_score_mania, users_stats.total_score_mania, users_stats.playcount_mania,
users_stats.replays_watched_mania, users_stats.total_hits_mania, users_stats.level_mania,
users_stats.avg_accuracy_mania, leaderboard_mania.position as mania_position
FROM users
LEFT JOIN users_stats
ON users.id=users_stats.id
LEFT JOIN leaderboard_std
ON users.id=leaderboard_std.user
LEFT JOIN leaderboard_taiko
ON users.id=leaderboard_taiko.user
LEFT JOIN leaderboard_ctb
ON users.id=leaderboard_ctb.user
LEFT JOIN leaderboard_mania
ON users.id=leaderboard_mania.user
WHERE ` + whereClause + ` AND users.allowed = '1'
2016-04-07 11:47:42 +00:00
LIMIT 1
`
// Fuck.
2016-04-16 16:05:24 +00:00
r := userFullResponse{}
2016-04-07 11:47:42 +00:00
var (
badges string
country string
showCountry bool
registeredOn int64
latestActivity int64
)
err := md.DB.QueryRow(query, param).Scan(
2016-04-16 16:05:24 +00:00
&r.ID, &r.Username, &registeredOn, &r.Rank, &latestActivity,
2016-04-07 11:47:42 +00:00
2016-04-16 16:05:24 +00:00
&r.UsernameAKA, &badges, &country, &showCountry,
&r.PlayStyle, &r.FavouriteMode,
2016-04-07 11:47:42 +00:00
2016-04-16 16:05:24 +00:00
&r.STD.RankedScore, &r.STD.TotalScore, &r.STD.PlayCount,
&r.STD.ReplaysWatched, &r.STD.TotalHits, &r.STD.Level,
&r.STD.Accuracy, &r.STD.GlobalLeaderboardRank,
2016-04-07 11:47:42 +00:00
2016-04-16 16:05:24 +00:00
&r.Taiko.RankedScore, &r.Taiko.TotalScore, &r.Taiko.PlayCount,
&r.Taiko.ReplaysWatched, &r.Taiko.TotalHits, &r.Taiko.Level,
&r.Taiko.Accuracy, &r.Taiko.GlobalLeaderboardRank,
2016-04-07 11:47:42 +00:00
2016-04-16 16:05:24 +00:00
&r.CTB.RankedScore, &r.CTB.TotalScore, &r.CTB.PlayCount,
&r.CTB.ReplaysWatched, &r.CTB.TotalHits, &r.CTB.Level,
&r.CTB.Accuracy, &r.CTB.GlobalLeaderboardRank,
2016-04-07 11:47:42 +00:00
2016-04-16 16:05:24 +00:00
&r.Mania.RankedScore, &r.Mania.TotalScore, &r.Mania.PlayCount,
&r.Mania.ReplaysWatched, &r.Mania.TotalHits, &r.Mania.Level,
&r.Mania.Accuracy, &r.Mania.GlobalLeaderboardRank,
2016-04-07 11:47:42 +00:00
)
switch {
case err == sql.ErrNoRows:
2016-04-16 16:05:24 +00:00
return common.SimpleResponse(404, "That user could not be found!")
2016-04-07 11:47:42 +00:00
case err != nil:
md.Err(err)
2016-04-16 16:05:24 +00:00
return Err500
2016-04-07 11:47:42 +00:00
}
2016-04-16 16:05:24 +00:00
r.Country = genCountry(md, r.ID, showCountry, country)
r.Badges = badgesToArray(badges)
2016-04-07 11:47:42 +00:00
2016-04-16 16:05:24 +00:00
r.RegisteredOn = time.Unix(registeredOn, 0)
r.LatestActivity = time.Unix(latestActivity, 0)
2016-04-07 11:47:42 +00:00
r.Code = 200
2016-04-16 16:05:24 +00:00
return r
}
type userpageResponse struct {
common.ResponseBase
Userpage string `json:"userpage"`
2016-04-07 11:47:42 +00:00
}
// UserUserpageGET gets an user's userpage, as in the customisable thing.
2016-04-16 16:05:24 +00:00
func UserUserpageGET(md common.MethodData) common.CodeMessager {
var r userpageResponse
err := md.DB.QueryRow("SELECT userpage_content FROM users_stats WHERE id = ? LIMIT 1", md.C.Param("id")).Scan(&r.Userpage)
switch {
case err == sql.ErrNoRows:
2016-04-16 16:05:24 +00:00
return common.SimpleResponse(404, "No user with that user ID!")
case err != nil:
md.Err(err)
2016-04-16 16:05:24 +00:00
return Err500
}
r.Code = 200
2016-04-16 16:05:24 +00:00
return r
}
func whereClauseUser(md common.MethodData) (*common.CodeMessager, string, interface{}) {
switch {
case md.C.Query("id") == "self":
return nil, "users.id = ?", md.ID()
case md.C.Query("id") != "":
id, err := strconv.Atoi(md.C.Query("id"))
if err != nil {
a := common.SimpleResponse(400, "please pass a valid user ID")
return &a, "", nil
}
return nil, "users.id = ?", id
case md.C.Query("name") != "":
return nil, "users.username = ?", md.C.Query("name")
}
a := common.SimpleResponse(400, "you need to pass either querystring parameters name or id")
return &a, "", nil
}