OIDScopeUtilities.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*! @file OIDScopeUtilities.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. NS_ASSUME_NONNULL_BEGIN
  18. /*! @brief Provides convenience methods for dealing with scope strings.
  19. */
  20. @interface OIDScopeUtilities : NSObject
  21. /*! @internal
  22. @brief Unavailable. This class should not be initialized.
  23. */
  24. - (instancetype)init NS_UNAVAILABLE;
  25. /*! @brief Converts an array of scope strings to a single scope string per the OAuth 2 spec.
  26. @param scopes An array of scope strings.
  27. @return A space-delimited string of scopes.
  28. @see https://tools.ietf.org/html/rfc6749#section-3.3
  29. */
  30. + (NSString *)scopesWithArray:(NSArray<NSString *> *)scopes;
  31. /*! @brief Converts an OAuth 2 spec-compliant scope string to an array of scopes.
  32. @param scopes An OAuth 2 spec-compliant scope string.
  33. @return An array of scope strings.
  34. @see https://tools.ietf.org/html/rfc6749#section-3.3
  35. */
  36. + (NSArray<NSString *> *)scopesArrayWithString:(NSString *)scopes;
  37. @end
  38. NS_ASSUME_NONNULL_END