Files
2026-07-24 13:09:51 -07:00

126 lines
4.0 KiB
Go

// Copyright 2026 Beacon Contributors
// SPDX-License-Identifier: AGPL-3.0-or-later
// Package db implements the ingest.DB interface using sqlc-generated queries
// over a pgx/v5 connection pool. Each method is a thin mapping layer between
// the ingest param structs and the sqlc-generated param structs.
package db
import (
"context"
"encoding/hex"
"time"
sqlc "github.com/MeshCore-Beacon/beacon-server/db/sqlc"
"github.com/MeshCore-Beacon/beacon-server/internal/api"
"github.com/google/uuid"
"github.com/jackc/pgx/v5/pgtype"
"github.com/jackc/pgx/v5/pgxpool"
)
// Store wraps the sqlc-generated Queries and implements both ingest.DB and api.Reader.
type Store struct {
q sqlc.Querier
clockDriftThreshold time.Duration // see api.Node.ClockOutOfSync
staleThreshold time.Duration // see api.NodeSummary.Stale
}
// New creates a Store backed by the given pgxpool connection pool. clockDriftThreshold is
// the |device clock - server clock| magnitude above which a repeater/room server's
// clockOutOfSync is reported true; see internal/config.ResolvedConfig.ClockDriftThreshold.
// staleThreshold is how long since last_seen before a node's Stale is reported true; see
// internal/config.ResolvedConfig.NodeStaleThreshold.
func New(pool *pgxpool.Pool, clockDriftThreshold, staleThreshold time.Duration) *Store {
return &Store{q: sqlc.New(pool), clockDriftThreshold: clockDriftThreshold, staleThreshold: staleThreshold}
}
func (s *Store) ResolvePathHashes(ctx context.Context, iata string, hashes [][]byte) (map[string][]api.ResolvedPathEntry, error) {
if len(hashes) == 0 {
return nil, nil
}
// One query per prefix width; the row shapes are identical.
var rows []sqlc.ResolvePathHashesP4Row
var err error
switch len(hashes[0]) {
case 1:
var rs []sqlc.ResolvePathHashesP1Row
rs, err = s.q.ResolvePathHashesP1(ctx, sqlc.ResolvePathHashesP1Params{Iata: iata, Column2: hashes})
for _, r := range rs {
rows = append(rows, sqlc.ResolvePathHashesP4Row(r))
}
case 2:
var rs []sqlc.ResolvePathHashesP2Row
rs, err = s.q.ResolvePathHashesP2(ctx, sqlc.ResolvePathHashesP2Params{Iata: iata, Column2: hashes})
for _, r := range rs {
rows = append(rows, sqlc.ResolvePathHashesP4Row(r))
}
case 3:
var rs []sqlc.ResolvePathHashesP3Row
rs, err = s.q.ResolvePathHashesP3(ctx, sqlc.ResolvePathHashesP3Params{Iata: iata, Column2: hashes})
for _, r := range rs {
rows = append(rows, sqlc.ResolvePathHashesP4Row(r))
}
case 4:
rows, err = s.q.ResolvePathHashesP4(ctx, sqlc.ResolvePathHashesP4Params{Iata: iata, Column2: hashes})
default:
return nil, nil
}
if err != nil {
return nil, err
}
result := make(map[string][]api.ResolvedPathEntry)
for _, row := range rows {
key := hex.EncodeToString(row.Hash[:len(hashes[0])])
result[key] = append(result[key], api.ResolvedPathEntry{
NodeID: row.NodeID,
Name: row.Name,
Latitude: row.Latitude,
Longitude: row.Longitude,
PublicKey: row.PublicKey,
})
}
return result, nil
}
// nullableUUID returns nil for a zero UUID, or a pointer to the UUID otherwise.
func nullableUUID(id uuid.UUID) *uuid.UUID {
if id == (uuid.UUID{}) {
return nil
}
return &id
}
// tristate converts a *bool to a SQL-friendly string for the ListNodes filter:
// nil → "any", true → "true", false → "false".
func tristate(b *bool) string {
if b == nil {
return "any"
}
if *b {
return "true"
}
return "false"
}
// toChannelMessage maps raw sqlc row fields to an api.ChannelMessage.
func toChannelMessage(id int64, packetHashHex string, channelHash []byte, senderName *string, content *string, sentAt pgtype.Timestamptz, observationCount int64) api.ChannelMessage {
sn := ""
if senderName != nil {
sn = *senderName
}
ct := ""
if content != nil {
ct = *content
}
return api.ChannelMessage{
ID: id,
PacketHash: packetHashHex,
ChannelHash: hex.EncodeToString(channelHash),
SenderName: sn,
Content: ct,
SentAt: sentAt.Time.UnixMilli(),
ObservationCount: observationCount,
}
}