2024-10-03 19:03:18 +01:00
|
|
|
package library
|
|
|
|
|
|
|
|
import (
|
2025-01-07 18:03:32 +00:00
|
|
|
"database/sql"
|
2024-12-31 15:53:45 +00:00
|
|
|
"errors"
|
2024-10-20 19:45:28 +01:00
|
|
|
"github.com/go-chi/chi/v5"
|
2024-10-03 19:03:18 +01:00
|
|
|
"github.com/google/uuid"
|
|
|
|
"io/fs"
|
2024-12-31 15:53:45 +00:00
|
|
|
"sync"
|
2024-10-03 19:03:18 +01:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Permissions struct {
|
2025-01-01 12:23:29 +00:00
|
|
|
// Authenticate allows the service to register with the nucleus authentication service and use OAuth2
|
|
|
|
Authenticate bool `validate:"required"`
|
|
|
|
// Router allows the service to serve web pages
|
|
|
|
Router bool `validate:"required"`
|
|
|
|
// Database allows the service to ask for a centralised database connection
|
|
|
|
Database bool `validate:"required"`
|
|
|
|
// BlobStorage allows the service to use the blob storage service
|
|
|
|
BlobStorage bool `validate:"required"`
|
|
|
|
// InterServiceCommunication allows the service to send and receive messages from other services
|
2024-10-03 19:03:18 +01:00
|
|
|
InterServiceCommunication bool `validate:"required"`
|
2025-01-01 12:23:29 +00:00
|
|
|
// Resources allows the service to access their resource directory
|
|
|
|
Resources bool `validate:"required"`
|
2024-10-03 19:03:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Service struct {
|
|
|
|
Name string `validate:"required"`
|
|
|
|
Permissions Permissions `validate:"required"`
|
|
|
|
ServiceID uuid.UUID `validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type InterServiceMessage struct {
|
2025-01-01 12:23:29 +00:00
|
|
|
MessageID uuid.UUID `validate:"required"`
|
|
|
|
ServiceID uuid.UUID `validate:"required"`
|
|
|
|
ForServiceID uuid.UUID `validate:"required"`
|
|
|
|
MessageType MessageCode `validate:"required"`
|
|
|
|
SentAt time.Time `validate:"required"`
|
|
|
|
Message any `validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewServiceInitializationInformation creates a new ServiceInitializationInformation and is only ever meant to be called
|
|
|
|
// by fulgens or a compliant implementation of fulgens.
|
|
|
|
func NewServiceInitializationInformation(domain *string, outbox chan<- InterServiceMessage, inbox <-chan InterServiceMessage, router *chi.Mux, configuration map[string]interface{}, resourceDir fs.FS) ServiceInitializationInformation {
|
|
|
|
return ServiceInitializationInformation{
|
|
|
|
Domain: domain,
|
|
|
|
Outbox: outbox,
|
|
|
|
inbox: inbox,
|
|
|
|
Router: router,
|
|
|
|
Configuration: configuration,
|
|
|
|
ResourceDir: resourceDir,
|
2025-01-08 17:46:34 +00:00
|
|
|
internal: internal{
|
|
|
|
buffer: make(map[uuid.UUID]InterServiceMessage),
|
|
|
|
waitingList: make(map[uuid.UUID]struct{}),
|
|
|
|
arrived: make(chan uuid.UUID),
|
|
|
|
},
|
2025-01-01 12:23:29 +00:00
|
|
|
}
|
2024-10-03 19:03:18 +01:00
|
|
|
}
|
|
|
|
|
2025-01-08 17:46:34 +00:00
|
|
|
type internal struct {
|
|
|
|
buffer map[uuid.UUID]InterServiceMessage
|
|
|
|
waitingList map[uuid.UUID]struct{}
|
|
|
|
mutex sync.Mutex
|
|
|
|
arrived chan uuid.UUID
|
|
|
|
ispStarted bool
|
|
|
|
}
|
|
|
|
|
2024-10-03 19:03:18 +01:00
|
|
|
type ServiceInitializationInformation struct {
|
2025-01-01 12:23:29 +00:00
|
|
|
Service *Service `validate:"required"`
|
|
|
|
Domain *string
|
2024-10-03 19:03:18 +01:00
|
|
|
Outbox chan<- InterServiceMessage `validate:"required"`
|
2025-01-01 12:23:29 +00:00
|
|
|
inbox <-chan InterServiceMessage `validate:"required"`
|
|
|
|
Router *chi.Mux
|
2024-10-03 19:03:18 +01:00
|
|
|
Configuration map[string]interface{}
|
|
|
|
ResourceDir fs.FS
|
2025-01-08 17:46:34 +00:00
|
|
|
internal internal
|
2024-10-03 19:03:18 +01:00
|
|
|
}
|
2024-10-05 19:33:00 +01:00
|
|
|
|
2025-01-01 12:23:29 +00:00
|
|
|
// YesIAbsolutelyKnowWhatIAmDoingAndIWantToAccessTheRawInbox returns a channel that can be used to read messages from
|
|
|
|
// the inbox. This is a dangerous operation, can and will break the buffer, and you should most absolutely not use this
|
|
|
|
// unless you would like to handle the messages yourself with no outside help or synchronization.
|
|
|
|
//
|
|
|
|
// If you think you know what you're doing, **you probably don't**.
|
|
|
|
func (s *ServiceInitializationInformation) YesIAbsolutelyKnowWhatIAmDoingAndIWantToAccessTheRawInbox() <-chan InterServiceMessage {
|
|
|
|
return s.inbox
|
|
|
|
}
|
2024-10-05 19:33:00 +01:00
|
|
|
|
2025-01-07 18:03:32 +00:00
|
|
|
type DBType int
|
2024-12-31 15:53:45 +00:00
|
|
|
|
2025-01-07 18:03:32 +00:00
|
|
|
const (
|
|
|
|
Sqlite DBType = iota
|
|
|
|
Postgres
|
|
|
|
)
|
2025-01-01 12:23:29 +00:00
|
|
|
|
2025-01-07 18:03:32 +00:00
|
|
|
type Database struct {
|
|
|
|
DB *sql.DB
|
|
|
|
DBType DBType
|
2025-01-01 12:23:29 +00:00
|
|
|
}
|
|
|
|
type MessageCode int
|
2024-12-31 15:53:45 +00:00
|
|
|
|
|
|
|
const (
|
2025-01-01 12:23:29 +00:00
|
|
|
Success MessageCode = iota
|
2024-12-31 15:53:45 +00:00
|
|
|
BadRequest
|
|
|
|
InternalError
|
|
|
|
Unauthorized
|
|
|
|
)
|
|
|
|
|
2025-01-01 12:23:29 +00:00
|
|
|
func (s *ServiceInitializationInformation) StartISProcessor() {
|
2025-01-08 17:46:34 +00:00
|
|
|
if s.internal.ispStarted {
|
|
|
|
println("IS Processor already started")
|
2025-01-01 12:23:29 +00:00
|
|
|
return
|
|
|
|
} else {
|
2025-01-08 17:46:34 +00:00
|
|
|
s.internal.ispStarted = true
|
2025-01-01 12:23:29 +00:00
|
|
|
}
|
|
|
|
listener := NewListener(s.inbox)
|
2024-12-31 15:53:45 +00:00
|
|
|
for {
|
2025-01-01 12:23:29 +00:00
|
|
|
msg := listener.AcceptMessage()
|
2025-01-08 17:46:34 +00:00
|
|
|
println("Received message on ID: " + msg.ForServiceID.String() + "for id: " + msg.MessageID.String())
|
|
|
|
s.internal.mutex.Lock()
|
|
|
|
s.internal.buffer[msg.MessageID] = msg
|
|
|
|
s.internal.mutex.Unlock()
|
|
|
|
s.internal.arrived <- msg.MessageID
|
2024-12-31 15:53:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
ErrTimeout = errors.New("timeout")
|
|
|
|
)
|
|
|
|
|
2025-01-08 17:46:34 +00:00
|
|
|
func (s *ServiceInitializationInformation) AwaitISMessage(id uuid.UUID, timeout time.Duration) (InterServiceMessage, error) {
|
2024-12-31 15:53:45 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-time.After(timeout):
|
|
|
|
return InterServiceMessage{}, ErrTimeout
|
2025-01-08 17:46:34 +00:00
|
|
|
case msgID := <-s.internal.arrived:
|
2024-12-31 15:53:45 +00:00
|
|
|
if msgID == id {
|
2025-01-08 17:46:34 +00:00
|
|
|
s.internal.mutex.Lock()
|
|
|
|
msg := s.internal.buffer[id]
|
|
|
|
delete(s.internal.buffer, id)
|
|
|
|
delete(s.internal.waitingList, id)
|
|
|
|
s.internal.mutex.Unlock()
|
2025-01-01 12:23:29 +00:00
|
|
|
if msg.MessageType != Success {
|
|
|
|
return msg, msg.Message.(error)
|
|
|
|
}
|
2024-12-31 15:53:45 +00:00
|
|
|
return msg, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-01 12:23:29 +00:00
|
|
|
type Listener interface {
|
|
|
|
AcceptMessage() InterServiceMessage
|
|
|
|
}
|
|
|
|
|
|
|
|
type DefaultListener <-chan InterServiceMessage
|
|
|
|
|
|
|
|
func NewListener(c <-chan InterServiceMessage) Listener {
|
|
|
|
return DefaultListener(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l DefaultListener) AcceptMessage() InterServiceMessage {
|
2025-01-08 17:46:34 +00:00
|
|
|
println("Listener has pointer address: ", l)
|
|
|
|
msg := <-l
|
|
|
|
println("Received message on ID: " + msg.ForServiceID.String())
|
|
|
|
return msg
|
2025-01-01 12:23:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ServiceInitializationInformation) SendISMessage(forService uuid.UUID, messageType MessageCode, message any) uuid.UUID {
|
2024-12-31 15:53:45 +00:00
|
|
|
id := uuid.New()
|
|
|
|
msg := InterServiceMessage{
|
|
|
|
MessageID: id,
|
2025-01-01 12:23:29 +00:00
|
|
|
ServiceID: s.Service.ServiceID,
|
2024-12-31 15:53:45 +00:00
|
|
|
ForServiceID: forService,
|
|
|
|
MessageType: messageType,
|
|
|
|
SentAt: time.Now(),
|
|
|
|
Message: message,
|
|
|
|
}
|
2025-01-08 17:46:34 +00:00
|
|
|
s.internal.mutex.Lock()
|
|
|
|
s.internal.waitingList[id] = struct{}{}
|
|
|
|
s.internal.mutex.Unlock()
|
2024-12-31 15:53:45 +00:00
|
|
|
s.Outbox <- msg
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2025-01-08 16:42:05 +00:00
|
|
|
func (s *InterServiceMessage) Respond(messageType MessageCode, message any, information ServiceInitializationInformation) {
|
2025-01-08 17:03:48 +00:00
|
|
|
n := *s
|
|
|
|
n.ServiceID, n.ForServiceID = n.ForServiceID, n.ServiceID
|
|
|
|
n.MessageType = messageType
|
|
|
|
n.Message = message
|
|
|
|
n.SentAt = time.Now()
|
2025-01-08 17:46:34 +00:00
|
|
|
println(information.Outbox)
|
2025-01-08 17:03:48 +00:00
|
|
|
information.Outbox <- n
|
2025-01-08 12:57:12 +00:00
|
|
|
}
|
|
|
|
|
2025-01-01 12:23:29 +00:00
|
|
|
func (s *ServiceInitializationInformation) SendAndAwaitISMessage(forService uuid.UUID, messageType MessageCode, message any, timeout time.Duration) (InterServiceMessage, error) {
|
|
|
|
id := s.SendISMessage(forService, messageType, message)
|
2025-01-08 17:46:34 +00:00
|
|
|
return s.AwaitISMessage(id, timeout)
|
2024-12-31 15:53:45 +00:00
|
|
|
}
|
2025-01-01 12:23:29 +00:00
|
|
|
|
2025-01-08 17:03:48 +00:00
|
|
|
var databaseService = uuid.MustParse("00000000-0000-0000-0000-000000000001")
|
|
|
|
|
2025-01-01 12:23:29 +00:00
|
|
|
func (s *ServiceInitializationInformation) GetDatabase() (Database, error) {
|
2025-01-08 17:46:34 +00:00
|
|
|
if !s.internal.ispStarted {
|
2025-01-01 12:23:29 +00:00
|
|
|
go s.StartISProcessor()
|
|
|
|
}
|
|
|
|
|
2025-01-08 17:03:48 +00:00
|
|
|
response, err := s.SendAndAwaitISMessage(databaseService, 0, nil, 5*time.Second)
|
2025-01-01 12:23:29 +00:00
|
|
|
if err != nil {
|
2025-01-07 18:03:32 +00:00
|
|
|
return Database{}, err
|
2025-01-01 12:23:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return response.Message.(Database), nil
|
|
|
|
}
|
2025-01-08 10:28:58 +00:00
|
|
|
|
|
|
|
func (s *ServiceInitializationInformation) AcceptMessage() InterServiceMessage {
|
|
|
|
for {
|
2025-01-08 17:46:34 +00:00
|
|
|
<-s.internal.arrived
|
|
|
|
s.internal.mutex.Lock()
|
|
|
|
for id, msg := range s.internal.buffer {
|
|
|
|
_, ok := s.internal.waitingList[id]
|
2025-01-08 12:52:30 +00:00
|
|
|
|
2025-01-08 10:28:58 +00:00
|
|
|
if !ok {
|
2025-01-08 17:46:34 +00:00
|
|
|
delete(s.internal.buffer, id)
|
|
|
|
s.internal.mutex.Unlock()
|
2025-01-08 10:28:58 +00:00
|
|
|
return msg
|
|
|
|
}
|
|
|
|
}
|
2025-01-08 17:46:34 +00:00
|
|
|
s.internal.mutex.Unlock()
|
2025-01-08 10:28:58 +00:00
|
|
|
}
|
|
|
|
}
|