blob: 0093c411c8ef3361dc458b1e7b62fad28ea8d47f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package handler
import (
"context"
"github.com/Baitinq/fs-tracer-backend/lib"
"github.com/jmoiron/sqlx"
)
//go:generate mockgen -source=$GOFILE -package=$GOPACKAGE -destination=mock_$GOFILE
type DB interface {
GetLatestFileByPath(ctx context.Context, path string) (*lib.File, error)
}
type DBImpl struct {
db *sqlx.DB
}
var _ DB = (*DBImpl)(nil)
func NewDB(db *sqlx.DB) DB {
return &DBImpl{db: db}
}
func (db DBImpl) GetLatestFileByPath(ctx context.Context, path string) (*lib.File, error) {
var file lib.File
err := db.db.GetContext(ctx, &file, `
SELECT * FROM private.file
WHERE absolute_path = $1
ORDER BY timestamp DESC
LIMIT 1
`, path)
if err != nil {
return nil, err
}
return &file, nil
}
|