oef/orm/orm.go

119 lines
2.7 KiB
Go
Raw Permalink Normal View History

2019-11-04 15:00:46 +01:00
package orm
import (
"errors"
2019-11-04 15:00:46 +01:00
"fmt"
"net/http"
"path"
2020-01-17 07:59:57 +01:00
2019-11-04 15:00:46 +01:00
"strings"
"git.andreafazzi.eu/andrea/oef/config"
2020-01-17 07:59:57 +01:00
"git.andreafazzi.eu/andrea/oef/reflect"
2019-11-04 15:00:46 +01:00
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/mysql"
)
type IDer interface {
GetID() uint
}
type GetFn func(*Database, map[string]string, http.ResponseWriter, *http.Request) (interface{}, error)
2019-11-04 15:00:46 +01:00
2020-01-14 16:28:27 +01:00
type Database struct {
Config *config.ConfigT
2019-11-04 15:00:46 +01:00
models []interface{}
_db *gorm.DB
fns map[string]func(*Database, map[string]string, http.ResponseWriter, *http.Request) (interface{}, error)
2019-11-04 15:00:46 +01:00
}
func NewDatabase(config *config.ConfigT, models []interface{}) (*Database, error) {
var err error
2020-01-14 16:28:27 +01:00
db := new(Database)
db.Config = config
db.models = models
db.fns = make(map[string]func(*Database, map[string]string, http.ResponseWriter, *http.Request) (interface{}, error), 0)
db.mapHandlers(models)
db._db, err = gorm.Open("mysql", fmt.Sprintf("%s?%s", config.Orm.Connection, config.Orm.Options))
2019-11-04 15:00:46 +01:00
if err != nil {
return nil, err
}
return db, err
2019-11-04 15:00:46 +01:00
}
func (db *Database) AutoMigrate() {
if err := db._db.AutoMigrate(db.models...).Error; err != nil {
2019-11-04 15:00:46 +01:00
panic(err)
}
}
func (db *Database) Reset() {
if err := db._db.DropTable(db.models...).Error; err != nil {
panic(err)
}
}
func (db *Database) GetUser(username, password string) (*User, error) {
var user User
if err := db._db.Where("username = ? AND password = ?", username, password).First(&user).Error; err != nil {
return nil, errors.New("Authentication failed!")
2019-12-09 08:27:46 +01:00
}
return &user, nil
2019-12-09 08:27:46 +01:00
}
func (db *Database) DB() *gorm.DB {
return db._db
2019-11-04 15:00:46 +01:00
}
func CreateCategories(db *Database) {
for _, name := range categories {
var category Category
if err := db._db.FirstOrCreate(&category, Category{Name: name}).Error; err != nil {
panic(err)
}
}
2019-11-04 15:00:46 +01:00
}
func (db *Database) mapHandlers(models []interface{}) error {
2019-11-04 15:00:46 +01:00
for _, model := range models {
2020-01-17 07:59:57 +01:00
name := reflect.ModelNameLowerPlural(model)
2019-11-04 15:00:46 +01:00
for p, action := range map[string]string{
"": "ReadAll",
"create/": "Create",
"{id}": "Read",
"{id}/update": "Update",
"{id}/delete": "Delete",
} {
2020-01-17 07:59:57 +01:00
method := reflect.ModelMethod(model, action)
2019-11-04 15:00:46 +01:00
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 += "/"
}
db.fns[joinedPath] = method.Interface().(func(*Database, map[string]string, http.ResponseWriter, *http.Request) (interface{}, error))
2019-11-04 15:00:46 +01:00
}
}
return nil
}
func (db *Database) GetFunc(path string) (GetFn, error) {
fn, ok := db.fns[path]
2019-11-04 15:00:46 +01:00
if !ok {
return nil, fmt.Errorf("Can't map path %s to any model methods.", path)
}
return fn, nil
}