|
|
|
@ -5,7 +5,6 @@ import (
|
|
|
|
|
"database/sql"
|
|
|
|
|
"fmt"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
|
|
|
|
@ -14,28 +13,36 @@ import (
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func (d *DB) CreateMemo(ctx context.Context, create *store.Memo) (*store.Memo, error) {
|
|
|
|
|
if create.CreatedTs == 0 {
|
|
|
|
|
create.CreatedTs = time.Now().Unix()
|
|
|
|
|
fields := []string{"`creator_id`", "`content`", "`visibility`"}
|
|
|
|
|
placeholder := []string{"?", "?", "?"}
|
|
|
|
|
args := []any{create.CreatorID, create.Content, create.Visibility}
|
|
|
|
|
|
|
|
|
|
if create.ID != 0 {
|
|
|
|
|
fields = append(fields, "`id`")
|
|
|
|
|
placeholder = append(placeholder, "?")
|
|
|
|
|
args = append(args, create.ID)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stmt := `
|
|
|
|
|
INSERT INTO memo (
|
|
|
|
|
creator_id,
|
|
|
|
|
created_ts,
|
|
|
|
|
content,
|
|
|
|
|
visibility
|
|
|
|
|
)
|
|
|
|
|
VALUES (?, ?, ?, ?)
|
|
|
|
|
RETURNING id, created_ts, updated_ts, row_status
|
|
|
|
|
`
|
|
|
|
|
if err := d.db.QueryRowContext(
|
|
|
|
|
ctx,
|
|
|
|
|
stmt,
|
|
|
|
|
create.CreatorID,
|
|
|
|
|
create.CreatedTs,
|
|
|
|
|
create.Content,
|
|
|
|
|
create.Visibility,
|
|
|
|
|
).Scan(
|
|
|
|
|
if create.CreatedTs != 0 {
|
|
|
|
|
fields = append(fields, "`created_ts`")
|
|
|
|
|
placeholder = append(placeholder, "?")
|
|
|
|
|
args = append(args, create.CreatedTs)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if create.UpdatedTs != 0 {
|
|
|
|
|
fields = append(fields, "`updated_ts`")
|
|
|
|
|
placeholder = append(placeholder, "?")
|
|
|
|
|
args = append(args, create.UpdatedTs)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if create.RowStatus != "" {
|
|
|
|
|
fields = append(fields, "`row_status`")
|
|
|
|
|
placeholder = append(placeholder, "?")
|
|
|
|
|
args = append(args, create.RowStatus)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stmt := "INSERT INTO memo (" + strings.Join(fields, ", ") + ") VALUES (" + strings.Join(placeholder, ", ") + ") RETURNING `id`, `created_ts`, `updated_ts`, `row_status`"
|
|
|
|
|
if err := d.db.QueryRowContext(ctx, stmt, args...).Scan(
|
|
|
|
|
&create.ID,
|
|
|
|
|
&create.CreatedTs,
|
|
|
|
|
&create.UpdatedTs,
|
|
|
|
|