surrealpatch/db/create.go
2017-02-20 01:44:13 +00:00

106 lines
2.4 KiB
Go

// Copyright © 2016 Abcum Ltd
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package db
import (
"fmt"
"github.com/abcum/surreal/log"
"github.com/abcum/surreal/sql"
"github.com/abcum/surreal/util/item"
"github.com/abcum/surreal/util/keys"
"github.com/abcum/surreal/util/uuid"
)
func (e *executor) executeCreateStatement(ast *sql.CreateStatement) (out []interface{}, err error) {
log.WithPrefix("sql").WithFields(map[string]interface{}{
"ns": ast.NS,
"db": ast.DB,
}).Debugln(ast)
for k, w := range ast.What {
if what, ok := w.(*sql.Param); ok {
ast.What[k] = e.ctx.Get(what.ID).Data()
}
}
for _, w := range ast.What {
switch what := w.(type) {
default:
return out, fmt.Errorf("Can not execute CREATE query using value '%v' with type '%T'", what, what)
case *sql.Thing:
key := &keys.Thing{KV: ast.KV, NS: ast.NS, DB: ast.DB, TB: what.TB, ID: what.ID}
if kv, err := e.txn.Get(0, key.Encode()); err != nil {
return nil, err
} else {
doc := item.New(kv, e.txn, key, e.ctx)
if ret, err := create(doc, ast); err != nil {
return nil, err
} else if ret != nil {
out = append(out, ret)
}
}
case *sql.Table:
key := &keys.Thing{KV: ast.KV, NS: ast.NS, DB: ast.DB, TB: what.TB, ID: uuid.NewV5(uuid.NewV4().UUID, ast.KV).String()}
if kv, err := e.txn.Get(0, key.Encode()); err != nil {
return nil, err
} else {
doc := item.New(kv, e.txn, key, e.ctx)
if ret, err := create(doc, ast); err != nil {
return nil, err
} else if ret != nil {
out = append(out, ret)
}
}
}
}
return
}
func create(doc *item.Doc, ast *sql.CreateStatement) (out interface{}, err error) {
if err = doc.Merge(ast.Data); err != nil {
return
}
if !doc.Allow("CREATE") {
return
}
if err = doc.StoreIndex(); err != nil {
return
}
if err = doc.StartThing(); err != nil {
return
}
if err = doc.StorePatch(); err != nil {
return
}
out = doc.Yield(ast.Echo)
return
}