0

我有一个“传统”企业 iPad 应用程序,它需要在其生命周期内使用NTLM身份验证进行许多不同的 Web 服务调用。在启动应用程序时,我预计会从钥匙串中获取用户名和密码(应用程序会在第一次使用时保存,因为钥匙串没有用户名,然后在密码因以下原因而无法使用时更新更新)。

启动时,需要各种 Web 服务调用来获取应用程序的初始数据。然后,用户将看到一个选项卡式控制器来选择他们想要的功能,当然,这反过来会执行更多的 Web 服务调用。

我相信我有一种策略来处理通过自定义数据委托接收数据的每个类,如本 StackOverflow 答案中所述(如何从异步 NSURLConnection 返回到调用类?)。-(void)useCredential:(NSURLCredential *)credential forAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge但是,对于如何正确使用该功能,我仍然有些困惑。

在 didReceiveAuthenticationChallenge 中,我有这样的代码

[[challenge sender]  useCredential:[NSURLCredential credentialWithUser:@"myusername"
                          password:@"mypassword"
                       persistence:NSURLCredentialPersistencePermanent]
        forAuthenticationChallenge:challenge];

由于我正在设置永久持久性,因此我希望不必在功能中不断传递用户名和密码。是否有一种模式用于最初设置用户的 NTLM 凭据(和/或检查它们是否已经存在),然后只使用“永久”凭据进行后续 Web 服务调用?

此外,作为次要问题/部分。在整个 Objective-C 应用程序中传递用户名/密码的适当/优雅方法是什么?我在考虑全局变量或单例实例(对于几个需要的变量来说,这似乎有点矫枉过正)。

4

1 回答 1

0

自从我们解决这个问题并成功解决它已经有一段时间了。我想是时候在这里提出答案了。下面的代码属于它自己的类,不能完全开箱即用,但应该能让你在很长一段时间内实现你所需要的。在大多数情况下,这一切都应该可以正常工作,但您只需要确保警报视图、数据存储等各个区域都按照您需要的方式进行设置。

我们理解 Objective-C 和 iOS 处理 NTLM 通信方式的一个主要障碍是弄清楚它与 URL 通信的正常过程。

与 URL 的首次联系是匿名进行的。当然,在 Windows 安全环境中,这将失败。这是应用程序将尝试再次联系该 URL 的时候,但这次使用钥匙串上已经存在的该 URL 的任何凭据并使用 willSendRequestForAuthenticationChallenge 方法。这让我们非常困惑,因为这个方法直到第一次调用失败后才触发。我们终于明白第一个匿名电话是怎么回事。

您将在此处看到的部分模式是,将尝试使用钥匙串上已有的任何凭据进行连接。如果这些失败/丢失,那么我们将弹出一个视图,要求用户输入用户名和密码,然后我们重试。

正如您将在整个代码中看到的那样,我们需要考虑许多特质。它需要多次迭代和大量测试才能达到稳定。其中大部分是基于已经在互联网上发布的模式,这些模式几乎完成了我们试图做的事情,但并没有完全把我们带到那里。

我们所做的代码概括了 GET/POST 调用。这是我在 StackOverflow 上的第一个主要代码帖子,如果我遗漏了一些约定,我深表歉意,我会在引起我注意时纠正我需要做的事情。

#import "MYDataFeeder.h"
#import "MYAppDelegate.h"
#import "MYDataStore.h"
#import "MYAuthenticationAlertView.h"
#import "MYExtensions.h"

@interface MYDataFeeder () <NSURLConnectionDelegate>
    @property (strong, nonatomic) void (^needAuthBlock)(NSString *, NSString *);
    @property (strong, nonatomic) void (^successBlock)(NSData *);
    @property (strong, nonatomic) void (^errorBlock)(NSError *);
@end


@implementation MYDataFeeder{
    NSMutableData *_responseData;
    NSString *_userName;
    NSString *_password;
    NSString *_urlPath;
    BOOL _hasQueryString;
}

+ (void)get: (NSString *)requestString
   userName: (NSString *)userName
   password: (NSString *)password
hasNewCredentials: (BOOL)hasNewCredentials
successBlock: (void (^)(NSData *))successBlock
 errorBlock: (void (^)(NSError *))errorBlock
needAuthBlock: (void (^)(NSString *, NSString *))needAuthBlock
{
    MYDataFeeder *x = [[MYDataFeeder alloc] initWithGetRequest:requestString userName:userName password:password hasNewCredentials:hasNewCredentials successBlock:successBlock errorBlock:errorBlock needAuthBlock:needAuthBlock];
}

+ (void)post: (NSString *)requestString
    userName: (NSString *)userName
    password: (NSString *)password
hasNewCredentials: (BOOL)hasNewCredentials
  jsonString: (NSString *)jsonString
successBlock: (void (^)(NSData *))successBlock
  errorBlock: (void (^)(NSError *))errorBlock
needAuthBlock: (void (^)(NSString *, NSString *))needAuthBlock
{
    MYDataFeeder *x = [[MYDataFeeder alloc] initWithPostRequest:requestString userName:userName password:password hasNewCredentials:hasNewCredentials jsonString:jsonString successBlock:successBlock errorBlock:errorBlock needAuthBlock:needAuthBlock];
}

- (instancetype)initWithGetRequest: (NSString *)requestString
                          userName: (NSString *)userName
                          password: (NSString *)password
                 hasNewCredentials: (BOOL)hasNewCredentials
                      successBlock: (void (^)(NSData *))successBlock
                        errorBlock: (void (^)(NSError *))errorBlock
                     needAuthBlock: (void (^)(NSString *, NSString *))needAuthBlock
{
    return [self initWithRequest:requestString userName:userName password:password hasNewCredentials:hasNewCredentials isPost:NO jsonString:nil successBlock:successBlock errorBlock:errorBlock needAuthBlock:needAuthBlock];
}

-(instancetype)initWithPostRequest: (NSString *)requestString
                          userName: (NSString *)userName
                          password: (NSString *)password
                 hasNewCredentials: (BOOL)hasNewCredentials
                        jsonString: (NSString *)jsonString
                      successBlock: (void (^)(NSData *))successBlock
                        errorBlock: (void (^)(NSError *))errorBlock
                     needAuthBlock: (void (^)(NSString *, NSString *))needAuthBlock
{
    return [self initWithRequest:requestString userName:userName password:password hasNewCredentials:hasNewCredentials isPost:YES jsonString:jsonString successBlock:successBlock errorBlock:errorBlock needAuthBlock:needAuthBlock];
}

//Used for NTLM authentication when user/pwd needs updating
- (instancetype)initWithRequest: (NSString *)requestString
                       userName: (NSString *)userName
                       password: (NSString *)password
              hasNewCredentials: (BOOL)hasNewCredentials
                         isPost: (BOOL)isPost
                       jsonString: (NSString *)jsonString
                   successBlock: (void (^)(NSData *))successBlock
                     errorBlock: (void (^)(NSError *))errorBlock
                  needAuthBlock: (void (^)(NSString *, NSString *))needAuthBlock //delegate:(id<MYDataFeederDelegate>)delegate
{
    self = [super init];

    requestString = [requestString stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];

    if(self) {
        if (!errorBlock || !successBlock || !needAuthBlock) {
            [NSException raise:@"MYDataFeeder Error" format:@"Missing one or more execution blocks. Need Success, Error, and NeedAuth blocks."];
        }

        _responseData = [NSMutableData new];
        _userName = userName;
        _password = password;
        _successBlock = successBlock;
        _hasNewCredentials = hasNewCredentials;
        _errorBlock = errorBlock;
        _needAuthBlock = needAuthBlock;
        NSString *host = [MYDataStore sharedStore].host; //Get the host string
        int port = [MYDataStore sharedStore].port; //Get the port value
        NSString *portString = @"";

        if (port > 0) {
            portString = [NSString stringWithFormat:@":%i", port];
        }

        requestString = [NSString stringWithFormat:@"%@%@/%@", host, portString, requestString];
        NSURL *url = [NSURL URLWithString:requestString];

        NSString *absoluteURLPath = [url absoluteString];
        NSUInteger queryLength = [[url query] length];
        _hasQueryString = queryLength > 0;
        _urlPath = (queryLength ? [absoluteURLPath substringToIndex:[absoluteURLPath length] - (queryLength + 1)] : absoluteURLPath);

        NSTimeInterval timeInterval = 60; //seconds (60 default)

        NSMutableURLRequest *request;

        if (isPost) {
            request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:timeInterval];

            NSData *requestData = [jsonString dataUsingEncoding:NSUTF8StringEncoding];

            [request setHTTPMethod:@"POST"];
            [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
            [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
            [request setValue:[NSString stringWithFormat:@"%lu", (unsigned long)requestData.length] forHTTPHeaderField:@"Content-Length"];
            [request setHTTPBody: requestData];
            [request setHTTPShouldHandleCookies:YES];
        }
        else {
            request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:timeInterval];
        }

        NSURLConnection* connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
    }

    return self;
}

- (instancetype)initWithRequest: (NSString *)requestString
                   successBlock: (void (^)(NSData *))successBlock
                     errorBlock: (void (^)(NSError *))errorBlock
                  needAuthBlock: (void (^)(NSString *, NSString *))needAuthBlock //delegate:(id<MYDataFeederDelegate>)delegate
{
    return [self initWithRequest:requestString userName:NULL password:NULL hasNewCredentials:NO isPost:NO jsonString:nil successBlock:successBlock errorBlock:errorBlock needAuthBlock:needAuthBlock]; //delegate:delegate];
}

#pragma mark - Connection Events

- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
    return YES;
}

- (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection {
    return YES;
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    if (response){
        NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;
        NSInteger code = httpResponse.statusCode;

        if (code == 401){
            NSLog(@"received 401 response");
            [MYAuthenticationAlertView showWithCallback:_needAuthBlock];
            [connection cancel];
        }
    }
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    _successBlock(_responseData);
}

-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
    [_responseData appendData:data];
}


- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    _errorBlock(error);
}

- (void) connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
    if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodNTLM])
    {
        BOOL hasConnectionCredentials = [[MYDataStore sharedStore] hasConnectionCredentials]; //Determines if there's already credentials existing (see method stub below)
        long previousFailureCount = [challenge previousFailureCount];

        BOOL hasFailedAuth = NO;

        //If the application has already gotten credentials at least once, then see if there's a response failure...
        if (hasConnectionCredentials){
            //Determine if this URL (sans querystring) has already been called; if not, then assume the URL can be called, otherwise there's probably an error...
            if ([[MYDataStore sharedStore] isURLUsed:_urlPath addURL:YES] && !_hasQueryString){
                NSURLResponse *failureResponse = [challenge failureResponse];

                if (failureResponse){
                    NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)[challenge failureResponse];
                    long code = [httpResponse statusCode];

                    if (code == 401){
                        hasFailedAuth = YES;
                    }
                }
            }
        }
        else{
            //Need to get user's credentials for authentication...
            NSLog(@"Does not have proper Credentials; possible auto-retry with proper protection space.");
        }

        /*    This is very, very important to check.  Depending on how your security policies are setup, you could lock your user out of his or her account by trying to use the wrong credentials too many times in a row.    */
        if (!_hasNewCredentials && ((previousFailureCount > 0) || hasFailedAuth))
        {
            NSLog(@"prompt for new creds");
            NSLog(@"Previous Failure Count: %li", previousFailureCount);
            [[challenge sender] cancelAuthenticationChallenge:challenge];
            [MYAuthenticationAlertView showWithCallback:_needAuthBlock];
            [connection cancel];
        }
        else
        {
            if (_hasNewCredentials){
                //If there's new credential information and failures, then request new credentials again...
                if (previousFailureCount > 0) {
                    NSLog(@"new creds failed");
                    [MYAuthenticationAlertView showWithCallback:_needAuthBlock];
                    [connection cancel];
                } else {
                    NSLog(@"use new creds");
                    //If there's new credential information and no failures, then pass them through...
                    [[challenge sender]  useCredential:[NSURLCredential credentialWithUser:_userName password:_password persistence:NSURLCredentialPersistencePermanent] forAuthenticationChallenge:challenge];
                }
            } else {
                NSLog(@"use stored creds");
                //...otherwise, use any stored credentials to call URL...
                [[challenge sender] performDefaultHandlingForAuthenticationChallenge:challenge];
            }
        }
    }
    else if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) { // server trust challenge
        // make sure challenge came from environment host
        if ([[MYDataStore sharedStore].host containsString:challenge.protectionSpace.host]) {
            [challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];
        }
        [challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
    }
    else {
        // request has failed
        [[challenge sender] cancelAuthenticationChallenge:challenge];
    }
}

@end

-(BOOL) hasConnectionCredentials
{
    NSDictionary *credentialsDict = [[NSURLCredentialStorage sharedCredentialStorage] allCredentials];
    return ([credentialsDict count] > 0);
}

//Sample use of Data Feeder and blocks:
-(void)myMethodToGetDataWithUserName:(NSString*)userName password:(NSString*)password{
//do stuff here
[MYDataFeeder get:@"myURL"
userName:userName
password:password
hasNewCredentials:(userName != nil)
successBlock:^(NSData *response){ [self processResponse:response]; }
            errorBlock:^(NSError *error) { NSLog(@"URL Error: %@", error); }
         needAuthBlock:^(NSString *userName, NSString *password) { [self myMethodToGetDataWithUserName:username withPassword:password]; }
];
}

//The needAuthBlock recalls the same method but now passing in user name and password that was queried from within an AlertView called from within the original DataFeeder call
于 2015-04-24T20:34:53.187 回答