Add error check if arg is nil
[ric-plt/ricdms.git] / pkg / restful / restful.go
index 72dcea1..4e6f7a1 100644 (file)
@@ -30,6 +30,7 @@ import (
        ch "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/charts"
        dm "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/deploy"
        ph "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/health"
+       "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/models"
        po "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/onboard"
        "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi"
        "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi/operations"
@@ -122,8 +123,14 @@ func (r *Restful) setupHandler() {
 
        api.ExperimentPostCustomOnboardHandler = experiment.PostCustomOnboardHandlerFunc(func(pcop experiment.PostCustomOnboardParams) middleware.Responder {
                ricdms.Logger.Debug("==> invoked custom onboarding")
-               // TODO: provide implementatoin
-               return &experiment.PostCustomOnboardOK{}
+               if pcop.Helmpkg == nil {
+                       errString := "formdata not provided with key helmpkg"
+                       return experiment.NewPostCustomOnboardInternalServerError().WithPayload(&models.ErrorMessage{
+                               ErrorMessage: &errString,
+                       })
+               }
+               defer pcop.Helmpkg.Close()
+               return r.rh.Onboarder.CustomOnboard(pcop.Helmpkg)
        })
 
        api.ApplicationZipProducer = runtime.ProducerFunc(func(w io.Writer, data interface{}) error {