Working on contest toml import
This commit is contained in:
parent
a590a57b65
commit
766b54322a
5 changed files with 21 additions and 29 deletions
|
@ -6,12 +6,13 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"git.andreafazzi.eu/andrea/oef/orm"
|
"git.andreafazzi.eu/andrea/oef/orm"
|
||||||
"git.andreafazzi.eu/andrea/oef/renderer"
|
"git.andreafazzi.eu/andrea/oef/renderer"
|
||||||
|
"github.com/jinzhu/inflection"
|
||||||
)
|
)
|
||||||
|
|
||||||
// A client represents a client connection to the Headmaster test
|
// A client represents a client connection to the Headmaster test
|
||||||
|
@ -115,33 +116,10 @@ func (c *Client) getModel(name string, model interface{}) (interface{}, error) {
|
||||||
return model, nil
|
return model, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) Contests(contests *[]*orm.Contest) error {
|
|
||||||
var response renderer.JsonResponse
|
|
||||||
|
|
||||||
data, err := c.SendRequest("GET", "/api/contests?format=json", nil)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := json.Unmarshal(data, &response); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if string(response.Error) != "" {
|
|
||||||
return errors.New(string(response.Error))
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := json.Unmarshal(response.Result, &contests); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *Client) GetAll(model interface{}) error {
|
func (c *Client) GetAll(model interface{}) error {
|
||||||
var response renderer.JsonResponse
|
var response renderer.JsonResponse
|
||||||
|
|
||||||
log.Println(orm.ModelName(model))
|
data, err := c.SendRequest("GET", fmt.Sprintf("/api/%s?format=json", pluralizedModelName(model)), nil)
|
||||||
data, err := c.SendRequest("GET", "/api/participants?format=json", nil)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -159,3 +137,7 @@ func (c *Client) GetAll(model interface{}) error {
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func pluralizedModelName(value interface{}) string {
|
||||||
|
return inflection.Plural(strings.ToLower(orm.ModelName(value)))
|
||||||
|
}
|
||||||
|
|
14
orm/orm.go
14
orm/orm.go
|
@ -139,9 +139,17 @@ func PostNothing(args map[string]string, w http.ResponseWriter, r *http.Request)
|
||||||
}
|
}
|
||||||
|
|
||||||
func ModelName(s interface{}) string {
|
func ModelName(s interface{}) string {
|
||||||
if t := reflect.TypeOf(s); t.Kind() == reflect.Ptr {
|
t := reflect.TypeOf(s)
|
||||||
return t.Elem().Name()
|
switch t.Kind() {
|
||||||
} else {
|
case reflect.Ptr:
|
||||||
|
elem := t.Elem()
|
||||||
|
if strings.Contains(elem.String(), "[]") {
|
||||||
|
return strings.Replace(elem.String(), "[]*orm.", "", -1)
|
||||||
|
}
|
||||||
|
return elem.Name()
|
||||||
|
case reflect.Slice:
|
||||||
|
return strings.Replace(t.Elem().String(), "*orm.", "", -1)
|
||||||
|
default:
|
||||||
return t.Name()
|
return t.Name()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
2
scripts/import_contest/.gitignore
vendored
Normal file
2
scripts/import_contest/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
import_contest
|
||||||
|
contests
|
Binary file not shown.
|
@ -18,7 +18,7 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
var contests []*orm.Contest
|
var contests []*orm.Contest
|
||||||
err = client.Contests(&contests)
|
err = client.GetAll(&contests)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue