2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework 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 "libcef/common/response_impl.h"
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
#include <string>
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "base/logging.h"
|
2013-06-22 04:06:32 +02:00
|
|
|
#include "base/strings/stringprintf.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
#include "net/http/http_request_headers.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "net/http/http_response_headers.h"
|
2015-03-11 19:44:11 +01:00
|
|
|
#include "net/url_request/url_request.h"
|
2013-06-22 04:06:32 +02:00
|
|
|
#include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h"
|
|
|
|
#include "third_party/WebKit/public/platform/WebString.h"
|
|
|
|
#include "third_party/WebKit/public/platform/WebURLResponse.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define CHECK_READONLY_RETURN_VOID() \
|
|
|
|
if (read_only_) { \
|
|
|
|
NOTREACHED() << "object is read only"; \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CefResponse ----------------------------------------------------------------
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefResponse> CefResponse::Create() {
|
|
|
|
CefRefPtr<CefResponse> response(new CefResponseImpl());
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CefResponseImpl ------------------------------------------------------------
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
CefResponseImpl::CefResponseImpl()
|
2012-06-19 18:29:49 +02:00
|
|
|
: status_code_(0),
|
|
|
|
read_only_(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefResponseImpl::IsReadOnly() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
return read_only_;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int CefResponseImpl::GetStatus() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return status_code_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefResponseImpl::SetStatus(int status) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
CHECK_READONLY_RETURN_VOID();
|
2012-04-03 03:34:16 +02:00
|
|
|
status_code_ = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefResponseImpl::GetStatusText() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return status_text_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefResponseImpl::SetStatusText(const CefString& statusText) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
CHECK_READONLY_RETURN_VOID();
|
2012-04-03 03:34:16 +02:00
|
|
|
status_text_ = statusText;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefResponseImpl::GetMimeType() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return mime_type_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefResponseImpl::SetMimeType(const CefString& mimeType) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
CHECK_READONLY_RETURN_VOID();
|
2012-04-03 03:34:16 +02:00
|
|
|
mime_type_ = mimeType;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefResponseImpl::GetHeader(const CefString& name) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
CefString value;
|
|
|
|
|
|
|
|
HeaderMap::const_iterator it = header_map_.find(name);
|
|
|
|
if (it != header_map_.end())
|
|
|
|
value = it->second;
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefResponseImpl::GetHeaderMap(HeaderMap& map) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
map = header_map_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefResponseImpl::SetHeaderMap(const HeaderMap& headerMap) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
CHECK_READONLY_RETURN_VOID();
|
2012-04-03 03:34:16 +02:00
|
|
|
header_map_ = headerMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
net::HttpResponseHeaders* CefResponseImpl::GetResponseHeaders() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
std::string response;
|
|
|
|
std::string status_text;
|
2012-06-19 18:29:49 +02:00
|
|
|
bool has_content_type_header = false;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
if (!status_text_.empty())
|
2012-04-03 03:34:16 +02:00
|
|
|
status_text = status_text_;
|
2012-06-19 18:29:49 +02:00
|
|
|
else
|
|
|
|
status_text = (status_code_ == 200)?"OK":"ERROR";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
base::SStringPrintf(&response, "HTTP/1.1 %d %s", status_code_,
|
|
|
|
status_text.c_str());
|
|
|
|
if (header_map_.size() > 0) {
|
|
|
|
for (HeaderMap::const_iterator header = header_map_.begin();
|
|
|
|
header != header_map_.end();
|
|
|
|
++header) {
|
|
|
|
const CefString& key = header->first;
|
|
|
|
const CefString& value = header->second;
|
|
|
|
|
|
|
|
if (!key.empty()) {
|
|
|
|
// Delimit with "\0" as required by net::HttpResponseHeaders.
|
|
|
|
std::string key_str(key);
|
|
|
|
std::string value_str(value);
|
|
|
|
base::StringAppendF(&response, "%c%s: %s", '\0', key_str.c_str(),
|
|
|
|
value_str.c_str());
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
if (!has_content_type_header &&
|
|
|
|
key_str == net::HttpRequestHeaders::kContentType) {
|
|
|
|
has_content_type_header = true;
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
if (!has_content_type_header) {
|
|
|
|
std::string mime_type;
|
|
|
|
if (!mime_type_.empty())
|
|
|
|
mime_type = mime_type_;
|
|
|
|
else
|
|
|
|
mime_type = "text/html";
|
|
|
|
|
|
|
|
base::StringAppendF(&response, "%c%s: %s", '\0',
|
|
|
|
net::HttpRequestHeaders::kContentType, mime_type.c_str());
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
return new net::HttpResponseHeaders(response);
|
|
|
|
}
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
void CefResponseImpl::SetResponseHeaders(
|
|
|
|
const net::HttpResponseHeaders& headers) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2015-03-11 19:44:11 +01:00
|
|
|
CHECK_READONLY_RETURN_VOID();
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
header_map_.empty();
|
|
|
|
|
|
|
|
void* iter = NULL;
|
|
|
|
std::string name, value;
|
|
|
|
while (headers.EnumerateHeaderLines(&iter, &name, &value))
|
|
|
|
header_map_.insert(std::make_pair(name, value));
|
|
|
|
|
|
|
|
status_code_ = headers.response_code();
|
|
|
|
status_text_ = headers.GetStatusText();
|
|
|
|
|
|
|
|
std::string mime_type;
|
|
|
|
if (headers.GetMimeType(&mime_type))
|
|
|
|
mime_type_ = mime_type;
|
2015-03-11 19:44:11 +01:00
|
|
|
else
|
|
|
|
mime_type_.clear();
|
2012-06-19 18:29:49 +02:00
|
|
|
}
|
|
|
|
|
2013-11-08 22:28:56 +01:00
|
|
|
void CefResponseImpl::Set(const blink::WebURLResponse& response) {
|
2012-06-19 18:29:49 +02:00
|
|
|
DCHECK(!response.isNull());
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
CHECK_READONLY_RETURN_VOID();
|
|
|
|
|
2013-11-08 22:28:56 +01:00
|
|
|
blink::WebString str;
|
2012-06-19 18:29:49 +02:00
|
|
|
status_code_ = response.httpStatusCode();
|
|
|
|
str = response.httpStatusText();
|
|
|
|
status_text_ = CefString(str);
|
|
|
|
str = response.mimeType();
|
|
|
|
mime_type_ = CefString(str);
|
|
|
|
|
2013-11-08 22:28:56 +01:00
|
|
|
class HeaderVisitor : public blink::WebHTTPHeaderVisitor {
|
2012-06-19 18:29:49 +02:00
|
|
|
public:
|
|
|
|
explicit HeaderVisitor(HeaderMap* map) : map_(map) {}
|
|
|
|
|
2014-11-12 20:25:15 +01:00
|
|
|
void visitHeader(const blink::WebString& name,
|
|
|
|
const blink::WebString& value) override {
|
2013-12-17 23:04:35 +01:00
|
|
|
map_->insert(std::make_pair(base::string16(name),
|
|
|
|
base::string16(value)));
|
2012-06-19 18:29:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
HeaderMap* map_;
|
|
|
|
};
|
|
|
|
|
|
|
|
HeaderVisitor visitor(&header_map_);
|
|
|
|
response.visitHTTPHeaderFields(&visitor);
|
|
|
|
}
|
|
|
|
|
2015-03-11 19:44:11 +01:00
|
|
|
void CefResponseImpl::Set(const net::URLRequest* request) {
|
|
|
|
DCHECK(request);
|
|
|
|
|
|
|
|
const net::HttpResponseHeaders* headers = request->response_headers();
|
|
|
|
if (headers)
|
|
|
|
SetResponseHeaders(*headers);
|
|
|
|
}
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
void CefResponseImpl::SetReadOnly(bool read_only) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-06-19 18:29:49 +02:00
|
|
|
read_only_ = read_only;
|
|
|
|
}
|