2019-11-04 15:00:46 +01:00
|
|
|
package orm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2019-11-13 12:15:29 +01:00
|
|
|
|
|
|
|
"git.andreafazzi.eu/andrea/oef/renderer"
|
|
|
|
"github.com/jinzhu/gorm"
|
2019-11-04 15:00:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Question struct {
|
|
|
|
gorm.Model
|
|
|
|
|
2019-11-14 12:55:22 +01:00
|
|
|
Text string
|
|
|
|
Contest *Contest
|
|
|
|
ContestID uint `schema:"contest_id"`
|
2019-11-13 15:54:17 +01:00
|
|
|
|
|
|
|
Answers []*Answer
|
2019-11-14 12:55:22 +01:00
|
|
|
|
|
|
|
SelectedContest map[uint]string `gorm:"-"`
|
|
|
|
AllContests []*Contest `gorm:"-"`
|
2019-11-04 15:00:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (q *Question) GetID() uint { return q.ID }
|
|
|
|
|
|
|
|
func (q *Question) String() string {
|
|
|
|
return q.Text
|
|
|
|
}
|
|
|
|
|
2019-12-03 11:14:29 +01:00
|
|
|
func (q *Question) Create(args map[string]string, w http.ResponseWriter, r *http.Request) (interface{}, error) {
|
2019-11-13 12:15:29 +01:00
|
|
|
if r.Method == "GET" {
|
2019-11-14 12:55:22 +01:00
|
|
|
question := new(Question)
|
|
|
|
if err := DB().Find(&question.AllContests).Error; err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return question, nil
|
2019-11-13 12:15:29 +01:00
|
|
|
} else {
|
|
|
|
question := new(Question)
|
|
|
|
err := renderer.Decode(question, r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
question, err = CreateQuestion(question)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return question, nil
|
|
|
|
}
|
2019-11-04 15:00:46 +01:00
|
|
|
}
|
|
|
|
|
2019-12-03 11:14:29 +01:00
|
|
|
func (q *Question) Read(args map[string]string, w http.ResponseWriter, r *http.Request) (interface{}, error) {
|
2019-11-13 15:54:17 +01:00
|
|
|
var question Question
|
|
|
|
|
|
|
|
id := args["id"]
|
|
|
|
|
2019-12-13 12:55:11 +01:00
|
|
|
if err := DB().Preload("Answers", func(db *gorm.DB) *gorm.DB {
|
|
|
|
return db.Order("answers.correct DESC")
|
|
|
|
}).Preload("Contest").First(&question, id).Error; err != nil {
|
2019-11-13 15:54:17 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &question, nil
|
2019-11-04 15:00:46 +01:00
|
|
|
}
|
|
|
|
|
2019-12-03 11:14:29 +01:00
|
|
|
func (q *Question) ReadAll(args map[string]string, w http.ResponseWriter, r *http.Request) (interface{}, error) {
|
2019-11-04 15:00:46 +01:00
|
|
|
var questions []*Question
|
2019-11-14 12:55:22 +01:00
|
|
|
if err := DB().Preload("Contest").Order("created_at").Find(&questions).Error; err != nil {
|
2019-11-04 15:00:46 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return questions, nil
|
|
|
|
}
|
|
|
|
|
2019-12-03 11:14:29 +01:00
|
|
|
func (q *Question) Update(args map[string]string, w http.ResponseWriter, r *http.Request) (interface{}, error) {
|
2019-11-13 15:54:17 +01:00
|
|
|
if r.Method == "GET" {
|
2019-12-03 11:14:29 +01:00
|
|
|
result, err := q.Read(args, w, r)
|
2019-11-14 12:55:22 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
question := result.(*Question)
|
|
|
|
|
|
|
|
if err := DB().Find(&question.AllContests).Error; err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
question.SelectedContest = make(map[uint]string)
|
|
|
|
question.SelectedContest[question.ContestID] = "selected"
|
|
|
|
|
|
|
|
return question, nil
|
2019-11-13 15:54:17 +01:00
|
|
|
} else {
|
2019-12-03 11:14:29 +01:00
|
|
|
question, err := q.Read(args, w, r)
|
2019-11-13 15:54:17 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = renderer.Decode(question, r)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
_, err = SaveQuestion(question)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-03 11:14:29 +01:00
|
|
|
question, err = q.Read(args, w, r)
|
2019-11-13 15:54:17 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return question.(*Question), nil
|
|
|
|
}
|
2019-11-04 15:00:46 +01:00
|
|
|
}
|
|
|
|
|
2019-12-03 11:14:29 +01:00
|
|
|
func (q *Question) Delete(args map[string]string, w http.ResponseWriter, r *http.Request) (interface{}, error) {
|
2019-11-04 15:00:46 +01:00
|
|
|
return nil, nil
|
|
|
|
}
|
2019-11-13 12:15:29 +01:00
|
|
|
|
|
|
|
func CreateQuestion(question *Question) (*Question, error) {
|
|
|
|
if err := DB().Create(question).Error; err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return question, nil
|
|
|
|
}
|
2019-11-13 15:54:17 +01:00
|
|
|
|
|
|
|
func SaveQuestion(question interface{}) (interface{}, error) {
|
2019-11-14 12:55:22 +01:00
|
|
|
if err := DB().Omit("Answers", "Contest").Save(question).Error; err != nil {
|
2019-11-13 15:54:17 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return question, nil
|
|
|
|
}
|