|
| 1 | +// Copyright (c) 2025 Tigera, Inc. All rights reserved. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +package v1 |
| 16 | + |
| 17 | +import ( |
| 18 | + "net/http" |
| 19 | + |
| 20 | + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
| 21 | + ctrlclient "sigs.k8s.io/controller-runtime/pkg/client" |
| 22 | + |
| 23 | + apiv3 "github.com/projectcalico/api/pkg/apis/projectcalico/v3" |
| 24 | + "github.com/projectcalico/calico/lib/httpmachinery/pkg/apiutil" |
| 25 | + apictx "github.com/projectcalico/calico/lib/httpmachinery/pkg/context" |
| 26 | + |
| 27 | + whiskerv1 "github.com/projectcalico/calico/whisker-backend/pkg/apis/v1" |
| 28 | +) |
| 29 | + |
| 30 | +type clusterInfoHdlr struct { |
| 31 | + client ctrlclient.Client |
| 32 | +} |
| 33 | + |
| 34 | +func NewClusterInfoHandler(cli ctrlclient.Client) *clusterInfoHdlr { |
| 35 | + return &clusterInfoHdlr{client: cli} |
| 36 | +} |
| 37 | + |
| 38 | +func (hdlr *clusterInfoHdlr) APIs() []apiutil.Endpoint { |
| 39 | + return []apiutil.Endpoint{ |
| 40 | + { |
| 41 | + Method: http.MethodGet, |
| 42 | + Path: whiskerv1.ClusterInfoPath, |
| 43 | + Handler: apiutil.NewJSONSingleResponseHandler(hdlr.Get), |
| 44 | + }, |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +func (hdlr *clusterInfoHdlr) Get(ctx apictx.Context, params whiskerv1.ClusterInfoParams) apiutil.SingleResponse[whiskerv1.ClusterInfoResponse] { |
| 49 | + logger := ctx.Logger() |
| 50 | + logger.Debug("Get Cluster called.") |
| 51 | + if params.Name == "" { |
| 52 | + params.Name = "default" |
| 53 | + } |
| 54 | + clusterInfo := &apiv3.ClusterInformation{ObjectMeta: metav1.ObjectMeta{Name: params.Name}} |
| 55 | + |
| 56 | + err := hdlr.client.Get(ctx, ctrlclient.ObjectKeyFromObject(clusterInfo), clusterInfo) |
| 57 | + if err != nil { |
| 58 | + logger.Error("Failed to get ClusterInformation: ", err) |
| 59 | + return apiutil.NewSingleResponse[whiskerv1.ClusterInfoResponse](http.StatusInternalServerError).SetError("Internal Server Error") |
| 60 | + } |
| 61 | + |
| 62 | + return apiutil.NewSingleResponse[whiskerv1.ClusterInfoResponse](http.StatusOK).Send(whiskerv1.ClusterInfoResponse{ClusterGUID: clusterInfo.Spec.ClusterGUID, ClusterType: clusterInfo.Spec.ClusterType, CalicoVersion: clusterInfo.Spec.CalicoVersion}) |
| 63 | +} |
0 commit comments