mirror of
				https://github.com/SoPat712/YTLitePlus.git
				synced 2025-10-31 04:44:14 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| //
 | |
| // FLEXCurlLogger.m
 | |
| //
 | |
| //
 | |
| // Created by Ji Pei on 07/27/16
 | |
| //
 | |
| 
 | |
| #import "FLEXNetworkCurlLogger.h"
 | |
| 
 | |
| @implementation FLEXNetworkCurlLogger
 | |
| 
 | |
| + (NSString *)curlCommandString:(NSURLRequest *)request {
 | |
|     __block NSMutableString *curlCommandString = [NSMutableString stringWithFormat:@"curl -v -X %@ ", request.HTTPMethod];
 | |
| 
 | |
|     [curlCommandString appendFormat:@"\'%@\' ", request.URL.absoluteString];
 | |
| 
 | |
|     [request.allHTTPHeaderFields enumerateKeysAndObjectsUsingBlock:^(NSString *key, NSString *val, BOOL *stop) {
 | |
|         [curlCommandString appendFormat:@"-H \'%@: %@\' ", key, val];
 | |
|     }];
 | |
| 
 | |
|     NSArray<NSHTTPCookie *> *cookies = [NSHTTPCookieStorage.sharedHTTPCookieStorage cookiesForURL:request.URL];
 | |
|     if (cookies) {
 | |
|         [curlCommandString appendFormat:@"-H \'Cookie:"];
 | |
|         for (NSHTTPCookie *cookie in cookies) {
 | |
|             [curlCommandString appendFormat:@" %@=%@;", cookie.name, cookie.value];
 | |
|         }
 | |
|         [curlCommandString appendFormat:@"\' "];
 | |
|     }
 | |
| 
 | |
|     if (request.HTTPBody) {
 | |
|         NSString *body = [[NSString alloc] initWithData:request.HTTPBody encoding:NSUTF8StringEncoding];
 | |
|         [curlCommandString appendFormat:@"-d \'%@\'", body];
 | |
|     }
 | |
| 
 | |
|     return curlCommandString;
 | |
| }
 | |
| 
 | |
| @end
 | 
