X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dmaap-mediator-producer%2Finternal%2Fconfig%2Fregistrator.go;h=bac14e6341fc2ace7bd0733cebdedc431f7af86d;hb=1b732d17463fad74721391b3a87a2a12172da63c;hp=f846f9f52f8c1b22657138e8604ea06ece232fbf;hpb=cce95ff706e7b7d703b0bf1cfa6ce855cc2d9b68;p=nonrtric.git diff --git a/dmaap-mediator-producer/internal/config/registrator.go b/dmaap-mediator-producer/internal/config/registrator.go index f846f9f5..bac14e63 100644 --- a/dmaap-mediator-producer/internal/config/registrator.go +++ b/dmaap-mediator-producer/internal/config/registrator.go @@ -21,38 +21,75 @@ package config import ( + "encoding/json" "fmt" "net/url" log "github.com/sirupsen/logrus" - "oransc.org/nonrtric/dmaapmediatorproducer/internal/jobtypes" "oransc.org/nonrtric/dmaapmediatorproducer/internal/restclient" ) const registerTypePath = "/data-producer/v1/info-types/" +const registerProducerPath = "/data-producer/v1/info-producers/" + +type TypeDefinition struct { + Identity string `json:"id"` + DMaaPTopicURL string `json:"dmaapTopicUrl"` + KafkaInputTopic string `json:"kafkaInputTopic"` + TypeSchema interface{} +} + +func (td TypeDefinition) IsKafkaType() bool { + return td.KafkaInputTopic != "" +} + +func (td TypeDefinition) IsDMaaPType() bool { + return td.DMaaPTopicURL != "" +} + +type ProducerRegistrationInfo struct { + InfoProducerSupervisionCallbackUrl string `json:"info_producer_supervision_callback_url"` + SupportedInfoTypes []string `json:"supported_info_types"` + InfoJobCallbackUrl string `json:"info_job_callback_url"` +} type Registrator interface { - RegisterTypes(types []*jobtypes.Type) error + RegisterTypes(types []TypeDefinition) error + RegisterProducer(producerId string, producerInfo *ProducerRegistrationInfo) } type RegistratorImpl struct { infoCoordinatorAddress string + httpClient restclient.HTTPClient } -func NewRegistratorImpl(infoCoordAddr string) *RegistratorImpl { +func NewRegistratorImpl(infoCoordAddr string, client restclient.HTTPClient) *RegistratorImpl { return &RegistratorImpl{ infoCoordinatorAddress: infoCoordAddr, + httpClient: client, } } -func (r RegistratorImpl) RegisterTypes(jobTypes []*jobtypes.Type) error { +func (r RegistratorImpl) RegisterTypes(jobTypes []TypeDefinition) error { for _, jobType := range jobTypes { - body := fmt.Sprintf(`{"info_job_data_schema": %v}`, jobType.Schema) - if error := restclient.Put(r.infoCoordinatorAddress+registerTypePath+url.PathEscape(jobType.Name), []byte(body)); error != nil { + body := fmt.Sprintf(`{"info_job_data_schema": %v}`, jobType.TypeSchema) + if error := restclient.Put(r.infoCoordinatorAddress+registerTypePath+url.PathEscape(jobType.Identity), []byte(body), r.httpClient); error != nil { return error } log.Debugf("Registered type: %v", jobType) } return nil } + +func (r RegistratorImpl) RegisterProducer(producerId string, producerInfo *ProducerRegistrationInfo) error { + if body, marshalErr := json.Marshal(producerInfo); marshalErr == nil { + if putErr := restclient.Put(r.infoCoordinatorAddress+registerProducerPath+url.PathEscape(producerId), []byte(body), r.httpClient); putErr != nil { + return putErr + } + log.Debugf("Registered producer: %v", producerId) + return nil + } else { + return marshalErr + } +}