blob: 4a3a78112936f5dc9cf699ad92f03676f22c1443 [file] [log] [blame]
Alex Vakulenko9cd5e272014-04-25 17:26:11 -07001// Copyright 2014 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "buffet/http_transport_fake.h"
6
Alex Vakulenko8e34d392014-04-29 11:02:56 -07007#include <base/json/json_reader.h>
Alex Vakulenko9cd5e272014-04-25 17:26:11 -07008#include <base/json/json_writer.h>
Alex Vakulenkof8545912014-04-30 12:25:19 -07009#include <base/logging.h>
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070010
Alex Vakulenko8e34d392014-04-29 11:02:56 -070011#include "buffet/bind_lambda.h"
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070012#include "buffet/http_connection_fake.h"
13#include "buffet/http_request.h"
14#include "buffet/mime_utils.h"
15#include "buffet/url_utils.h"
16
17using namespace chromeos;
18using namespace chromeos::http::fake;
19
20Transport::Transport() {
21 VLOG(1) << "fake::Transport created";
22}
23
24Transport::~Transport() {
25 VLOG(1) << "fake::Transport destroyed";
26}
27
28std::unique_ptr<http::Connection> Transport::CreateConnection(
29 std::shared_ptr<http::Transport> transport,
30 const std::string& url,
31 const std::string& method,
32 const HeaderList& headers,
33 const std::string& user_agent,
34 const std::string& referer,
35 std::string* error_msg) {
36 HeaderList headers_copy = headers;
37 if (!user_agent.empty()) {
38 headers_copy.push_back(std::make_pair(http::request_header::kUserAgent,
39 user_agent));
40 }
41 if (!referer.empty()) {
42 headers_copy.push_back(std::make_pair(http::request_header::kReferer,
43 referer));
44 }
45 std::unique_ptr<http::Connection> connection(
46 new http::fake::Connection(url, method, transport));
47 CHECK(connection) << "Unable to create Connection object";
48 if (!connection->SendHeaders(headers_copy)) {
49 connection.reset();
50 if (error_msg)
51 *error_msg = "Failed to send request headers";
52 }
Alex Vakulenko8e34d392014-04-29 11:02:56 -070053 request_count_++;
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070054 return connection;
55}
56
57static inline std::string GetHandlerMapKey(const std::string& url,
58 const std::string& method) {
59 return method + ":" + url;
60}
61
62void Transport::AddHandler(const std::string& url, const std::string& method,
63 const HandlerCallback& handler) {
64 handlers_.insert(std::make_pair(GetHandlerMapKey(url, method), handler));
65}
66
Alex Vakulenko8e34d392014-04-29 11:02:56 -070067void Transport::AddSimpleReplyHandler(const std::string& url,
68 const std::string& method,
69 int status_code,
70 const std::string& reply_text,
71 const std::string& mime_type) {
72 auto handler = [status_code, reply_text, mime_type](
73 const ServerRequest& request, ServerResponse* response) {
74 response->ReplyText(status_code, reply_text, mime_type.c_str());
75 };
76 AddHandler(url, method, base::Bind(handler));
77}
78
Alex Vakulenko9cd5e272014-04-25 17:26:11 -070079Transport::HandlerCallback Transport::GetHandler(
80 const std::string& url, const std::string& method) const {
81 // First try the exact combination of URL/Method
82 auto p = handlers_.find(GetHandlerMapKey(url, method));
83 if (p != handlers_.end())
84 return p->second;
85 // If not found, try URL/*
86 p = handlers_.find(GetHandlerMapKey(url, "*"));
87 if (p != handlers_.end())
88 return p->second;
89 // If still not found, try */method
90 p = handlers_.find(GetHandlerMapKey("*", method));
91 if (p != handlers_.end())
92 return p->second;
93 // Finally, try */*
94 p = handlers_.find(GetHandlerMapKey("*", "*"));
95 return (p != handlers_.end()) ? p->second : HandlerCallback();
96}
97
98void ServerRequestResponseBase::AddData(const void* data, size_t data_size) {
99 auto bytes = reinterpret_cast<const unsigned char*>(data);
100 data_.insert(data_.end(), bytes, bytes + data_size);
101}
102
103std::string ServerRequestResponseBase::GetDataAsString() const {
104 if (data_.empty())
105 return std::string();
106 auto chars = reinterpret_cast<const char*>(data_.data());
107 return std::string(chars, data_.size());
108}
109
Alex Vakulenko8e34d392014-04-29 11:02:56 -0700110std::unique_ptr<base::DictionaryValue>
111 ServerRequestResponseBase::GetDataAsJson() const {
112 if (mime::RemoveParameters(GetHeader(request_header::kContentType)) ==
113 mime::application::kJson) {
114 auto value = base::JSONReader::Read(GetDataAsString());
115 if (value) {
116 base::DictionaryValue* dict = nullptr;
117 if (value->GetAsDictionary(&dict)) {
118 return std::unique_ptr<base::DictionaryValue>(dict);
119 } else {
120 delete value;
121 }
122 }
123 }
124 return std::unique_ptr<base::DictionaryValue>();
125}
126
Alex Vakulenko9cd5e272014-04-25 17:26:11 -0700127void ServerRequestResponseBase::AddHeaders(const HeaderList& headers) {
128 for (auto&& pair : headers) {
129 if (pair.second.empty())
130 headers_.erase(pair.first);
131 else
132 headers_.insert(pair);
133 }
134}
135
136std::string ServerRequestResponseBase::GetHeader(
137 const std::string& header_name) const {
138 auto p = headers_.find(header_name);
139 return p != headers_.end() ? p->second : std::string();
140}
141
142ServerRequest::ServerRequest(const std::string& url,
143 const std::string& method) : method_(method) {
144 auto params = url::GetQueryStringParameters(url);
145 url_ = url::RemoveQueryString(url, true);
146 form_fields_.insert(params.begin(), params.end());
147}
148
149std::string ServerRequest::GetFormField(const std::string& field_name) const {
150 if (!form_fields_parsed_) {
151 std::string mime_type = mime::RemoveParameters(
152 GetHeader(request_header::kContentType));
153 if (mime_type == mime::application::kWwwFormUrlEncoded &&
154 !GetData().empty()) {
155 auto fields = data_encoding::WebParamsDecode(GetDataAsString());
156 form_fields_.insert(fields.begin(), fields.end());
157 }
158 form_fields_parsed_ = true;
159 }
160 auto p = form_fields_.find(field_name);
161 return p != form_fields_.end() ? p->second : std::string();
162}
163
164void ServerResponse::Reply(int status_code, const void* data, size_t data_size,
165 const char* mime_type) {
166 data_.clear();
167 status_code_ = status_code;
168 AddData(data, data_size);
169 AddHeaders({
170 {response_header::kContentLength, std::to_string(data_size)},
171 {response_header::kContentType, mime_type}
172 });
173}
174
175void ServerResponse::ReplyText(int status_code, const std::string& text,
176 const char* mime_type) {
177 Reply(status_code, text.data(), text.size(), mime_type);
178}
179
180void ServerResponse::ReplyJson(int status_code, const base::Value* json) {
181 std::string text;
182 base::JSONWriter::WriteWithOptions(json,
183 base::JSONWriter::OPTIONS_PRETTY_PRINT,
184 &text);
Alex Vakulenko8e34d392014-04-29 11:02:56 -0700185 std::string mime_type = mime::AppendParameter(mime::application::kJson,
186 mime::parameters::kCharset,
187 "utf-8");
188 ReplyText(status_code, text, mime_type.c_str());
189}
190
191void ServerResponse::ReplyJson(int status_code,
192 const http::FormFieldList& fields) {
193 base::DictionaryValue json;
194 for (auto&& pair : fields) {
195 json.SetString(pair.first, pair.second);
196 }
197 ReplyJson(status_code, &json);
Alex Vakulenko9cd5e272014-04-25 17:26:11 -0700198}
199
200std::string ServerResponse::GetStatusText() const {
201 static std::vector<std::pair<int, const char*>> status_text_map = {
202 {100, "Continue"},
203 {101, "Switching Protocols"},
204 {102, "Processing"},
205 {200, "OK"},
206 {201, "Created"},
207 {202, "Accepted"},
208 {203, "Non-Authoritative Information"},
209 {204, "No Content"},
210 {205, "Reset Content"},
211 {206, "Partial Content"},
212 {207, "Multi-Status"},
213 {208, "Already Reported"},
214 {226, "IM Used"},
215 {300, "Multiple Choices"},
216 {301, "Moved Permanently"},
217 {302, "Found"},
218 {303, "See Other"},
219 {304, "Not Modified"},
220 {305, "Use Proxy"},
221 {306, "Switch Proxy"},
222 {307, "Temporary Redirect"},
223 {308, "Permanent Redirect"},
224 {400, "Bad Request"},
225 {401, "Unauthorized"},
226 {402, "Payment Required"},
227 {403, "Forbidden"},
228 {404, "Not Found"},
229 {405, "Method Not Allowed"},
230 {406, "Not Acceptable"},
231 {407, "Proxy Authentication Required"},
232 {408, "Request Timeout"},
233 {409, "Conflict"},
234 {410, "Gone"},
235 {411, "Length Required"},
236 {412, "Precondition Failed"},
237 {413, "Request Entity Too Large"},
238 {414, "Request - URI Too Long"},
239 {415, "Unsupported Media Type"},
240 {429, "Too Many Requests"},
241 {431, "Request Header Fields Too Large"},
242 {500, "Internal Server Error"},
243 {501, "Not Implemented"},
244 {502, "Bad Gateway"},
245 {503, "Service Unavailable"},
246 {504, "Gateway Timeout"},
247 {505, "HTTP Version Not Supported"},
248 };
249
250 for (auto&& pair : status_text_map) {
251 if (pair.first == status_code_)
252 return pair.second;
253 }
254 return std::string();
255}