mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 03:34:33 +08:00
36 lines
967 B
Go
36 lines
967 B
Go
package sqlite
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/usememos/memos/store"
|
|
)
|
|
|
|
func (d *DB) CreateActivity(ctx context.Context, create *store.Activity) (*store.Activity, error) {
|
|
fields := []string{"`creator_id`", "`type`", "`level`", "`payload`"}
|
|
placeholder := []string{"?", "?", "?", "?"}
|
|
args := []any{create.CreatorID, create.Type, create.Level, create.Payload}
|
|
|
|
if create.ID != 0 {
|
|
fields = append(fields, "`id`")
|
|
placeholder = append(placeholder, "?")
|
|
args = append(args, create.ID)
|
|
}
|
|
|
|
if create.CreatedTs != 0 {
|
|
fields = append(fields, "`created_ts`")
|
|
placeholder = append(placeholder, "?")
|
|
args = append(args, create.CreatedTs)
|
|
}
|
|
|
|
stmt := "INSERT INTO activity (" + strings.Join(fields, ", ") + ") VALUES (" + strings.Join(placeholder, ", ") + ") RETURNING `id`, `created_ts`"
|
|
if err := d.db.QueryRowContext(ctx, stmt, args...).Scan(
|
|
&create.ID,
|
|
&create.CreatedTs,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return create, nil
|
|
}
|