Compare commits

..

No commits in common. "4ff47521b4ebaaccdf136fb284161d0d423b4e55" and "329d93a759180cb5ff446835a5740b6a7ffb816a" have entirely different histories.

7 changed files with 24 additions and 55 deletions

View File

@ -18,12 +18,11 @@ func TestServer(t *testing.T) {
server := ports.New(store)
server.IP = "127.0.0.1"
server.AddTCPPort("2555")
server.AddTCPPort("25")
go server.Start(ctx)
time.Sleep(1 * time.Second)
rAddr, err := net.ResolveTCPAddr("tcp", net.JoinHostPort(server.IP, "2555"))
rAddr, err := net.ResolveTCPAddr("tcp", net.JoinHostPort(server.IP, "25"))
if err != nil {
t.Fatalf("Error resolving remote address: %s", err)
}

View File

@ -2,8 +2,6 @@ package store
import "git.t-juice.club/torjus/apiary/models"
var _ LoginAttemptStore = &CachingStore{}
type CachingStore struct {
backend LoginAttemptStore
@ -35,16 +33,14 @@ func NewCachingStore(backend LoginAttemptStore) *CachingStore {
//TODO: Handle better maybe?
panic(err)
}
var loginCount int
for attempt := range all {
cs.totalLoginsCount = len(all)
for _, attempt := range all {
cs.uniqueUsernames[attempt.Username] = struct{}{}
cs.uniquePasswords[attempt.Password] = struct{}{}
cs.uniqueIPs[attempt.RemoteIP.String()] = struct{}{}
cs.uniqueCountries[attempt.Country] = struct{}{}
loginCount++
}
cs.totalLoginsCount = loginCount
return cs
}
@ -62,7 +58,7 @@ func (s *CachingStore) AddAttempt(l *models.LoginAttempt) error {
return s.backend.AddAttempt(l)
}
func (s *CachingStore) All() (<-chan models.LoginAttempt, error) {
func (s *CachingStore) All() ([]models.LoginAttempt, error) {
return s.backend.All()
}

View File

@ -9,8 +9,6 @@ import (
"git.t-juice.club/torjus/apiary/models"
)
var _ LoginAttemptStore = &MemoryStore{}
type MemoryStore struct {
lock sync.RWMutex
attempts []models.LoginAttempt
@ -34,17 +32,8 @@ func (ms *MemoryStore) AddAttempt(l *models.LoginAttempt) error {
return nil
}
func (ms *MemoryStore) All() (<-chan models.LoginAttempt, error) {
ch := make(chan models.LoginAttempt)
go func() {
ms.lock.RLock()
defer ms.lock.RUnlock()
for _, attempt := range ms.attempts {
ch <- attempt
}
close(ch)
}()
return ch, nil
func (ms *MemoryStore) All() ([]models.LoginAttempt, error) {
return ms.attempts, nil
}
func (ms *MemoryStore) Stats(statType LoginStats, limit int) ([]StatsResult, error) {

View File

@ -8,8 +8,6 @@ import (
"github.com/prometheus/client_golang/prometheus"
)
var _ LoginAttemptStore = &MetricsCollectingStore{}
const tickDuration = 5 * time.Second
type MetricsCollectingStore struct {
@ -91,7 +89,7 @@ func (s *MetricsCollectingStore) AddAttempt(l *models.LoginAttempt) error {
return err
}
func (s *MetricsCollectingStore) All() (<-chan models.LoginAttempt, error) {
func (s *MetricsCollectingStore) All() ([]models.LoginAttempt, error) {
return s.store.All()
}

View File

@ -9,8 +9,6 @@ import (
_ "github.com/jackc/pgx/v4/stdlib"
)
var _ LoginAttemptStore = &PostgresStore{}
const DBSchema = `
CREATE TABLE IF NOT EXISTS login_attempts(
id serial PRIMARY KEY,
@ -63,30 +61,27 @@ RETURNING id;`
return tx.Commit()
}
func (s *PostgresStore) All() (<-chan models.LoginAttempt, error) {
func (s *PostgresStore) All() ([]models.LoginAttempt, error) {
stmt := `SELECT date, remote_ip, username, password, client_version, connection_uuid, country FROM login_attempts`
rows, err := s.db.Query(stmt)
if err != nil {
return nil, err
}
ch := make(chan models.LoginAttempt)
go func() {
defer rows.Close()
var attempts []models.LoginAttempt
for rows.Next() {
var a models.LoginAttempt
var ip string
if err := rows.Scan(&a.Date, &ip, &a.Username, &a.Password, &a.SSHClientVersion, &a.SSHClientVersion, &a.Country); err != nil {
panic(err)
return nil, err
}
a.RemoteIP = net.ParseIP(ip)
ch <- a
attempts = append(attempts, a)
}
close(ch)
}()
return ch, nil
return attempts, nil
}
func (s *PostgresStore) Stats(statType LoginStats, limit int) ([]StatsResult, error) {

View File

@ -38,7 +38,7 @@ type AttemptQuery struct {
}
type LoginAttemptStore interface {
AddAttempt(l *models.LoginAttempt) error
All() (<-chan models.LoginAttempt, error)
All() ([]models.LoginAttempt, error)
Stats(statType LoginStats, limit int) ([]StatsResult, error)
Query(query AttemptQuery) ([]models.LoginAttempt, error)
HealthCheker

View File

@ -25,12 +25,8 @@ func testLoginAttemptStore(s store.LoginAttemptStore, t *testing.T) {
if err != nil {
t.Fatalf("Error getting all attempts: %s", err)
}
var count int
for range all {
count++
}
if count != len(testAttempts) {
t.Errorf("All returned wrong amount. Got %d want %d", count, len(testAttempts))
if len(all) != len(testAttempts) {
t.Errorf("All returned wrong amount. Got %d want %d", len(all), len(testAttempts))
}
stats, err := s.Stats(store.LoginStatsTotals, 1)
if err != nil {
@ -233,11 +229,7 @@ func benchmarkLoginAttemptStore(setupFunc func() store.LoginAttemptStore, b *tes
if err != nil {
b.Fatalf("Error fetchin all: %s", err)
}
var count int
for range all {
count++
}
_ = count
_ = len(all)
}
})
}