Skip to content

Commit

Permalink
Merge pull request openshift-kni#6 from jhernand/add_metadata_server
Browse files Browse the repository at this point in the history
Add metadata server
  • Loading branch information
jhernand authored and irinamihai committed Nov 6, 2023
2 parents 81c6327 + 042ae1e commit 05be092
Show file tree
Hide file tree
Showing 11 changed files with 449 additions and 23 deletions.
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@
"version"
]
},
{
"name": "start metadata-server",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"start",
"metadata-server",
"--log-level=debug",
"--cloud-id=6575154c-72fc-4ed8-9a87-a81885ab38bb"
]
},
{
"name": "start deployment-manager-server",
"type": "go",
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,23 @@ generate:

.PHONY: test tests
test tests:
@echo "=== Run ginkgo... ==="
ginkgo run -r $(ginkgo_flags)

.PHONY: fmt
fmt:
@echo "=== Run fmt... ==="
gofmt -s -l -w .

.PHONY: lint
lint:
@echo "=== Run lint... ==="
golangci-lint --version
golangci-lint run

.PHONY: ci-job
ci-job: lint fmt test

.PHONY: clean
clean:
rm -rf \
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ require (
)

require (
github.com/coreos/go-semver v0.3.1
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/golang-jwt/jwt/v4 v4.5.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ github.com/PaesslerAG/jsonpath v0.1.1/go.mod h1:lVboNxFGal/VwW6d9JzIy56bUsYAP6tH
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4=
github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down
20 changes: 20 additions & 0 deletions internal/cmd/server/flags.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
Copyright 2023 Red Hat Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing permissions and limitations under the
License.
*/

package server

// Names of command line flags:
const (
cloudIDFlagName = "cloud-id"
)
3 changes: 1 addition & 2 deletions internal/cmd/server/start_deployment_manager_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (c *DeploymentManagerServerCommand) run(cmd *cobra.Command, argv []string)
objectAdapter, err := service.NewObjectAdapter().
SetLogger(logger).
SetHandler(objectHandler).
SetID("deploymentManagerID").
SetIDVariable("deploymentManagerID").
Build()
if err != nil {
logger.Error(
Expand Down Expand Up @@ -269,5 +269,4 @@ func (c *DeploymentManagerServerCommand) run(cmd *cobra.Command, argv []string)
const (
backendTokenFlagName = "backend-token"
backendURLFlagName = "backend-url"
cloudIDFlagName = "cloud-id"
)
171 changes: 171 additions & 0 deletions internal/cmd/server/start_metadata_server.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
/*
Copyright 2023 Red Hat Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing permissions and limitations under the
License.
*/

package server

import (
"log/slog"
"net/http"

"github.com/gorilla/mux"
"github.com/spf13/cobra"

"github.com/openshift-kni/oran-o2ims/internal"
"github.com/openshift-kni/oran-o2ims/internal/exit"
"github.com/openshift-kni/oran-o2ims/internal/service"
)

// MetadataServer creates and returns the `start metadata-server` command.
func MetadataServer() *cobra.Command {
c := NewMetadataServer()
result := &cobra.Command{
Use: "metadata-server",
Short: "Starts the metadata server",
Args: cobra.NoArgs,
RunE: c.run,
}
flags := result.Flags()
_ = flags.String(
cloudIDFlagName,
"",
"O-Cloud identifier.",
)
return result
}

// MetadataServerCommand contains the data and logic needed to run the `start
// deployment-manager-server` command.
type MetadataServerCommand struct {
}

// NewMetadataServer creates a new runner that knows how to execute the `start
// deployment-manager-server` command.
func NewMetadataServer() *MetadataServerCommand {
return &MetadataServerCommand{}
}

// run executes the `start deployment-manager-server` command.
func (c *MetadataServerCommand) run(cmd *cobra.Command, argv []string) error {
// Get the context:
ctx := cmd.Context()

// Get the dependencies from the context:
logger := internal.LoggerFromContext(ctx)

// Get the flags:
flags := cmd.Flags()

// Get the cloud identifier:
cloudID, err := flags.GetString(cloudIDFlagName)
if err != nil {
logger.Error(
"Failed to get cloud identifier flag",
"flag", cloudIDFlagName,
"error", err.Error(),
)
return exit.Error(1)
}
if cloudID == "" {
logger.Error(
"Cloud identifier is empty",
"flag", cloudIDFlagName,
)
return exit.Error(1)
}
logger.Info(
"Cloud identifier",
"value", cloudID,
)

// Create the router:
router := mux.NewRouter()
router.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
service.SendError(w, http.StatusNotFound, "Not found")
})
router.MethodNotAllowedHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
service.SendError(w, http.StatusMethodNotAllowed, "Method not allowed")
})

// Create the handler that servers the information about the versions of the API:
versionsHandler, err := service.NewVersionsHandler().
SetLogger(logger).
Build()
if err != nil {
logger.Error(
"Failed to create versions handler",
slog.String("error", err.Error()),
)
return exit.Error(1)
}
versionsAdapter, err := service.NewObjectAdapter().
SetLogger(logger).
SetIDVariable("version").
SetHandler(versionsHandler).
Build()
if err != nil {
logger.Error(
"Failed to create versions adapter",
slog.String("error", err.Error()),
)
return exit.Error(1)
}
router.Handle(
"/O2ims_infrastructureInventory/api_versions",
versionsAdapter,
).Methods(http.MethodGet)
router.Handle(
"/O2ims_infrastructureInventory/{version}/api_versions",
versionsAdapter,
).Methods(http.MethodGet)

// Create the handler that serves the information about the cloud:
cloudInfoHandler, err := service.NewCloudInfoHandler().
SetLogger(logger).
SetCloudID(cloudID).
Build()
if err != nil {
logger.Error(
"Failed to create cloud info handler",
slog.String("error", err.Error()),
)
return exit.Error(1)
}
cloudInfoAdapter, err := service.NewObjectAdapter().
SetLogger(logger).
SetHandler(cloudInfoHandler).
Build()
if err != nil {
logger.Error(
"Failed to create cloud info adapter",
slog.String("error", err.Error()),
)
return exit.Error(1)
}
router.Handle(
"/O2ims_infrastructureInventory/v1",
cloudInfoAdapter,
).Methods(http.MethodGet)

// Start the server:
err = http.ListenAndServe(":8080", router)
if err != nil {
logger.Error(
"server finished with error",
"error", err,
)
return exit.Error(1)
}

return nil
}
1 change: 1 addition & 0 deletions internal/cmd/start_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ func Start() *cobra.Command {
Args: cobra.NoArgs,
}
result.AddCommand(server.DeploymentManagerServer())
result.AddCommand(server.MetadataServer())
return result
}
91 changes: 91 additions & 0 deletions internal/service/cloud_info_handler.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*
Copyright 2023 Red Hat Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing permissions and limitations under the
License.
*/

package service

import (
"context"
"errors"
"log/slog"

"github.com/openshift-kni/oran-o2ims/internal/data"
)

// CloudInfoHandlerBuilder contains the data and logic needed to create a new handler for the application
// root. Don't create instances of this type directly, use the NewCloudInfoHandler function instead.
type CloudInfoHandlerBuilder struct {
logger *slog.Logger
cloudID string
}

// RootHander knows how to respond to requests for the application root. Don't create instances of
// this type directly, use the NewCloudInfoHandler function instead.
type CloudInfoHandler struct {
logger *slog.Logger
cloudID string
}

// NewCloudInfoHandler creates a builder that can then be used to configure and create a handler for the
// root of the application.
func NewCloudInfoHandler() *CloudInfoHandlerBuilder {
return &CloudInfoHandlerBuilder{}
}

// SetLogger sets the logger that the handler will use to write to the log. This is mandatory.
func (b *CloudInfoHandlerBuilder) SetLogger(value *slog.Logger) *CloudInfoHandlerBuilder {
b.logger = value
return b
}

// SetCloudID sets the identifier of the O-Cloud of this handler. This is mandatory.
func (b *CloudInfoHandlerBuilder) SetCloudID(value string) *CloudInfoHandlerBuilder {
b.cloudID = value
return b
}

// Build uses the data stored in the builder to create and configure a new handler.
func (b *CloudInfoHandlerBuilder) Build() (result *CloudInfoHandler, err error) {
// Check parameters:
if b.logger == nil {
err = errors.New("logger is mandatory")
return
}
if b.cloudID == "" {
err = errors.New("cloud identifier is mandatory")
return
}

// Create and populate the object:
result = &CloudInfoHandler{
logger: b.logger,
cloudID: b.cloudID,
}
return
}

// Get is part of the implementation of the object handler interface.
func (h *CloudInfoHandler) Get(ctx context.Context, request *ObjectRequest) (response *ObjectResponse,
err error) {
response = &ObjectResponse{
Object: data.Object{
"oCloudId": h.cloudID,
"globalCloudId": h.cloudID,
"name": "OpenShift O-Cloud",
"description": "OpenShift O-Cloud",
"serviceUri": "https://localhost:8080",
"extensions": data.Object{},
},
}
return
}
Loading

0 comments on commit 05be092

Please sign in to comment.