oef/orm/orm.go

115 lines
2.5 KiB
Go
Raw Normal View History

2019-11-04 15:00:46 +01:00
package orm
import (
"fmt"
"net/http"
"path"
"reflect"
"strings"
"git.andreafazzi.eu/andrea/oef/config"
"github.com/gorilla/sessions"
2019-11-04 15:00:46 +01:00
"github.com/jinzhu/gorm"
"github.com/jinzhu/inflection"
_ "github.com/jinzhu/gorm/dialects/mysql"
)
type IDer interface {
GetID() uint
}
type GetFn func(map[string]string, http.ResponseWriter, *http.Request) (interface{}, error)
2019-11-04 15:00:46 +01:00
var (
fns map[string]func(map[string]string, http.ResponseWriter, *http.Request) (interface{}, error)
2019-11-04 15:00:46 +01:00
currDB *gorm.DB
store = sessions.NewCookieStore([]byte(config.Config.Keys.CookieStoreKey))
2019-11-04 15:00:46 +01:00
)
func init() {
fns = make(map[string]func(map[string]string, http.ResponseWriter, *http.Request) (interface{}, error), 0)
2019-11-04 15:00:46 +01:00
}
func New(connection string) (*gorm.DB, error) {
db, err := gorm.Open("mysql", connection)
if err != nil {
return nil, err
}
return db, nil
}
func AutoMigrate(models ...interface{}) {
if err := currDB.AutoMigrate(models...).Error; err != nil {
panic(err)
}
}
2019-12-09 08:27:46 +01:00
func CreateCategories() {
for _, name := range []string{"Junior", "Senior"} {
var category Category
if err := currDB.FirstOrCreate(&category, Category{Name: name}).Error; err != nil {
panic(err)
}
}
}
2019-11-04 15:00:46 +01:00
func Use(db *gorm.DB) {
currDB = db
}
func DB() *gorm.DB {
return currDB
}
func MapHandlers(models []interface{}) error {
for _, model := range models {
name := inflection.Plural(strings.ToLower(modelName(model)))
for p, action := range map[string]string{
"": "ReadAll",
"create/": "Create",
"{id}": "Read",
"{id}/update": "Update",
"{id}/delete": "Delete",
} {
method := reflect.ValueOf(model).MethodByName(action)
if !method.IsValid() {
return fmt.Errorf("Action %s is not defined for model %s", action, name)
}
joinedPath := path.Join("/", name, p)
if strings.HasSuffix(p, "/") {
joinedPath += "/"
}
fns[joinedPath] = method.Interface().(func(map[string]string, http.ResponseWriter, *http.Request) (interface{}, error))
2019-11-04 15:00:46 +01:00
}
}
return nil
}
func GetFunc(path string) (GetFn, error) {
fn, ok := fns[path]
if !ok {
return nil, fmt.Errorf("Can't map path %s to any model methods.", path)
}
return fn, nil
}
func GetNothing(args map[string]string) (interface{}, error) {
return nil, nil
}
func PostNothing(args map[string]string, w http.ResponseWriter, r *http.Request) (IDer, error) {
2019-11-04 15:00:46 +01:00
return nil, nil
}
func modelName(s interface{}) string {
if t := reflect.TypeOf(s); t.Kind() == reflect.Ptr {
return t.Elem().Name()
} else {
return t.Name()
}
}