X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fresthooks%2Fresthooks.go;h=5940694339a6fc2ac1664f88889c39cf01e2d6ca;hb=refs%2Fchanges%2F68%2F9568%2F4;hp=b46134440832937a57801ad29fa483768f7f8bcb;hpb=e3ac46a8c1e74aa6fea57bb7d92e763bd4bd6b7c;p=ric-plt%2Fricdms.git diff --git a/pkg/resthooks/resthooks.go b/pkg/resthooks/resthooks.go index b461344..5940694 100644 --- a/pkg/resthooks/resthooks.go +++ b/pkg/resthooks/resthooks.go @@ -22,20 +22,23 @@ package resthooks import ( ch "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/charts" + "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" "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/onboard" "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi/operations/charts" + dp "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi/operations/deploy" "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi/operations/health" "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/ricdms" "github.com/go-openapi/runtime/middleware" ) -func NewResthook(h ph.IHealthChecker, o onboard.IOnboarder, chMgr ch.IChartMgr) *Resthook { +func NewResthook(h ph.IHealthChecker, o onboard.IOnboarder, chMgr ch.IChartMgr, depMgr deploy.IDeploy) *Resthook { return &Resthook{ HealthChecker: h, Onboarder: o, ChartMgr: chMgr, + DeployMgr: depMgr, } } @@ -87,3 +90,30 @@ func (rh *Resthook) GetChartsByName(name string) middleware.Responder { return charts.NewGetChartOK().WithPayload(response) } + +func (rh *Resthook) GetChartByNameAndVersion(name, version string) middleware.Responder { + ricdms.Logger.Debug("GetChartByNameAndVersion is invoked") + resp, err := rh.ChartMgr.GetChartsByNameAndVersion(name, version) + + if err != nil { + return charts.NewGetChartsFetcherInternalServerError() + } + + return charts.NewGetChartsFetcherOK().WithPayload(resp) +} + +func (rh *Resthook) DownloadAndInstallChart(appname, version, namespace string) middleware.Responder { + ricdms.Logger.Debug("DownloadAndInstall Chart is invoked") + reader, err := rh.ChartMgr.DownloadChart(appname, version) + + if err != nil { + ricdms.Logger.Error("error in downloading the chart : %v", err) + return dp.NewPostDeployInternalServerError() + } + + err = rh.DeployMgr.Deploy(reader, appname, version, namespace) + if err != nil { + return dp.NewPostDeployInternalServerError() + } + return dp.NewPostDeployCreated() +}