utils.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/usr/bin/env python
  2. """
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. """
  17. import re
  18. def get_bare_principal(normalized_principal_name):
  19. """
  20. Given a normalized principal name (nimbus/c6501.ambari.apache.org@EXAMPLE.COM) returns just the
  21. primary component (nimbus)
  22. :param normalized_principal_name: a string containing the principal name to process
  23. :return: a string containing the primary component value or None if not valid
  24. """
  25. bare_principal = None
  26. if normalized_principal_name:
  27. match = re.match(r"([^/@]+)(?:/[^@])?(?:@.*)?", normalized_principal_name)
  28. if match:
  29. bare_principal = match.group(1)
  30. return bare_principal