blob: 64d86b5eaa8bdcd9232430a33ad01ce70682fc0b (
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
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/net/http_response_headers_util.h"
#include <Foundation/Foundation.h>
#include "base/logging.h"
#include "base/strings/sys_string_conversions.h"
namespace {
// String format used to create the http status line from the status code and
// its localized description.
NSString* const kHttpStatusLineFormat = @"HTTP %ld %s";
// String format used to pass the header name/value pairs to the
// HttpResponseHeaders.
NSString* const kHeaderLineFormat = @"%@: %@";
}
namespace net {
const std::string kDummyHttpStatusDescription = "DummyStatusDescription";
scoped_refptr<HttpResponseHeaders> CreateHeadersFromNSHTTPURLResponse(
NSHTTPURLResponse* response) {
DCHECK(response);
// Create the status line and initialize the headers.
NSInteger status_code = response.statusCode;
std::string status_line = base::SysNSStringToUTF8([NSString
stringWithFormat:kHttpStatusLineFormat, static_cast<long>(status_code),
kDummyHttpStatusDescription.c_str()]);
scoped_refptr<HttpResponseHeaders> http_headers(
new HttpResponseHeaders(status_line));
// Iterate through |response|'s headers and add them to |http_headers|.
[response.allHeaderFields
enumerateKeysAndObjectsUsingBlock:^(NSString* header_name,
NSString* value, BOOL*) {
NSString* header_line =
[NSString stringWithFormat:kHeaderLineFormat, header_name, value];
http_headers->AddHeader(base::SysNSStringToUTF8(header_line));
}];
return http_headers.Pass();
}
} // namespae net
|