update packages

get list of servers check before saving for dupes
This commit is contained in:
2023-10-07 00:46:43 +02:00
parent d971843fee
commit 2584ab20b8
6 changed files with 242 additions and 152 deletions
+62
View File
@@ -5,6 +5,7 @@ import (
"sync"
"github.com/charmbracelet/log"
"github.com/pocketbase/dbx"
"github.com/pocketbase/pocketbase"
"github.com/pocketbase/pocketbase/models"
)
@@ -46,6 +47,7 @@ func GetRecordById(collectionID string, recordID string) (*models.Record, error)
return record, nil
}
// CreateRecord creates a new record in the specified collection
func CreateRecord(collectionName string, record *ServerInfo) error {
// Find the collection
collection, err := app.Dao().FindCollectionByNameOrId(collectionName)
@@ -54,6 +56,23 @@ func CreateRecord(collectionName string, record *ServerInfo) error {
return err
}
// Check if the server already exists
existingRecord, err := app.Dao().FindFirstRecordByFilter(
collectionName,
"UserID = {:userID} && ConnectionDetails = {:connectionDetails}",
dbx.Params{"userID": record.UserID, "connectionDetails": record.ConnectionDetails},
)
if err != nil {
log.Error(err)
return err
}
// If the record already exists, return without saving
if existingRecord != nil {
log.Info("Server already exists.")
return nil
}
// Create a new record
newRecord := models.NewRecord(collection)
@@ -72,5 +91,48 @@ func CreateRecord(collectionName string, record *ServerInfo) error {
return err
}
log.Info("Server saved successfully.")
return nil
}
// ListServersByUserID retrieves a list of servers for a given UserID
func ListServersByUserID(userID string) ([]*ServerInfo, error) {
// Retrieve multiple records based on the UserID filter
records, err := app.Dao().FindRecordsByFilter(
"servers", // collection
"UserID = {:userID}", // filter
"-created", // sort (empty for no sorting)
10, // limit (0 for no limit)
0, // offset
dbx.Params{"userID": userID}, // parameter for the placeholder
)
if err != nil {
log.Error(err)
return nil, err
}
// Log the number of records retrieved
log.Info("Number of records:", len(records))
// Convert records to []*ServerInfo
var servers []*ServerInfo
for _, record := range records {
// Log details of each record
log.Info("Record details:", record)
// Print each field to check if they are set
log.Info("UserID:", record.Get("UserID"))
log.Info("ConnectionDetails:", record.Get("ConnectionDetails"))
// Convert record to ServerInfo
server := &ServerInfo{
UserID: record.Get("UserID").(string),
ConnectionDetails: record.Get("ConnectionDetails").(string),
// Add other fields as needed
}
servers = append(servers, server)
}
return servers, nil
}