gpt4 book ai didi

ios - 修改webView的Request shouldStartLoadWithRequest :

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:05:30 31 4
gpt4 key购买 nike

目前我正在开发一个混合应用程序,它使用 webView shouldStartLoadWithRequest: 为登录提供 token 。我的功能适用于我发出的每个正常请求(例如单击)

 - (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request 
NSLog([NSString stringWithFormat:@"Loading View: %@",[[request URL] absoluteString]]);
if ([[[request URL] absoluteString] rangeOfString:BASE_URL].location != NSNotFound) {
NSString *token = [[NSUserDefaults standardUserDefaults] stringForKey:kDefaultsKeyLoginToken];
NSString *hash = [[NSUserDefaults standardUserDefaults] stringForKey:kDefaultsKeyLoginHash];
NSString *params = [NSString stringWithFormat:@"mobile=app&user_token=%@&user_hash=%@",token,hash];
if([[request URL] query] == nil) {
[self LoadUrl:[[request URL] absoluteString] withGetParams:params append:NO];
return NO;
}else{
if([[[request URL] absoluteString] rangeOfString:params].location == NSNotFound){
[self LoadUrl:[[request URL] absoluteString] withGetParams:params append:YES];
return NO;
}
}

}

-(void)LoadUrl:(NSString *)url withGetParams:(NSString *)params append:(BOOL)append{
NSString *PreUrl;
if(append == YES) PreUrl = [NSString stringWithFormat:@"%@&%@",url,params];
else PreUrl = [NSString stringWithFormat:@"%@?%@",url,params];
NSURL *nsurl = [NSURL URLWithString: PreUrl];
NSURLRequest *request = [NSURLRequest requestWithURL:nsurl];
[self.WebView loadRequest:request];
}

我对这段代码的问题是,如果我加载一个图像,例如它将被检测为“要进行哈希附加”(这是正确的,我希望每个请求都包含 Auth)但是图像将加载到 Webview 本身中。

我的第一次尝试(在我切换到这个模型之前)是修改解析的请求。但是每个更改都被忽略了....

有谁知道我该如何解决这个问题?有没有办法真正修改请求?或者,如果不是,我是否可以至少确定请求的“目标”或转发它?

感谢您的帮助

最佳答案

我找到了解决问题的方法。 Sublcassing 是正确的方法,但不是 UIWebView,而是一个自己的 NSURLProtocol。

所以我做了什么:

创建自己的 NSURLProtocol 子类

@interface MyURL : NSURLProtocol <NSURLConnectionDelegate>

为 HTTP 连接添加一些标准处理

@interface MyURL () <NSURLConnectionDelegate>

@property (nonatomic, strong) NSURLConnection *connection;
@property (nonatomic, strong) NSMutableData *mutableData;
@property (nonatomic, strong) NSURLResponse *response;

@end

@implementation MyURL
+ (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request
{
return request;
}
- (void)stopLoading
{
[self.connection cancel];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[self.client URLProtocol:self didLoadData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
[self.client URLProtocol:self didFailWithError:error];
self.connection = nil;
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
[self.client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageAllowed];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
[self.client URLProtocolDidFinishLoading:self];
self.connection = nil;
}
@end

现在是有趣的部分 - 修改发送到我的服务器的每个请求

所以首先:检查这个请求是否到达我的服务器并确定我的协议(protocol)是否应该处理它

+ (BOOL)canInitWithRequest:(NSURLRequest *)request
{
NSString *token = [[NSUserDefaults standardUserDefaults] stringForKey:kDefaultsKeyLoginToken];
NSString *hash = [[NSUserDefaults standardUserDefaults] stringForKey:kDefaultsKeyLoginHash];
if([NSURLProtocol propertyForKey:@"TokenSet" inRequest:request]) return NO; // We already handled it
if((hash == nil) || (token == nil) ) return NO; // We are not logged in
NSString *params = [NSString stringWithFormat:@"mobile=app&user_token=%@&user_hash=%@",token,hash];
if (([[[request URL] absoluteString] rangeOfString:BASE_URL].location != NSNotFound) && ([[[request URL] absoluteString] rangeOfString:@"/assets/"].location == NSNotFound)){
if([[[request URL] absoluteString] rangeOfString:params].location == NSNotFound){
return YES; // URL does not contain the login token & we're not requesting an asset (js/img/etc.)
}


}
return NO;
}

所以如果 + (BOOL)canInitWithRequest:(NSURLRequest *)request 返回 yes,我必须处理该请求。我已经知道它不包含登录 token 和哈希,所以我必须确定是否必须附加它。为了修改一般的请求,我创建了我们请求的 MutableCopy,修改它并将我们的 URLConnection 设置为请求。

- (void)startLoading
{
NSMutableURLRequest *newRequest = [self.request mutableCopy];
NSString *PreURL;
NSString *token = [[NSUserDefaults standardUserDefaults] stringForKey:kDefaultsKeyLoginToken];
NSString *hash = [[NSUserDefaults standardUserDefaults] stringForKey:kDefaultsKeyLoginHash];
NSString *params = [NSString stringWithFormat:@"mobile=app&user_token=%@&user_hash=%@",token,hash];
if([[newRequest URL] query] == nil) {
PreURL = [NSString stringWithFormat:@"%@?%@",[[newRequest URL] absoluteString],params];
}else{
if([[[newRequest URL] absoluteString] rangeOfString:params].location == NSNotFound){
PreURL = [NSString stringWithFormat:@"%@&%@",[[newRequest URL] absoluteString],params];
}
}
NSURL *nsurl = [NSURL URLWithString: PreURL];
[newRequest setURL:nsurl];
[NSURLProtocol setProperty:@"YES" forKey:@"TokenSet" inRequest:newRequest];
self.connection = [NSURLConnection connectionWithRequest:newRequest delegate:self];



}

为了完成这一切,我们将我们的 URL 协议(protocol)注册为 AppDelegate 中的协议(protocol)。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[NSURLProtocol registerClass:[MyURL class]];
}

有了这个解决方案,我首先拥有的优势是在我的应用程序的任何部分发送到我的服务器的任何请求中都有我的登录 token 。不用再担心这个了。而且我可以做一些很酷的事情,比如在第一次加载资源后节省资源,甚至可以在 Webviews 中使用我的 App-Bundle 中的图像......

我希望这对某人有所帮助。

关于ios - 修改webView的Request shouldStartLoadWithRequest :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23264338/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com