mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
## Description We are attempting to hookup maitred to the API Maitred duties will be: - [ ] Hookup to the API - [ ] Wait for signal (from the API) to start Steam - [ ] Stop signal to stop the gaming session, clean up Steam... and maybe do the backup ## Summary by CodeRabbit - **New Features** - Introduced Docker-based deployment configurations for both the main and relay applications. - Added new API endpoints enabling real-time machine messaging and enhanced IoT operations. - Expanded database schema and actor types to support improved machine tracking. - **Improvements** - Enhanced real-time communication and relay management with streamlined room handling. - Upgraded dependencies, logging, and error handling for greater stability and performance. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: DatCaptainHorse <DatCaptainHorse@users.noreply.github.com> Co-authored-by: Kristian Ollikainen <14197772+DatCaptainHorse@users.noreply.github.com>
20 lines
436 B
Go
20 lines
436 B
Go
package common
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"crypto/sha256"
|
|
"github.com/oklog/ulid/v2"
|
|
"time"
|
|
)
|
|
|
|
func NewULID() (ulid.ULID, error) {
|
|
return ulid.New(ulid.Timestamp(time.Now()), ulid.Monotonic(rand.Reader, 0))
|
|
}
|
|
|
|
// Helper function to generate PSK from token
|
|
func GeneratePSKFromToken(token string) ([]byte, error) {
|
|
// Simple hash-based PSK generation (32 bytes for libp2p)
|
|
hash := sha256.Sum256([]byte(token))
|
|
return hash[:], nil
|
|
}
|