Fixed cloud uploading on iOS

This commit is contained in:
r.kuznetsov 2018-04-24 12:08:10 +03:00 committed by Aleksandr Zatsepin
parent bed91e9d0c
commit 313a4116f5
2 changed files with 10 additions and 10 deletions

View file

@ -10,11 +10,6 @@
#include <memory>
namespace
{
auto const kTimeout = std::chrono::seconds(5);
}
namespace platform
{
HttpUploader::Result HttpUploader::Upload() const
@ -43,9 +38,8 @@ HttpUploader::Result HttpUploader::Upload() const
resultPtr->m_description = description.UTF8String;
waiterPtr->Notify();
}];
if (waiterPtr->Wait(kTimeout) == base::Waiter::Result::NoTimeout)
return *resultPtr;
waiterPtr->Wait();
return *resultPtr;
#endif
return {};
}

View file

@ -2,6 +2,12 @@ import Foundation
import Alamofire
final class MultipartUploader: NSObject {
static var manager: Alamofire.SessionManager = {
let configuration = URLSessionConfiguration.default
configuration.timeoutIntervalForRequest = 5
return Alamofire.SessionManager(configuration: configuration)
}()
@objc
static func upload(method: String, url: String, fileKey: String, filePath: String, params: [String: String], headers: [String: String], callback: @escaping (Int, String) -> Void) {
@ -13,8 +19,8 @@ final class MultipartUploader: NSObject {
}
let method = HTTPMethod(rawValue: method) ?? .post
Alamofire.upload(multipartFormData: multipartFormData, to: url, method: method, headers: headers) { encodingResult in
manager.upload(multipartFormData: multipartFormData, to: url, method: method, headers: headers) { encodingResult in
switch encodingResult {
case let .success(upload, _, _):
upload.responseJSON { callback($0.response?.statusCode ?? -1, $0.error?.localizedDescription ?? "") }