NSURLProtocal子類的使用

//緩存

//  CustomURLProtocol.mui

//  NSURLProtocolExampleatom

//url

//  Created by lujb on 15/6/15.對象

//  Copyright (c) 2015年 lujb. All rights reserved.ip

//ci

 

#import "CustomURLProtocol.h"string

 

static NSString * const URLProtocolHandledKey = @"URLProtocolHandledKey";it

 

@interface CustomURLProtocol ()<NSURLConnectionDelegate>io

 

@property (nonatomic, strong) NSURLConnection *connection;

 

@end

 

@implementation CustomURLProtocol

 

+ (BOOL)canInitWithRequest:(NSURLRequest *)request

{

    //只處理http和https請求

    NSString *scheme = [[request URL] scheme];

    if ( ([scheme caseInsensitiveCompare:@"http"] == NSOrderedSame ||

     [scheme caseInsensitiveCompare:@"https"] == NSOrderedSame))

    {

        //看看是否已經處理過了,防止無限循環

        if ([NSURLProtocol propertyForKey:URLProtocolHandledKey inRequest:request]) {

            return NO;

        }

        

        return YES;

    }

    return NO;

}

 

+ (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {

    NSMutableURLRequest *mutableReqeust = [request mutableCopy];

    mutableReqeust = [self redirectHostInRequset:mutableReqeust];

    

    

    return [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.baidu.com"]];

}

 

+ (BOOL)requestIsCacheEquivalent:(NSURLRequest *)a toRequest:(NSURLRequest *)b

{

    return [super requestIsCacheEquivalent:a toRequest:b];

}

 

- (void)startLoading

{

    /* 若是想直接返回緩存的結果,構建一個NSURLResponse對象

    if (cachedResponse) {

        

        NSData *data = cachedResponse.data; //緩存的數據

        NSString *mimeType = cachedResponse.mimeType;

        NSString *encoding = cachedResponse.encoding;

        

        NSURLResponse *response = [[NSURLResponse alloc] initWithURL:self.request.URL

                                                            MIMEType:mimeType

                                               expectedContentLength:data.length

                                                    textEncodingName:encoding];

        

        [self.client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];

        [self.client URLProtocol:self didLoadData:data];

        [self.client URLProtocolDidFinishLoading:self];

    */

    

    NSMutableURLRequest *mutableReqeust = [[self request] mutableCopy];

    

    //打標籤,防止無限循環

    [NSURLProtocol setProperty:@YES forKey:URLProtocolHandledKey inRequest:mutableReqeust];

    

    self.connection = [NSURLConnection connectionWithRequest:mutableReqeust delegate:self];

}

 

- (void)stopLoading

{

    [self.connection cancel];

}

 

#pragma mark - NSURLConnectionDelegate

 

- (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {

    [self.client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];

}

 

- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {

    [self.client URLProtocol:self didLoadData:data];

}

 

- (void) connectionDidFinishLoading:(NSURLConnection *)connection {

    [self.client URLProtocolDidFinishLoading:self];

}

 

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

    [self.client URLProtocol:self didFailWithError:error];

}

 

#pragma mark -- private

 

+(NSMutableURLRequest*)redirectHostInRequset:(NSMutableURLRequest*)request

{

    if ([request.URL host].length == 0) {

        return request;

    }

    

    NSString *originUrlString = [request.URL absoluteString];

    NSString *originHostString = [request.URL host];

    NSRange hostRange = [originUrlString rangeOfString:originHostString];

    if (hostRange.location == NSNotFound) {

        return request;

    }

    

    //定向到bing搜索主頁

    NSString *ip = @"cn.bing.com";

    

    // 替換host

    NSString *urlString = [originUrlString stringByReplacingCharactersInRange:hostRange withString:ip];

    NSURL *url = [NSURL URLWithString:urlString];

    request.URL = url;

 

    return request;

}

@end

相關文章
相關標籤/搜索