mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-22 08:31:30 +08:00
Styling fixes
This commit is contained in:
parent
ac360ccb1c
commit
00e783ff8a
@ -41,6 +41,7 @@ func HandleDiscordCallback(w http.ResponseWriter, r *http.Request) (string, erro
|
||||
http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
||||
return "", errors.New("code is empty")
|
||||
}
|
||||
|
||||
discordId, err := RetrieveDiscordId(code)
|
||||
if err != nil {
|
||||
http.Redirect(w, r, GameURL, http.StatusSeeOther)
|
||||
|
@ -75,5 +75,6 @@ func GenerateTokenForUsername(username string) (string, error) {
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("failed to add account session")
|
||||
}
|
||||
|
||||
return base64.StdEncoding.EncodeToString(token), nil
|
||||
}
|
||||
|
@ -96,11 +96,7 @@ func Init() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
_, err = s3scheduler.AddFunc("@hourly", func() {
|
||||
time.Sleep(time.Second)
|
||||
S3SaveMigration()
|
||||
})
|
||||
|
||||
_, err = s3scheduler.AddFunc("@hourly", S3SaveMigration)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@ -129,32 +125,52 @@ func S3SaveMigration() {
|
||||
svc := s3.NewFromConfig(cfg, func(o *s3.Options) {
|
||||
o.BaseEndpoint = aws.String(os.Getenv("AWS_ENDPOINT_URL_S3"))
|
||||
})
|
||||
|
||||
// retrieve accounts from db
|
||||
_, err := svc.CreateBucket(context.Background(), &s3.CreateBucketInput{
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Printf("error while creating bucket: %s", err)
|
||||
}
|
||||
|
||||
accounts := db.RetrieveOldAccounts()
|
||||
accounts, err := db.RetrieveOldAccounts()
|
||||
if err != nil {
|
||||
log.Printf("failed to retrieve old accounts")
|
||||
return
|
||||
}
|
||||
|
||||
for _, user := range accounts {
|
||||
data, _ := db.ReadSystemSaveData(user)
|
||||
username, _ := db.FetchUsernameFromUUID(user)
|
||||
json, _ := json.Marshal(data)
|
||||
_, err := svc.PutObject(context.Background(), &s3.PutObjectInput{
|
||||
data, err := db.ReadSystemSaveData(user)
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
username, err := db.FetchUsernameFromUUID(user)
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
json, err := json.Marshal(data)
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
_, err = svc.PutObject(context.Background(), &s3.PutObjectInput{
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
Key: aws.String(username),
|
||||
Body: bytes.NewReader(json),
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Printf("error while saving data in s3 for user %s: %s", username, err)
|
||||
continue
|
||||
}
|
||||
|
||||
err = db.UpdateLocation(user, username)
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
fmt.Printf("Saved data in s3 for user %s\n", username)
|
||||
db.UpdateLocation(user, username)
|
||||
}
|
||||
}
|
||||
|
108
api/endpoints.go
108
api/endpoints.go
@ -751,36 +751,36 @@ func handleAdminDiscordUnlink(w http.ResponseWriter, r *http.Request) {
|
||||
discordId := r.Form.Get("discordId")
|
||||
|
||||
switch {
|
||||
case username != "":
|
||||
log.Printf("Username given, removing discordId")
|
||||
// this does a quick call to make sure the username exists on the server before allowing the rest of the code to run
|
||||
// this calls error value 404 (StatusNotFound) if there's no data; this means the username does not exist in the server
|
||||
_, err = db.CheckUsernameExists(username)
|
||||
if err != nil {
|
||||
httpError(w, r, fmt.Errorf("username does not exist on the server"), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
case username != "":
|
||||
log.Printf("Username given, removing discordId")
|
||||
// this does a quick call to make sure the username exists on the server before allowing the rest of the code to run
|
||||
// this calls error value 404 (StatusNotFound) if there's no data; this means the username does not exist in the server
|
||||
_, err = db.CheckUsernameExists(username)
|
||||
if err != nil {
|
||||
httpError(w, r, fmt.Errorf("username does not exist on the server"), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
userUuid, err := db.FetchUUIDFromUsername(username)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
userUuid, err := db.FetchUUIDFromUsername(username)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
err = db.RemoveDiscordIdByUUID(userUuid)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
case discordId != "":
|
||||
log.Printf("DiscordID given, removing discordId")
|
||||
err = db.RemoveDiscordIdByDiscordId(discordId)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
err = db.RemoveDiscordIdByUUID(userUuid)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
case discordId != "":
|
||||
log.Printf("DiscordID given, removing discordId")
|
||||
err = db.RemoveDiscordIdByDiscordId(discordId)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
log.Printf("%s: %s removed discord id %s from username %s", userDiscordId, r.URL.Path, r.Form.Get("discordId"), r.Form.Get("username"))
|
||||
|
||||
w.WriteHeader(http.StatusOK)
|
||||
@ -821,7 +821,7 @@ func handleAdminGoogleLink(w http.ResponseWriter, r *http.Request) {
|
||||
httpError(w, r, fmt.Errorf("username does not exist on the server"), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
userUuid, err := db.FetchUUIDFromUsername(username)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
@ -868,34 +868,34 @@ func handleAdminGoogleUnlink(w http.ResponseWriter, r *http.Request) {
|
||||
googleId := r.Form.Get("googleId")
|
||||
|
||||
switch {
|
||||
case username != "":
|
||||
log.Printf("Username given, removing googleId")
|
||||
// this does a quick call to make sure the username exists on the server before allowing the rest of the code to run
|
||||
// this calls error value 404 (StatusNotFound) if there's no data; this means the username does not exist in the server
|
||||
_, err = db.CheckUsernameExists(username)
|
||||
if err != nil {
|
||||
httpError(w, r, fmt.Errorf("username does not exist on the server"), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
case username != "":
|
||||
log.Printf("Username given, removing googleId")
|
||||
// this does a quick call to make sure the username exists on the server before allowing the rest of the code to run
|
||||
// this calls error value 404 (StatusNotFound) if there's no data; this means the username does not exist in the server
|
||||
_, err = db.CheckUsernameExists(username)
|
||||
if err != nil {
|
||||
httpError(w, r, fmt.Errorf("username does not exist on the server"), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
userUuid, err := db.FetchUUIDFromUsername(username)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
userUuid, err := db.FetchUUIDFromUsername(username)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
err = db.RemoveGoogleIdByUUID(userUuid)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
case googleId != "":
|
||||
log.Printf("DiscordID given, removing googleId")
|
||||
err = db.RemoveGoogleIdByDiscordId(googleId)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
err = db.RemoveGoogleIdByUUID(userUuid)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
case googleId != "":
|
||||
log.Printf("DiscordID given, removing googleId")
|
||||
err = db.RemoveGoogleIdByDiscordId(googleId)
|
||||
if err != nil {
|
||||
httpError(w, r, err, http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
log.Printf("%s: %s removed google id %s from username %s", userDiscordId, r.URL.Path, r.Form.Get("googleId"), r.Form.Get("username"))
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
Copyright (C) 2024 Pagefault Games
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package savedata
|
||||
|
||||
import (
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
Copyright (C) 2024 Pagefault Games
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package savedata
|
||||
|
||||
import (
|
||||
|
@ -86,7 +86,6 @@ func AddDiscordIdByUUID(discordId string, uuid []byte) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
func FetchUsernameByDiscordId(discordId string) (string, error) {
|
||||
var username string
|
||||
err := handle.QueryRow("SELECT username FROM accounts WHERE discordId = ?", discordId).Scan(&username)
|
||||
@ -200,11 +199,11 @@ func FetchLastLoggedInDateByUsername(username string) (string, error) {
|
||||
}
|
||||
|
||||
type AdminSearchResponse struct {
|
||||
Username string `json:"username"`
|
||||
DiscordId string `json:"discordId"`
|
||||
GoogleId string `json:"googleId"`
|
||||
LastLoggedIn string `json:"lastLoggedIn"`
|
||||
Registered string `json:"registered"`
|
||||
Username string `json:"username"`
|
||||
DiscordId string `json:"discordId"`
|
||||
GoogleId string `json:"googleId"`
|
||||
LastLoggedIn string `json:"lastLoggedIn"`
|
||||
Registered string `json:"registered"`
|
||||
}
|
||||
|
||||
func FetchAdminDetailsByUsername(dbUsername string) (AdminSearchResponse, error) {
|
||||
@ -217,11 +216,11 @@ func FetchAdminDetailsByUsername(dbUsername string) (AdminSearchResponse, error)
|
||||
}
|
||||
|
||||
adminResponse = AdminSearchResponse{
|
||||
Username: resultUsername.String,
|
||||
DiscordId: resultDiscordId.String,
|
||||
GoogleId: resultGoogleId.String,
|
||||
LastLoggedIn: resultLastLoggedIn.String,
|
||||
Registered: resultRegistered.String,
|
||||
Username: resultUsername.String,
|
||||
DiscordId: resultDiscordId.String,
|
||||
GoogleId: resultGoogleId.String,
|
||||
LastLoggedIn: resultLastLoggedIn.String,
|
||||
Registered: resultRegistered.String,
|
||||
}
|
||||
|
||||
return adminResponse, nil
|
||||
@ -478,4 +477,4 @@ func RemoveGoogleIdByDiscordId(discordId string) error {
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
1
db/db.go
1
db/db.go
@ -116,5 +116,6 @@ func setupDb(tx *sql.Tx) error {
|
||||
return fmt.Errorf("failed to execute query: %w, query: %s", err, q)
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
@ -243,7 +243,10 @@ func RetrieveSystemSaveFromS3(uuid []byte) error {
|
||||
}
|
||||
|
||||
var session defs.SystemSaveData
|
||||
json.NewDecoder(resp.Body).Decode(&session)
|
||||
err = json.NewDecoder(resp.Body).Decode(&session)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
err = StoreSystemSaveData(uuid, session)
|
||||
if err != nil {
|
||||
@ -262,41 +265,46 @@ func RetrieveSystemSaveFromS3(uuid []byte) error {
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
Key: aws.String(username),
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
fmt.Printf("Failed to delete object %s from s3: %s\n", username, err)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func RetrieveOldAccounts() [][]byte {
|
||||
func RetrieveOldAccounts() ([][]byte, error) {
|
||||
var users [][]byte
|
||||
rows, err := handle.Query("SELECT uuid FROM accounts WHERE isInLocalDb = 1 && lastActivity < DATE_SUB(NOW(), INTERVAL 3 MONTH) LIMIT 3000")
|
||||
if err != nil {
|
||||
return nil
|
||||
return nil, err
|
||||
}
|
||||
|
||||
defer rows.Close()
|
||||
|
||||
for rows.Next() {
|
||||
var uuid []byte
|
||||
if err := rows.Scan(&uuid); err != nil {
|
||||
return nil
|
||||
err := rows.Scan(&uuid)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
users = append(users, uuid)
|
||||
}
|
||||
if err := rows.Err(); err != nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
return users
|
||||
return users, nil
|
||||
}
|
||||
|
||||
func UpdateLocation(uuid []byte, username string) {
|
||||
func UpdateLocation(uuid []byte, username string) error {
|
||||
_, err := handle.Exec("UPDATE accounts SET isInLocalDb = 0 WHERE uuid = ?", uuid)
|
||||
if err != nil {
|
||||
fmt.Printf("Failed to update location for user %s\n", username)
|
||||
return
|
||||
return err
|
||||
}
|
||||
|
||||
DeleteSystemSaveData(uuid)
|
||||
err = DeleteSystemSaveData(uuid)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user