Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
64 lines
1.7 KiB
Go
64 lines
1.7 KiB
Go
package securityaudit
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/redis/go-redis/v9"
|
|
)
|
|
|
|
type PayloadStore interface {
|
|
Set(ctx context.Context, jobID int64, scanText string, ttl time.Duration) error
|
|
Get(ctx context.Context, jobID int64) (string, error)
|
|
Delete(ctx context.Context, jobID int64) error
|
|
Ping(ctx context.Context) error
|
|
}
|
|
|
|
type RedisPayloadStore struct {
|
|
client *redis.Client
|
|
}
|
|
|
|
func NewRedisPayloadStore(client *redis.Client) *RedisPayloadStore {
|
|
return &RedisPayloadStore{client: client}
|
|
}
|
|
|
|
func (s *RedisPayloadStore) Set(ctx context.Context, jobID int64, scanText string, ttl time.Duration) error {
|
|
if s == nil || s.client == nil {
|
|
return fmt.Errorf("prompt audit payload store unavailable")
|
|
}
|
|
if jobID <= 0 || scanText == "" {
|
|
return fmt.Errorf("prompt audit payload input invalid")
|
|
}
|
|
if ttl <= 0 || ttl > DefaultPayloadTTL {
|
|
ttl = DefaultPayloadTTL
|
|
}
|
|
return s.client.Set(ctx, payloadKey(jobID), scanText, ttl).Err()
|
|
}
|
|
|
|
func (s *RedisPayloadStore) Get(ctx context.Context, jobID int64) (string, error) {
|
|
if s == nil || s.client == nil {
|
|
return "", fmt.Errorf("prompt audit payload store unavailable")
|
|
}
|
|
return s.client.Get(ctx, payloadKey(jobID)).Result()
|
|
}
|
|
|
|
func (s *RedisPayloadStore) Delete(ctx context.Context, jobID int64) error {
|
|
if s == nil || s.client == nil {
|
|
return fmt.Errorf("prompt audit payload store unavailable")
|
|
}
|
|
return s.client.Del(ctx, payloadKey(jobID)).Err()
|
|
}
|
|
|
|
func (s *RedisPayloadStore) Ping(ctx context.Context) error {
|
|
if s == nil || s.client == nil {
|
|
return fmt.Errorf("prompt audit payload store unavailable")
|
|
}
|
|
return s.client.Ping(ctx).Err()
|
|
}
|
|
|
|
func payloadKey(jobID int64) string {
|
|
return PayloadKeyPrefix + strconv.FormatInt(jobID, 10)
|
|
}
|