1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00

added initial REQ AclImport

This commit is contained in:
postmannen 2022-05-21 07:26:36 +02:00
parent c3e442d497
commit e5a7ad3699
3 changed files with 85 additions and 0 deletions

View file

@ -183,6 +183,7 @@ func (p *processes) Start(proc process) {
proc.startup.subREQAclGroupCommandsDeleteCommand(proc) proc.startup.subREQAclGroupCommandsDeleteCommand(proc)
proc.startup.subREQAclGroupCommandsDeleteGroup(proc) proc.startup.subREQAclGroupCommandsDeleteGroup(proc)
proc.startup.subREQAclExport(proc) proc.startup.subREQAclExport(proc)
proc.startup.subREQAclImport(proc)
} }
if proc.configuration.StartSubREQPublicKeysToNode { if proc.configuration.StartSubREQPublicKeysToNode {
@ -455,6 +456,13 @@ func (s startup) subREQAclExport(p process) {
go proc.spawnWorker() go proc.spawnWorker()
} }
func (s startup) subREQAclImport(p process) {
log.Printf("Starting Acl import subscriber: %#v\n", p.node)
sub := newSubject(REQAclImport, string(p.node))
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
go proc.spawnWorker()
}
func (s startup) subREQToConsole(p process) { func (s startup) subREQToConsole(p process) {
log.Printf("Starting Text To Console subscriber: %#v\n", p.node) log.Printf("Starting Text To Console subscriber: %#v\n", p.node)
sub := newSubject(REQToConsole, string(p.node)) sub := newSubject(REQToConsole, string(p.node))

View file

@ -146,6 +146,8 @@ const (
REQAclGroupCommandsDeleteGroup = "REQAclGroupCommandsDeleteGroup" REQAclGroupCommandsDeleteGroup = "REQAclGroupCommandsDeleteGroup"
// REQAclExport // REQAclExport
REQAclExport = "REQAclExport" REQAclExport = "REQAclExport"
// REQAclImport
REQAclImport = "REQAclImport"
) )
// The mapping of all the method constants specified, what type // The mapping of all the method constants specified, what type
@ -271,6 +273,9 @@ func (m Method) GetMethodsAvailable() MethodsAvailable {
REQAclExport: methodREQAclExport{ REQAclExport: methodREQAclExport{
event: EventACK, event: EventACK,
}, },
REQAclImport: methodREQAclImport{
event: EventACK,
},
}, },
} }

View file

@ -706,3 +706,75 @@ func (m methodREQAclExport) handler(proc process, message Message, node string)
ackMsg := []byte("confirmed from: " + node + ": " + fmt.Sprint(message.ID)) ackMsg := []byte("confirmed from: " + node + ": " + fmt.Sprint(message.ID))
return ackMsg, nil return ackMsg, nil
} }
// ---
type methodREQAclImport struct {
event Event
}
func (m methodREQAclImport) getKind() Event {
return m.event
}
func (m methodREQAclImport) handler(proc process, message Message, node string) ([]byte, error) {
inf := fmt.Errorf("<--- methodREQAclImport received from: %v, containing: %v", message.FromNode, message.MethodArgs)
proc.errorKernel.logConsoleOnlyIfDebug(inf, proc.configuration)
proc.processes.wg.Add(1)
go func() {
defer proc.processes.wg.Done()
// Get a context with the timeout specified in message.MethodTimeout.
ctx, cancel := getContextForMethodTimeout(proc.ctx, message)
outCh := make(chan []byte)
errCh := make(chan error)
switch {
case len(message.MethodArgs) < 1:
errCh <- fmt.Errorf("error: methodREQAclImport: got <1 number methodArgs, want 1")
return
}
proc.processes.wg.Add(1)
go func() {
defer proc.processes.wg.Done()
js := []byte(message.MethodArgs[0])
err := proc.centralAuth.accessLists.importACLs(js)
if err != nil {
errCh <- fmt.Errorf("error: methodREQAclImport failed: %v", err)
return
}
outString := fmt.Sprintf("Imported acl's sent from: %v\n", message.FromNode)
out := []byte(outString)
select {
case outCh <- out:
case <-ctx.Done():
return
}
}()
select {
case err := <-errCh:
proc.errorKernel.errSend(proc, message, err)
case <-ctx.Done():
cancel()
er := fmt.Errorf("error: methodREQAclImport: method timed out")
proc.errorKernel.errSend(proc, message, er)
case out := <-outCh:
// Prepare and queue for sending a new message with the output
// of the action executed.
newReplyMessage(proc, message, out)
}
}()
ackMsg := []byte("confirmed from: " + node + ": " + fmt.Sprint(message.ID))
return ackMsg, nil
}