server/libfic/theme_export.go

72 lines
1.8 KiB
Go
Raw Normal View History

2018-01-09 14:16:16 +00:00
package fic
import (
"fmt"
2018-11-25 02:20:03 +00:00
"path"
2018-01-09 14:16:16 +00:00
)
2018-03-09 18:07:08 +00:00
// exportedExercice is a structure representing a challenge, as exposed to players.
type exportedExercice struct {
Title string `json:"title"`
URLId string `json:"urlid"`
Tags []string `json:"tags"`
Gain int64 `json:"gain"`
Coeff float64 `json:"curcoeff"`
Solved int64 `json:"solved"`
Tried int64 `json:"tried"`
2018-01-09 14:16:16 +00:00
}
2018-03-09 18:07:08 +00:00
// exportedTheme is a structure representing a Theme, as exposed to players.
2018-01-09 14:16:16 +00:00
type exportedTheme struct {
Name string `json:"name"`
2018-01-18 10:07:50 +00:00
URLId string `json:"urlid"`
2018-01-09 14:16:16 +00:00
Authors string `json:"authors"`
Intro string `json:"intro"`
2018-11-25 02:20:03 +00:00
Image string `json:"image,omitempty"`
2018-03-09 18:07:08 +00:00
Exercices map[string]exportedExercice `json:"exercices"`
2018-01-09 14:16:16 +00:00
}
2018-03-09 18:07:08 +00:00
// Exportedthemes exports themes from the database, to be displayed to players.
2018-01-09 14:16:16 +00:00
func ExportThemes() (interface{}, error) {
if themes, err := GetThemes(); err != nil {
return nil, err
} else {
ret := map[string]exportedTheme{}
for _, theme := range themes {
if exercices, err := theme.GetExercices(); err != nil {
return nil, err
} else {
2018-03-09 18:07:08 +00:00
exos := map[string]exportedExercice{}
2018-01-09 14:16:16 +00:00
for _, exercice := range exercices {
tags, _ := exercice.GetTags()
2018-03-09 18:07:08 +00:00
exos[fmt.Sprintf("%d", exercice.Id)] = exportedExercice{
2018-01-09 14:16:16 +00:00
exercice.Title,
2018-01-18 10:07:50 +00:00
exercice.URLId,
tags,
2018-01-09 14:16:16 +00:00
exercice.Gain,
exercice.Coefficient,
exercice.SolvedCount(),
exercice.TriedTeamCount(),
}
}
2018-11-25 02:20:03 +00:00
imgpath := ""
if len(theme.Image) > 0 {
imgpath = path.Join(FilesDir, theme.Image)
}
2018-01-09 14:16:16 +00:00
ret[fmt.Sprintf("%d", theme.Id)] = exportedTheme{
theme.Name,
2018-01-18 10:07:50 +00:00
theme.URLId,
2018-01-09 14:16:16 +00:00
theme.Authors,
theme.Intro,
2018-11-25 02:20:03 +00:00
imgpath,
2018-01-09 14:16:16 +00:00
exos,
}
}
}
return ret, nil
}
}