Welcome to mirror list, hosted at ThFree Co, Russian Federation.

http_uploader_apple.mm « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94b226f467f42c2bf3a1a31f30bd810f904cd35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#import <Foundation/Foundation.h>

#include "platform/http_uploader.hpp"

#include "base/assert.hpp"
#include "base/waiter.hpp"

#include <memory>

#include "private.h"

@interface IdentityAndTrust : NSObject

@property(nonatomic) SecIdentityRef identityRef;
@property(nonatomic) NSArray * certArray;

@end

@implementation IdentityAndTrust

- (instancetype)initWithIdentity:(CFTypeRef)identity certChain:(CFTypeRef)certs
{
  self = [super init];
  if (self)
  {
    _identityRef = (SecIdentityRef)CFRetain(identity);
    _certArray = (__bridge_transfer NSArray *)CFRetain(certs);
  }
  
  return self;
}

- (void)dealloc
{
  CFRelease(_identityRef);
}

@end

@interface MultipartUploadTask : NSObject<NSURLSessionDelegate>

@property(copy, nonatomic) NSString * method;
@property(copy, nonatomic) NSString * urlString;
@property(copy, nonatomic) NSString * fileKey;
@property(copy, nonatomic) NSString * filePath;
@property(copy, nonatomic) NSDictionary<NSString *, NSString *> * params;
@property(copy, nonatomic) NSDictionary<NSString *, NSString *> * headers;

@end

@implementation MultipartUploadTask

- (NSData *)requestDataWithBoundary:(NSString *)boundary {
  NSMutableData * data = [NSMutableData data];

  [self.params enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * value, BOOL * stop) {
    [data appendData:[[NSString stringWithFormat:@"--%@\r\n", boundary]
                         dataUsingEncoding:NSUTF8StringEncoding]];
    [data appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n",
                          key] dataUsingEncoding:NSUTF8StringEncoding]];
    [data appendData:[[NSString stringWithFormat:@"%@\r\n", value]
                         dataUsingEncoding:NSUTF8StringEncoding]];
  }];

  NSString * fileName = self.filePath.lastPathComponent;
  NSData * fileData = [NSData dataWithContentsOfFile:self.filePath];
  NSString * mimeType = @"application/octet-stream";

  [data appendData:[[NSString stringWithFormat:@"--%@\r\n", boundary]
                       dataUsingEncoding:NSUTF8StringEncoding]];
  [data appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n",
                        self.fileKey,
                        fileName]
                       dataUsingEncoding:NSUTF8StringEncoding]];
  [data appendData:[[NSString stringWithFormat:@"Content-Type: %@\r\n\r\n", mimeType]
                      dataUsingEncoding:NSUTF8StringEncoding]];
  [data appendData:fileData];
  [data appendData:[@"\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
  [data appendData:[[NSString stringWithFormat:@"--%@--", boundary]
                                      dataUsingEncoding:NSUTF8StringEncoding]];

  return data;
}

- (void)uploadWithCompletion:(void (^)(NSInteger httpCode, NSString *description))completion {
  NSURL * url = [NSURL URLWithString:self.urlString];
  NSMutableURLRequest * uploadRequest = [NSMutableURLRequest requestWithURL:url];
  uploadRequest.timeoutInterval = 15;
  uploadRequest.HTTPMethod = self.method;

  NSString * boundary = [NSString stringWithFormat:@"Boundary-%@", [[NSUUID UUID] UUIDString]];
  NSString * contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundary];
  [uploadRequest setValue:contentType forHTTPHeaderField:@"Content-Type"];
  
  [self.headers enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * value, BOOL * stop) {
    [uploadRequest setValue:value forHTTPHeaderField:key];
  }];

  NSData * postData = [self requestDataWithBoundary:boundary];

  NSURLSession * session =
      [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]
                                    delegate:self
                               delegateQueue:nil];
  NSURLSessionUploadTask * uploadTask = [session
      uploadTaskWithRequest:uploadRequest
                   fromData:postData
          completionHandler:^(NSData * data, NSURLResponse * response, NSError * error) {
            NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *)response;
            if (error == nil)
            {
              NSString * description = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
              completion(httpResponse.statusCode, description);
            }
            else
            {
              completion(-1, error.localizedDescription);
            }
          }];
  [uploadTask resume];
}

- (void)URLSession:(NSURLSession *)session
    didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge
      completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition,
                                  NSURLCredential * _Nullable credential))completionHandler
{
  NSString * authenticationMethod = challenge.protectionSpace.authenticationMethod;
  if (authenticationMethod == NSURLAuthenticationMethodClientCertificate)
  {
    completionHandler(NSURLSessionAuthChallengeUseCredential, [self getClientUrlCredential]);
  }
  else if (authenticationMethod == NSURLAuthenticationMethodServerTrust)
  {
#if DEBUG
    NSURLCredential * credential =
        [[NSURLCredential alloc] initWithTrust:[challenge protectionSpace].serverTrust];
    completionHandler(NSURLSessionAuthChallengeUseCredential, credential);
#else
    completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
#endif
  }
}

- (NSURLCredential *)getClientUrlCredential
{
  NSData * certData = [[NSData alloc] initWithBase64EncodedString:@USER_BINDING_PKCS12 options:0];
  IdentityAndTrust * identity = [self extractIdentityWithCertData:certData
                                                     certPassword:@USER_BINDING_PKCS12_PASSWORD];

  NSURLCredential * urlCredential =
      [[NSURLCredential alloc] initWithIdentity:identity.identityRef
                                   certificates:identity.certArray
                                    persistence:NSURLCredentialPersistenceForSession];

  return urlCredential;
}

- (IdentityAndTrust *)extractIdentityWithCertData:(NSData *)certData
                                     certPassword:(NSString *)certPassword
{
  IdentityAndTrust * identityAndTrust;

  NSDictionary * certOptions = @{(NSString *)kSecImportExportPassphrase : certPassword};

  CFArrayRef items = nullptr;
  OSStatus status = SecPKCS12Import((CFDataRef)certData, (CFDictionaryRef)certOptions, &items);
  
  if (status == errSecSuccess && CFArrayGetCount(items) > 0)
  {
    CFDictionaryRef firstItem = (CFDictionaryRef)CFArrayGetValueAtIndex(items, 0);
    
    CFTypeRef identityRef = CFDictionaryGetValue(firstItem, kSecImportItemIdentity);
    CFTypeRef certChainRef = CFDictionaryGetValue(firstItem, kSecImportItemCertChain);

    identityAndTrust = [[IdentityAndTrust alloc] initWithIdentity:identityRef
                                                        certChain:certChainRef];
    
    CFRelease(items);
  }

  return identityAndTrust;
}

@end

namespace platform
{
HttpUploader::Result HttpUploader::Upload() const
{
  std::shared_ptr<Result> resultPtr = std::make_shared<Result>();
  std::shared_ptr<base::Waiter> waiterPtr = std::make_shared<base::Waiter>();

  auto mapTransform =
      ^NSDictionary<NSString *, NSString *> * (std::map<std::string, std::string> keyValues)
  {
    NSMutableDictionary<NSString *, NSString *> * params = [NSMutableDictionary dictionary];
    for (auto const & keyValue : keyValues)
      params[@(keyValue.first.c_str())] = @(keyValue.second.c_str());
    return [params copy];
  };

  auto uploadTask = [[MultipartUploadTask alloc] init];
  uploadTask.method = @(m_payload.m_method.c_str());
  uploadTask.urlString = @(m_payload.m_url.c_str());
  uploadTask.fileKey = @(m_payload.m_fileKey.c_str());
  uploadTask.filePath = @(m_payload.m_filePath.c_str());
  uploadTask.params = mapTransform(m_payload.m_params);
  uploadTask.headers = mapTransform(m_payload.m_headers);
  [uploadTask uploadWithCompletion:[resultPtr, waiterPtr](NSInteger httpCode, NSString * description) {
    resultPtr->m_httpCode = static_cast<int32_t>(httpCode);
    resultPtr->m_description = description.UTF8String;
    waiterPtr->Notify();
  }];
  waiterPtr->Wait();
  return *resultPtr;
}
} // namespace platform