mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
40 lines
664 B
Go
40 lines
664 B
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Activity struct {
|
|
ID int32
|
|
|
|
// Standard fields
|
|
CreatorID int32
|
|
CreatedTs int64
|
|
|
|
// Domain specific fields
|
|
Type string
|
|
Level string
|
|
Payload string
|
|
}
|
|
|
|
func (s *Store) CreateActivity(ctx context.Context, create *Activity) (*Activity, error) {
|
|
stmt := `
|
|
INSERT INTO activity (
|
|
creator_id,
|
|
type,
|
|
level,
|
|
payload
|
|
)
|
|
VALUES (?, ?, ?, ?)
|
|
RETURNING id, created_ts
|
|
`
|
|
if err := s.db.QueryRowContext(ctx, stmt, create.CreatorID, create.Type, create.Level, create.Payload).Scan(
|
|
&create.ID,
|
|
&create.CreatedTs,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
activity := create
|
|
return activity, nil
|
|
}
|