2009-12-20 1 views
8

के साथ आईफोन एप्लिकेशन को एकीकृत करना क्या किसी ने एक शिबबोले पहचान प्रदाता के साथ एक आईफोन एप्लीकेशन एकीकृत किया है? गुगलिंग कुछ भी नहीं आया, इसलिए मैं सीधे गुरु से पूछ रहा हूं।शिबबोले

यदि यह पहले से नहीं किया गया है, तो ऐसा करने के लिए यह संभव है?

+0

क्या आप किसी वेब एप्लिकेशन या मूल एप्लिकेशन के बारे में बात कर रहे हैं? –

+0

मूल आवेदन; या आईफोन वेब पेज मूल आवेदन प्रमाणीकृत कर सकता है? – user353829

उत्तर

15

दोनों का जवाब "हां" है।

मैं एक जावा पुरुष हूँ, इसलिए करने के लिए दो हफ्ते पहले कहा जा रहा है:

  • जानें ऑब्जेक्टिव-सी
  • एक देशी iPhone App
  • Shibboleth साथ प्रोग्राम के रूप में प्रमाणीकृत
  • डाउनलोड एक लिखें प्रदर्शित करें शिबबोलेथ संरक्षित डेटाफाइल

... थोड़ा मुश्किल था। कंपाउंड कि किसी फोरम पोस्ट की अनुपस्थिति के साथ मदद करने के लिए मुझे अपना अनुभव साझा करने के लिए प्रेरित किया गया है।

कुछ आशावादी रूप से बहुत उपयोगी नमूना कोड के बाद यहां एक सिंहावलोकन है। अगर यह मदद करता है तो कृपया मेरे उत्तर के लिए वोट दें! इसके लायक अपने समय :)

iPhone पर एक आवेदन Shibbolized संसाधनों को डाउनलोड करने के लिए के कुछ हफ्तों के लिए, निम्न जरूरतों होने की:

  1. उपयोग यूआरएल एपीआई कोको में के लिए HTTP अनुरोध प्रस्तुत करने के लिए प्रश्न में संसाधन।
  2. के अनुरोध के लिए एक प्रतिनिधि वर्ग को लागू करें: करने के लिए सपा फिर से प्रत्यक्ष IdP को (कोको का स्वत: सौजन्य से)
  3. सर्वर प्रमाणपत्र विश्वास का जवाब को चुनौती
  4. जवाब
  5. उपयोगकर्ता क्रेडेंशियल का जवाब को चुनौती
  6. त्रुटियों (यदि आवश्यक)
  7. प्राप्त IdP के "बंधन टेम्पलेट" प्रमाणीकृत उपयोगकर्ता, एक HTML फ़ॉर्म जिसके लिए दो पैरामीटर
  8. प्रोग्राम HTTP POST दो मापदंडों के साथ वापस करने के लिए सपा उपयोगकर्ता फिर से निर्देशन के लिए
  9. जवाब आईडीपी से वापस एसपी तक।
  10. कुकीज स्वचालित रूप से संग्रहित होते हैं और आगे कोको के सौजन्य
  11. मूल रूप से अनुरोध डेटा प्राप्त करने के लिए एक दूसरे यूआरएल अनुरोध प्रतिनिधि को लागू करें।

यहाँ एप्पल और Shibboleth से कुछ उपयोगी संदर्भ हैं:

और उम्मीद है कि मैं एक त्वरित प्रदर्शन के लिए सभी स्रोत शामिल कर सकते हैं।

ApplicationDelegate.h 
---------- 
#import <UIKit/UIKit.h> 
#import "ConsoleViewController.h" 

/* 
The application delegate will hold references to the application's UIWindow and a ConsoleViewController. 
The console does all of the interesting Shibboleth activities. 
*/ 
@interface ApplicationDelegate : NSObject <UIApplicationDelegate> { 

UIWindow *window; 
ConsoleViewController *consoleViewController; 
} 


@end 

ApplicationDelegate.m 
---------- 
#import "ApplicationDelegate.h" 
#import "ConsoleViewController.h" 

/* 
The implementation for the ApplicationDelegate initializes the console view controller and assembles everything. 
The console does all of the interesting Shibboleth activities. 
*/ 
@implementation ApplicationDelegate 


- (void)applicationDidFinishLaunching:(UIApplication *)application {  

// Initialize the console. 
consoleViewController = [[ConsoleViewController alloc] init]; 

window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 
[window setBackgroundColor:[UIColor lightGrayColor]]; 
[window addSubview:[consoleViewController view]]; 

[window makeKeyAndVisible]; 
} 


- (void)dealloc { 
    [window release]; 
[ConsoleViewController release]; 
    [super dealloc]; 
} 


@end 

ConsoleController.h 
---------- 
#import <Foundation/Foundation.h> 
#import <UIKit/UIKit.h> 

/* 
The ConsoleViewController's interface declares references to the network data used in negotiating with Shibboleth 
and a UITextView used to display the final result or errors. 
*/ 
@interface ConsoleViewController : UIViewController { 

NSMutableData *responseData; 
NSString *responseString; 
UITextView *console; 
} 

@end 

ConsoleController.m 
---------- 
#import "ApplicationDelegate.h" 
#import "ConsoleViewController.h" 


/* 
This delegate is used when making the second HTTP request with Shibboleth. If you're just getting here, start 
by reading the comments for ConsoleViewController below. 

All we need to do now is receive the response from the SP and display it. 
If all goes well, this should be the secured page originally requested. 
*/ 
@interface AuthenticationRedirectDelegate : NSObject { 

NSMutableData *authResponseData; 
NSString *authResponseString; 
UITextView *console; 
} 

@property (nonatomic retain) UITextView *console; 

@end 


/* 
Refer to the comments for the interface above. 
*/ 
@implementation AuthenticationRedirectDelegate 

@synthesize console; 

-(id)init { 
authResponseData = [[NSMutableData alloc] retain]; 
return self; 
} 


- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { 
[authResponseData setLength:0]; 
} 


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


- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { 
[console setText:[error localizedDescription]]; 
} 


/* 
Once the data is received from Shibboleth's SP, display it. 
*/ 
- (void)connectionDidFinishLoading:(NSURLConnection *)connection { 

authResponseString = [[NSString alloc] initWithData:authResponseData encoding:NSUTF8StringEncoding]; 
[console setText:authResponseString]; 
[connection release]; 
} 


@end 


/* 
The implementation of the ConsoleViewController, and AuthenticationRedirectDelegate above, contain the real logic of 
this Shibboleth exercise. The ConsoleViewController performs the following: 
1. Prepare the initial HTTP request to a Shibboleth protected resource. 
2. Act as the delegate whilst Cocoa's URL Loading API receives the HTTP Response. 
NOTE: We instruct Cocoa in advance to take care of the SP redirecting to the IdP, accepting the server certificate, 
and submitting the user credentials 
3. Once the HTTP Response is finished loading, parse the <form action, RelayState and SAMLResponse from the IdP's 
response 
4. Call a utility method to prepare a second HTTP POST Request to the <form action/SP with the IdP's parameters 
NOTE: We do not need to transfer over any of Shibboleth's cookies, since Cocoa is doing this automatically 
5. Use a new instance of AuthenticationRedirectDelegate to receive the POST's response, which should be the secured 
page originally requested. 
6. Display the final content in the UITextView known as console. 
*/ 
@implementation ConsoleViewController 


/* 
A handy utility method for extracting a substring marked by two provided token strings. 
Used in parsing the HTML form returned by the IdP after the first HTTP Request. 
*/ 
+(id)substringFromString:(NSString *)source BetweenOpenToken:(NSString *)openToken AndCloseToken:(NSString *)closeToken { 

NSUInteger l = [source length]; 
NSUInteger openTokenLen = [openToken length]; 

NSUInteger openTokenLoc = ([source rangeOfString:openToken]).location; 
NSUInteger valueLoc = openTokenLoc + openTokenLen; 
NSRange searchRange = NSMakeRange(valueLoc, l - valueLoc); 
NSUInteger closeTokenLoc = ([source rangeOfString:closeToken options:NSCaseInsensitiveSearch range:searchRange]).location; 
searchRange = NSMakeRange(valueLoc, closeTokenLoc - valueLoc); 
NSString *result = [source substringWithRange:searchRange]; 

return result; 
} 


/* 
This function takes the three properties returned by the IdP after the first HTTP request and 
HTTP POSTs them to the SP as specified by the IdP in the "url" parameter. 
*/ 
-(void)authReturnTo:(NSURL *)url WithRelay:(NSString *)relayState AndSAML:(NSString *)samlResponse { 

// Here we assemble the HTTP POST body as usual. 
NSString *preBody = [[NSString alloc] initWithString:@"RelayState="]; 
preBody = [preBody stringByAppendingString:relayState]; 
preBody = [preBody stringByAppendingString:@"&"]; 
preBody = [preBody stringByAppendingString:@"SAMLResponse="]; 
preBody = [preBody stringByAppendingString:samlResponse]; 

/* The SAMLResponse parameter contains characters (+) that the SP expects to be URL encoded. 
    Here we simply manually URL encode those characters. You may wish to harden this with proper 
    URL encoding for production use. 
    */ 
NSString *httpBody = [preBody stringByReplacingOccurrencesOfString:@"+" withString:@"%2B"]; 
NSData *httpBodyData = [httpBody dataUsingEncoding:NSUTF8StringEncoding]; 

NSString *httpContentLength = [NSString stringWithFormat:@"%d", [httpBodyData length]]; 

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url 
       cachePolicy:NSURLRequestReloadIgnoringCacheData 
       timeoutInterval:12.0]; 
[request setHTTPMethod:@"POST"]; 
[request setValue:httpContentLength forHTTPHeaderField:@"Content-Length"]; 
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; 

[request setHTTPBody:httpBodyData]; 

// Submit the HTTP POST using the second delegate class to receive the response 
AuthenticationRedirectDelegate *delegate = [[AuthenticationRedirectDelegate alloc] init]; 
delegate.console=console; 
[[NSURLConnection alloc] initWithRequest:request delegate:delegate]; 
} 


/* 
When this UIViewController finishes loading, automatically prepare and send a request to the Shibboleth SP Web Server 
for a secured resource. 
*/ 
- (void)viewDidLoad { 
[super viewDidLoad]; 

console = [[UITextView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 
[[self view] addSubview:console]; 

responseData = [[NSMutableData data] retain]; 

// TODO: Enter your own URL for a Shibboleth secured resource. 
NSURL *url = [NSURL URLWithString:@"<URL>"]; 

NSURLRequest *request = [NSURLRequest requestWithURL:url 
     cachePolicy:NSURLRequestUseProtocolCachePolicy 
     timeoutInterval:12.0]; 

[[NSURLConnection alloc] initWithRequest:request delegate:self]; 

/* Control flows to the delegate methods below */ 
} 


/* 
Refer to Apple's docs on the URL Loading System for details. 
http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html 
*/ 
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { 
    [responseData setLength:0]; 
} 


/* 
Refer to Apple's docs on the URL Loading System for details. 
http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html 
*/ 
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { 
[responseData appendData:data]; 
} 

/* 
This implementation in the delegate let's Cocoa trust my SP Web Server's self-signed certificate. 
TODO: You will want to harden this for production use. 

Refer to Apple's docs on the URL Loading System for details. 
http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html 
*/ 
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace { 
return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust] || [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodHTTPBasic]; 
} 


/* 
This implementation for the delegate does two things: 
1. Respond to challenges for my server's self-signed certificate 
2. Respond to the IdP's challenge for the username and password. 
TODO: Enter your own username and password here. 
Refer to Apple's docs on the URL Loading System for details. 
http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html 
*/ 
- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge { 
// TODO: Enter the correct username and password below. 
/* 
    WARNING: Using an incorrect user name and password will result in your application being re-challenged 
    by the IdP. Cocoa will return to this function in a never-ending loop. This can result in the message 
    "NSPosixErrorDomain Too many open files". You'll need to perform additional coding to handle this. 
    */ 
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) 
    [challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge]; 
else if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodHTTPBasic]) 
    [challenge.sender useCredential:[NSURLCredential credentialWithUser:@"<USERNAME>" password:@"<PASSWORD>" persistence:NSURLCredentialPersistenceNone] forAuthenticationChallenge:challenge]; 
else 
    [challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge]; 
} 


/* 
You may wish to add more code here to log errors. 

Refer to Apple's docs on the URL Loading System for details. 
http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html 
*/ 
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { 
[console setText:[error localizedDescription]]; 
} 


/* 
Once Cocoa has received a (hopefully) authenticated response from the IdP, we parse out the relevant pieces and prepare to 
HTTP POST them back to the SP as specified by the IdP in the <form action attribute. 

Refer to Apple's docs on the URL Loading System for details. 
http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html 
*/ 
- (void)connectionDidFinishLoading:(NSURLConnection *)connection { 
[connection release]; 
responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; 

if([responseString rangeOfString:@"SAMLResponse"].length < 1) 
{ 
    [console setText:[@"Unexpected response:\n]n" stringByAppendingString:responseString]]; 
    return; 
} 

NSString *relayState = [ConsoleViewController substringFromString:responseString BetweenOpenToken:@"RelayState\" value=\"" AndCloseToken:@"\"/>"]; 
NSString *SAMLResponse = [ConsoleViewController substringFromString:responseString BetweenOpenToken:@"SAMLResponse\" value=\"" AndCloseToken:@"\"/>"]; 
NSString *formAction = [ConsoleViewController substringFromString:responseString BetweenOpenToken:@"<form action=\"" AndCloseToken:@"\""]; 
NSURL *formActionURL = [[NSURL alloc] initWithString:formAction]; 
[self authReturnTo:formActionURL WithRelay:relayState AndSAML:SAMLResponse]; 
} 


@end 
+0

अच्छा, लेकिन यह फ़ॉर्म-आधारित प्रमाणीकरण के साथ काम नहीं करता है, जहां आपको HTML को पार्स करने या इसे बातचीत के लिए उपयोगकर्ता को प्रस्तुत करने की आवश्यकता होती है। मेरे मामले में उपयोगकर्ता को कई प्रमाणीकरण कारकों पर पुन: सक्रिय करने की आवश्यकता है, इसलिए मैं इसे प्राप्त नहीं कर सकता। वैसे भी मैं आपके नमूना को सी # में बदल सकता हूं, आईफोन विकास के लिए अपनी पसंद की भाषा, और इसे आधार के रूप में उपयोग कर सकता हूं। धन्यवाद – Monoman

0

मैंने ईसी के समाधान को प्रारंभिक बिंदु के रूप में सफलतापूर्वक कार्यान्वित किया।एकमात्र अन्य चीज जो मैं जोड़ूंगा वह यह है कि आपको वास्तव में एक ही समय में केवल एक अनुरोध जारी रखने पर ध्यान देना होगा। हमारे कार्यान्वयन में प्रमाणीकरण प्रक्रिया समकालिक रूप से चल रहे एकाधिक एसिंक्रोनस अनुरोधों के बीच भ्रमित हो जाएगी। कतार को थ्रॉटल करने के लिए एनएसओपरेशन का उपयोग करना मेरे लिए बहुत अच्छा काम करता था।

0

मैं बस ऐसा करने में कामयाब रहा, लेकिन मुझे प्रक्रिया के प्रत्येक चरण को समझने और इसे पूरी तरह से पुन: पेश करने में कुछ समय लगा। यदि मेरे पास समय है, तो मैं एक विस्तृत ट्यूटोरियल लिख सकता हूं, क्योंकि मुझे मिली कई समस्याओं के लिए मुझे कोई मदद नहीं मिली। बात यह है कि यह उस वेबसाइट पर भी निर्भर करता है जिसे आप कनेक्ट करना चाहते हैं, इसलिए आपका हो सकता है कि मेरा मेरा उसी मार्ग का पालन न करे (इसकी प्रक्रिया here वर्णित एक जैसा है)।

कनेक्ट करने के लिए मेरे ब्राउज़र (क्रोम) द्वारा निकाले गए प्रत्येक अनुरोध को देखने के लिए, मैंने 'संरक्षित लॉग' चेक के साथ डेवलपर टूल नेटवर्क पैनल का उपयोग किया।

कुछ संकेत:

  • 1 °) आप प्राप्त करने के लिए "_idp_authn_lc_key ..." कुकी की जरूरत है। एक अनुरोध है जो इसे आपके लिए सेट करता है, इसे ढूंढें।

  • 2 डिग्री) आपको लॉगिन टिकट (एलटी -...) की आवश्यकता है। आपको शायद उस पृष्ठ के उस शरीर में मिल जाएगा जो आपको अपने प्रमाण-पत्र पूछता है।

  • 3 °) आपको एक सेवा टिकट (एसटी -...) की आवश्यकता है। दोबारा, आप इसे उस पृष्ठ में पाएंगे जो पिछला अनुरोध लौटाया गया था।

  • 4 °) आपको SAMLResponse की आवश्यकता है। दोबारा, आप इसे उस पृष्ठ में पाएंगे जो पिछला अनुरोध लौटाया गया था।

  • 5 डिग्री) अंत में, आप सेवा प्रदाता को SAMLResponse वापस भेजकर लॉग इन कर सकते हैं। आपको यहां एन्कोडिंग का ख्याल रखना चाहिए। मेरे पास कुछ '+' या '=' था जो मुझे '% 2B' और '% 3 डी' में बदलने की आवश्यकता थी। आपको "_idp_session" कुकी दी जाएगी, जो आपको इस गड़बड़ी के बिना पुनः कनेक्ट करने की अनुमति देगी।

अगर कोई ऐसा करने का प्रयास करता है, तो मुझे मदद करने में खुशी होगी! बस मुझे एक संदेश भेजें।