2014-01-26 08:41:37 +04:00
|
|
|
package gorm
|
|
|
|
|
2014-01-26 15:34:06 +04:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2014-01-26 08:41:37 +04:00
|
|
|
func BeforeCreate(scope *Scope) {
|
2015-02-24 11:28:15 +03:00
|
|
|
scope.CallMethodWithErrorCheck("BeforeSave")
|
|
|
|
scope.CallMethodWithErrorCheck("BeforeCreate")
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
2014-01-27 18:36:08 +04:00
|
|
|
func UpdateTimeStampWhenCreate(scope *Scope) {
|
2014-01-26 08:41:37 +04:00
|
|
|
if !scope.HasError() {
|
2014-08-23 12:00:04 +04:00
|
|
|
now := NowFunc()
|
2014-05-12 13:52:47 +04:00
|
|
|
scope.SetColumn("CreatedAt", now)
|
|
|
|
scope.SetColumn("UpdatedAt", now)
|
2014-01-27 07:06:13 +04:00
|
|
|
}
|
|
|
|
}
|
2014-01-26 17:23:53 +04:00
|
|
|
|
2014-01-27 07:06:13 +04:00
|
|
|
func Create(scope *Scope) {
|
2014-08-23 12:00:04 +04:00
|
|
|
defer scope.Trace(NowFunc())
|
2014-01-27 07:06:13 +04:00
|
|
|
|
|
|
|
if !scope.HasError() {
|
2014-01-26 15:34:06 +04:00
|
|
|
// set create sql
|
|
|
|
var sqls, columns []string
|
|
|
|
for _, field := range scope.Fields() {
|
2015-02-17 15:19:47 +03:00
|
|
|
if (field.IsNormal && !field.IsPrimaryKey) || (field.IsPrimaryKey && !field.IsBlank) {
|
2015-02-18 05:19:34 +03:00
|
|
|
if !field.IsBlank || !field.HasDefaultValue {
|
2015-02-17 17:55:14 +03:00
|
|
|
columns = append(columns, scope.Quote(field.DBName))
|
|
|
|
sqls = append(sqls, scope.AddToVars(field.Field.Interface()))
|
2014-11-15 20:32:35 +03:00
|
|
|
}
|
2014-01-26 15:34:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 14:03:42 +03:00
|
|
|
returningKey := "*"
|
2015-02-17 15:19:47 +03:00
|
|
|
primaryField := scope.PrimaryKeyField()
|
|
|
|
if primaryField != nil {
|
|
|
|
returningKey = scope.Quote(primaryField.DBName)
|
2014-12-08 13:33:30 +03:00
|
|
|
}
|
|
|
|
|
2014-04-29 13:42:10 +04:00
|
|
|
if len(columns) == 0 {
|
|
|
|
scope.Raw(fmt.Sprintf("INSERT INTO %v DEFAULT VALUES %v",
|
2014-06-03 13:15:05 +04:00
|
|
|
scope.QuotedTableName(),
|
2014-12-08 14:03:42 +03:00
|
|
|
scope.Dialect().ReturningStr(scope.TableName(), returningKey),
|
2014-04-29 13:42:10 +04:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
scope.Raw(fmt.Sprintf(
|
|
|
|
"INSERT INTO %v (%v) VALUES (%v) %v",
|
2014-06-03 13:15:05 +04:00
|
|
|
scope.QuotedTableName(),
|
2014-04-29 13:42:10 +04:00
|
|
|
strings.Join(columns, ","),
|
|
|
|
strings.Join(sqls, ","),
|
2014-12-08 14:03:42 +03:00
|
|
|
scope.Dialect().ReturningStr(scope.TableName(), returningKey),
|
2014-04-29 13:42:10 +04:00
|
|
|
))
|
|
|
|
}
|
2014-01-26 15:34:06 +04:00
|
|
|
|
|
|
|
// execute create sql
|
2014-01-26 08:41:37 +04:00
|
|
|
if scope.Dialect().SupportLastInsertId() {
|
2014-06-05 13:58:14 +04:00
|
|
|
if result, err := scope.DB().Exec(scope.Sql, scope.SqlVars...); scope.Err(err) == nil {
|
2015-02-20 17:06:49 +03:00
|
|
|
id, err := result.LastInsertId()
|
2014-06-05 13:58:14 +04:00
|
|
|
if scope.Err(err) == nil {
|
2014-12-13 05:46:16 +03:00
|
|
|
scope.db.RowsAffected, _ = result.RowsAffected()
|
2015-02-20 17:06:49 +03:00
|
|
|
if primaryField != nil {
|
2015-02-23 04:40:39 +03:00
|
|
|
scope.Err(scope.SetColumn(primaryField, id))
|
2015-02-20 17:06:49 +03:00
|
|
|
}
|
2014-06-05 13:58:14 +04:00
|
|
|
}
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
} else {
|
2015-02-17 15:19:47 +03:00
|
|
|
if primaryField == nil {
|
2014-12-13 05:46:16 +03:00
|
|
|
if results, err := scope.DB().Exec(scope.Sql, scope.SqlVars...); err != nil {
|
|
|
|
scope.db.RowsAffected, _ = results.RowsAffected()
|
2014-12-08 21:00:02 +03:00
|
|
|
}
|
2015-02-20 17:06:49 +03:00
|
|
|
} else if scope.Err(scope.DB().QueryRow(scope.Sql, scope.SqlVars...).Scan(primaryField.Field.Addr().Interface())) == nil {
|
2015-02-17 15:19:47 +03:00
|
|
|
scope.db.RowsAffected = 1
|
2014-06-09 04:17:20 +04:00
|
|
|
}
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func AfterCreate(scope *Scope) {
|
2015-02-24 11:28:15 +03:00
|
|
|
scope.CallMethodWithErrorCheck("AfterCreate")
|
|
|
|
scope.CallMethodWithErrorCheck("AfterSave")
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2014-01-29 06:28:20 +04:00
|
|
|
DefaultCallback.Create().Register("gorm:begin_transaction", BeginTransaction)
|
|
|
|
DefaultCallback.Create().Register("gorm:before_create", BeforeCreate)
|
|
|
|
DefaultCallback.Create().Register("gorm:save_before_associations", SaveBeforeAssociations)
|
|
|
|
DefaultCallback.Create().Register("gorm:update_time_stamp_when_create", UpdateTimeStampWhenCreate)
|
|
|
|
DefaultCallback.Create().Register("gorm:create", Create)
|
|
|
|
DefaultCallback.Create().Register("gorm:save_after_associations", SaveAfterAssociations)
|
|
|
|
DefaultCallback.Create().Register("gorm:after_create", AfterCreate)
|
|
|
|
DefaultCallback.Create().Register("gorm:commit_or_rollback_transaction", CommitOrRollbackTransaction)
|
2014-01-26 08:41:37 +04:00
|
|
|
}
|