mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 13:36:20 +00:00
157 lines
2.9 KiB
Go
157 lines
2.9 KiB
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
)
|
|
|
|
type ActivityType string
|
|
|
|
const (
|
|
// ActivityShortcutView is the activity type of shortcut create.
|
|
ActivityShortcutCreate ActivityType = "shortcut.create"
|
|
// ActivityShortcutView is the activity type of shortcut view.
|
|
ActivityShortcutView ActivityType = "shortcut.view"
|
|
)
|
|
|
|
func (t ActivityType) String() string {
|
|
switch t {
|
|
case ActivityShortcutCreate:
|
|
return "shortcut.create"
|
|
case ActivityShortcutView:
|
|
return "shortcut.view"
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ActivityLevel string
|
|
|
|
const (
|
|
// ActivityInfo is the activity level of info.
|
|
ActivityInfo ActivityLevel = "INFO"
|
|
// ActivityWarn is the activity level of warn.
|
|
ActivityWarn ActivityLevel = "WARN"
|
|
// ActivityError is the activity level of error.
|
|
ActivityError ActivityLevel = "ERROR"
|
|
)
|
|
|
|
func (l ActivityLevel) String() string {
|
|
switch l {
|
|
case ActivityInfo:
|
|
return "INFO"
|
|
case ActivityWarn:
|
|
return "WARN"
|
|
case ActivityError:
|
|
return "ERROR"
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Activity struct {
|
|
ID int32
|
|
CreatorID int32
|
|
CreatedTs int64
|
|
Type ActivityType
|
|
Level ActivityLevel
|
|
Payload string
|
|
}
|
|
|
|
type FindActivity struct {
|
|
Type ActivityType
|
|
Level ActivityLevel
|
|
Where []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.String(),
|
|
create.Level.String(),
|
|
create.Payload,
|
|
).Scan(
|
|
&create.ID,
|
|
&create.CreatedTs,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
activity := create
|
|
return activity, nil
|
|
}
|
|
|
|
func (s *Store) ListActivities(ctx context.Context, find *FindActivity) ([]*Activity, error) {
|
|
where, args := []string{"1 = 1"}, []any{}
|
|
if find.Type != "" {
|
|
where, args = append(where, "type = ?"), append(args, find.Type.String())
|
|
}
|
|
if find.Level != "" {
|
|
where, args = append(where, "level = ?"), append(args, find.Level.String())
|
|
}
|
|
if find.Where != nil {
|
|
where = append(where, find.Where...)
|
|
}
|
|
|
|
query := `
|
|
SELECT
|
|
id,
|
|
creator_id,
|
|
created_ts,
|
|
type,
|
|
level,
|
|
payload
|
|
FROM activity
|
|
WHERE ` + strings.Join(where, " AND ")
|
|
rows, err := s.db.QueryContext(ctx, query, args...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
|
|
list := []*Activity{}
|
|
for rows.Next() {
|
|
activity := &Activity{}
|
|
if err := rows.Scan(
|
|
&activity.ID,
|
|
&activity.CreatorID,
|
|
&activity.CreatedTs,
|
|
&activity.Type,
|
|
&activity.Level,
|
|
&activity.Payload,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
list = append(list, activity)
|
|
}
|
|
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return list, nil
|
|
}
|
|
|
|
func (s *Store) GetActivity(ctx context.Context, find *FindActivity) (*Activity, error) {
|
|
list, err := s.ListActivities(ctx, find)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if len(list) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
activity := list[0]
|
|
return activity, nil
|
|
}
|