2015-06-21 19:28:39 +00:00
package NumGen
import (
"github.com/SommerEngineering/Ocean/ICCC"
"github.com/SommerEngineering/Ocean/ICCC/SystemMessages"
"github.com/SommerEngineering/Ocean/Log"
LM "github.com/SommerEngineering/Ocean/Log/Meta"
)
// The receiver function for the ICCC message, that registers a command.
2015-07-10 12:36:47 +00:00
func ICCCNextNumberReceiver ( data map [ string ] [ ] string ) ( result map [ string ] [ ] string ) {
2015-06-21 19:28:39 +00:00
// Recover from errors:
defer func ( ) {
if err := recover ( ) ; err != nil {
2015-07-10 12:36:47 +00:00
Log . LogFull ( senderName , LM . CategorySYSTEM , LM . LevelERROR , LM . SeverityUnknown , LM . ImpactUnknown , LM . MessageNamePARSE , "Was not able to execute the ICCC next number command message." )
2015-06-21 19:28:39 +00:00
result = make ( map [ string ] [ ] string , 0 )
return
}
} ( )
// Converts the HTTP form data into an object:
_ , _ , obj := ICCC . Data2Message ( SystemMessages . ICCCNumGenNext { } , data )
// Was it possible to convert the data?
if obj != nil {
// Cast the object to the right type (just as check):
_ = obj . ( SystemMessages . ICCCNumGenNext )
// Execute the command:
nextNumber := GetUniqueID ( )
// An answer is necessary:
2015-07-09 18:19:01 +00:00
answer := SystemMessages . ICCCNumGenNextAnswer { }
2015-06-21 19:28:39 +00:00
answer . Number = nextNumber
return ICCC . Message2Data ( ` ` , ` ` , answer )
} else {
Log . LogShort ( senderName , LM . CategorySYSTEM , LM . LevelINFO , LM . MessageNameSTARTUP , ` ICCC message: Was not able to create the message. ` )
}
// In any other error case:
result = make ( map [ string ] [ ] string , 0 )
return
}