metadata.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // Copyright 2019 Yunion
  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. package saml
  15. import (
  16. "encoding/xml"
  17. "fmt"
  18. "yunion.io/x/pkg/util/samlutils"
  19. "yunion.io/x/onecloud/pkg/keystone/options"
  20. )
  21. func GetMetadata(idpName string, pretty bool) string {
  22. input := samlutils.SSAMLSpMetadataInput{
  23. EntityId: options.Options.ApiServer,
  24. CertString: saml.GetCertString(),
  25. ServiceName: fmt.Sprintf("%s (Keystone Service Provider)", idpName),
  26. AssertionConsumerUrl: "%SAMLACSURL%",
  27. RequestedAttributes: []samlutils.RequestedAttribute{
  28. {
  29. IsRequired: "false",
  30. Name: "userId",
  31. FriendlyName: "userId",
  32. },
  33. {
  34. IsRequired: "false",
  35. Name: "projectId",
  36. FriendlyName: "projectId",
  37. },
  38. {
  39. IsRequired: "false",
  40. Name: "roleId",
  41. FriendlyName: "roleId",
  42. },
  43. },
  44. }
  45. ed := samlutils.NewSpMetadata(input)
  46. var xmlBytes []byte
  47. if pretty {
  48. xmlBytes, _ = xml.MarshalIndent(ed, "", " ")
  49. } else {
  50. xmlBytes, _ = xml.Marshal(ed)
  51. }
  52. return string(xmlBytes)
  53. }