obtain(withRights:flags:environment:authorizedRights:)
Authorizes and preauthorizes rights to access a privileged operation and returns the granted rights.
Declaration
func obtain(withRights rights: UnsafePointer<AuthorizationRights>!, flags: AuthorizationFlags, environment: UnsafePointer<AuthorizationEnvironment>!, authorizedRights: UnsafeMutablePointer<UnsafeMutablePointer<AuthorizationRights>?>!) throwsParameters
- rights:
A pointer to a set of authorization rights you create. Pass
NULLif the application requires no rights at this time. - flags:
A bit mask for specifying authorization options. Use the following option sets:
Pass the constant Kauthorizationflagdefaults if no options are necessary.
Specify the Extendrights mask to request rights. You can also specify the Interactionallowed mask to allow user interaction.
Specify the Partialrights and Extendrights masks to request partial rights. You can also specify the Interactionallowed mask to allow user interaction.
Specify the Preauthorize and Extendrights masks to preauthorize rights.
Specify the Destroyrights mask to prevent the Security framework from preserving the rights obtained during this call.
- environment:
Data used when authorizing or preauthorizing rights. In macOS 10.3 and later, you can pass icon or prompt data to be used in the authentication dialog box. Possible values for this parameter are listed in
Security/AuthorizationTags.h. If you are not passing any data in this parameter, pass the constant Kauthorizationemptyenvironment. - authorizedRights:
A pointer to a newly allocated Authorizationrights structure. On return, this structure contains the rights granted by the Security framework. If you do not require this information, pass
NULL. If you specify the Preauthorize mask in theflagsparameter, the method returns all the requested rights, including those not granted, but the flags of the rights that could not be preauthorized include the Kauthorizationflagcannotpreauthorize bit. Free the memory associated with this set of rights by calling the Authorization Services function Authorizationfreeitemset(_:).
Return value
true if operation completes successfully.
Discussion
There are three main reasons to use this method. The first reason is to preauthorize rights by specifying the kAuthorizationFlagPreAuthorize, kAuthorizationFlagInteractionAllowed, and kAuthorizationFlagExtendRights masks as authorization options. Preauthorization is most useful when a right has a zero timeout. For example, you can preauthorize in the application and if it succeeds, call the helper tool and request authorization. This eliminates calling the helper tool if the Security framework cannot later authorize the specified rights.
The second reason to use this method is to authorize rights before performing a privileged operation by specifying the kAuthorizationFlagInteractionAllowed, and kAuthorizationFlagExtendRights masks as authorization options.
The third reason to use this method is to authorize partial rights. By specifying the kAuthorizationFlagPartialRights, kAuthorizationFlagInteractionAllowed, and kAuthorizationFlagExtendRights masks as authorization options, the Security framework grants all rights it can authorize. On return, the authorized set contains all the rights.
If you do not specify the kAuthorizationFlagPartialRights mask and the Security framework denies at least one right, then the method returns false and the error parameter returns errAuthorizationDenied.
If you do not specify the kAuthorizationFlagInteractionAllowed mask and the Security framework requires user interaction, then the method returns false and the error parameter returns errAuthorizationInteractionNotAllowed.
If you specify the kAuthorizationFlagInteractionAllowed mask and the user cancels the authentication process, then the method returns false and the error parameter returns errAuthorizationCanceled.