Updates for G Maintenance release
[nonrtric/plt/sme.git] / capifcore / internal / invokermanagementapi / typeupdate.go
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2023: Nordix Foundation
6 //   %%
7 //   Licensed under the Apache License, Version 2.0 (the "License");
8 //   you may not use this file except in compliance with the License.
9 //   You may obtain a copy of the License at
10 //
11 //        http://www.apache.org/licenses/LICENSE-2.0
12 //
13 //   Unless required by applicable law or agreed to in writing, software
14 //   distributed under the License is distributed on an "AS IS" BASIS,
15 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 //   See the License for the specific language governing permissions and
17 //   limitations under the License.
18 //   ========================LICENSE_END===================================
19 //
20
21 package invokermanagementapi
22
23 import (
24         "strings"
25
26         "github.com/google/uuid"
27 )
28
29 var uuidFunc = getUUID
30
31 func (ied *APIInvokerEnrolmentDetails) PrepareNewInvoker() {
32         ied.createId()
33         ied.getOnboardingSecret()
34
35 }
36
37 func (ied *APIInvokerEnrolmentDetails) createId() {
38         idAsString := "api_invoker_id_"
39         if ied.ApiInvokerInformation != nil {
40                 idAsString = idAsString + strings.ReplaceAll(*ied.ApiInvokerInformation, " ", "_")
41         } else {
42                 idAsString = idAsString + uuidFunc()
43         }
44         ied.ApiInvokerId = &idAsString
45 }
46
47 func getUUID() string {
48         return uuid.NewString()
49 }
50
51 func (ied *APIInvokerEnrolmentDetails) getOnboardingSecret() {
52         onboardingSecret := "onboarding_secret_"
53         if ied.ApiInvokerInformation != nil {
54                 onboardingSecret = onboardingSecret + strings.ReplaceAll(*ied.ApiInvokerInformation, " ", "_")
55         } else {
56                 onboardingSecret = onboardingSecret + *ied.ApiInvokerId
57         }
58         ied.OnboardingInformation.OnboardingSecret = &onboardingSecret
59 }