xref: /aosp_15_r20/external/ot-br-posix/src/rest/response.cpp (revision 4a64e381480ef79f0532b2421e44e6ee336b8e0d)
1*4a64e381SAndroid Build Coastguard Worker /*
2*4a64e381SAndroid Build Coastguard Worker  *  Copyright (c) 2020, The OpenThread Authors.
3*4a64e381SAndroid Build Coastguard Worker  *  All rights reserved.
4*4a64e381SAndroid Build Coastguard Worker  *
5*4a64e381SAndroid Build Coastguard Worker  *  Redistribution and use in source and binary forms, with or without
6*4a64e381SAndroid Build Coastguard Worker  *  modification, are permitted provided that the following conditions are met:
7*4a64e381SAndroid Build Coastguard Worker  *  1. Redistributions of source code must retain the above copyright
8*4a64e381SAndroid Build Coastguard Worker  *     notice, this list of conditions and the following disclaimer.
9*4a64e381SAndroid Build Coastguard Worker  *  2. Redistributions in binary form must reproduce the above copyright
10*4a64e381SAndroid Build Coastguard Worker  *     notice, this list of conditions and the following disclaimer in the
11*4a64e381SAndroid Build Coastguard Worker  *     documentation and/or other materials provided with the distribution.
12*4a64e381SAndroid Build Coastguard Worker  *  3. Neither the name of the copyright holder nor the
13*4a64e381SAndroid Build Coastguard Worker  *     names of its contributors may be used to endorse or promote products
14*4a64e381SAndroid Build Coastguard Worker  *     derived from this software without specific prior written permission.
15*4a64e381SAndroid Build Coastguard Worker  *
16*4a64e381SAndroid Build Coastguard Worker  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17*4a64e381SAndroid Build Coastguard Worker  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18*4a64e381SAndroid Build Coastguard Worker  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19*4a64e381SAndroid Build Coastguard Worker  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20*4a64e381SAndroid Build Coastguard Worker  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21*4a64e381SAndroid Build Coastguard Worker  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22*4a64e381SAndroid Build Coastguard Worker  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23*4a64e381SAndroid Build Coastguard Worker  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24*4a64e381SAndroid Build Coastguard Worker  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25*4a64e381SAndroid Build Coastguard Worker  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26*4a64e381SAndroid Build Coastguard Worker  *  POSSIBILITY OF SUCH DAMAGE.
27*4a64e381SAndroid Build Coastguard Worker  */
28*4a64e381SAndroid Build Coastguard Worker 
29*4a64e381SAndroid Build Coastguard Worker #include "rest/response.hpp"
30*4a64e381SAndroid Build Coastguard Worker 
31*4a64e381SAndroid Build Coastguard Worker #include <stdio.h>
32*4a64e381SAndroid Build Coastguard Worker 
33*4a64e381SAndroid Build Coastguard Worker #define OT_REST_RESPONSE_ACCESS_CONTROL_ALLOW_ORIGIN "*"
34*4a64e381SAndroid Build Coastguard Worker #define OT_REST_RESPONSE_ACCESS_CONTROL_ALLOW_HEADERS                                                              \
35*4a64e381SAndroid Build Coastguard Worker     "Access-Control-Allow-Headers, Origin,Accept, X-Requested-With, Content-Type, Access-Control-Request-Method, " \
36*4a64e381SAndroid Build Coastguard Worker     "Access-Control-Request-Headers"
37*4a64e381SAndroid Build Coastguard Worker #define OT_REST_RESPONSE_ACCESS_CONTROL_ALLOW_METHOD "DELETE, GET, OPTIONS, PUT"
38*4a64e381SAndroid Build Coastguard Worker #define OT_REST_RESPONSE_CONNECTION "close"
39*4a64e381SAndroid Build Coastguard Worker 
40*4a64e381SAndroid Build Coastguard Worker namespace otbr {
41*4a64e381SAndroid Build Coastguard Worker namespace rest {
42*4a64e381SAndroid Build Coastguard Worker 
Response(void)43*4a64e381SAndroid Build Coastguard Worker Response::Response(void)
44*4a64e381SAndroid Build Coastguard Worker     : mCallback(false)
45*4a64e381SAndroid Build Coastguard Worker     , mComplete(false)
46*4a64e381SAndroid Build Coastguard Worker {
47*4a64e381SAndroid Build Coastguard Worker     // HTTP protocol
48*4a64e381SAndroid Build Coastguard Worker     mProtocol = "HTTP/1.1";
49*4a64e381SAndroid Build Coastguard Worker 
50*4a64e381SAndroid Build Coastguard Worker     // Pre-defined headers
51*4a64e381SAndroid Build Coastguard Worker     mHeaders[OT_REST_CONTENT_TYPE_HEADER]    = OT_REST_CONTENT_TYPE_JSON;
52*4a64e381SAndroid Build Coastguard Worker     mHeaders["Access-Control-Allow-Origin"]  = OT_REST_RESPONSE_ACCESS_CONTROL_ALLOW_ORIGIN;
53*4a64e381SAndroid Build Coastguard Worker     mHeaders["Access-Control-Allow-Methods"] = OT_REST_RESPONSE_ACCESS_CONTROL_ALLOW_METHOD;
54*4a64e381SAndroid Build Coastguard Worker     mHeaders["Access-Control-Allow-Headers"] = OT_REST_RESPONSE_ACCESS_CONTROL_ALLOW_HEADERS;
55*4a64e381SAndroid Build Coastguard Worker     mHeaders["Connection"]                   = OT_REST_RESPONSE_CONNECTION;
56*4a64e381SAndroid Build Coastguard Worker }
57*4a64e381SAndroid Build Coastguard Worker 
SetComplete()58*4a64e381SAndroid Build Coastguard Worker void Response::SetComplete()
59*4a64e381SAndroid Build Coastguard Worker {
60*4a64e381SAndroid Build Coastguard Worker     mComplete = true;
61*4a64e381SAndroid Build Coastguard Worker }
62*4a64e381SAndroid Build Coastguard Worker 
SetStartTime(steady_clock::time_point aStartTime)63*4a64e381SAndroid Build Coastguard Worker void Response::SetStartTime(steady_clock::time_point aStartTime)
64*4a64e381SAndroid Build Coastguard Worker {
65*4a64e381SAndroid Build Coastguard Worker     mStartTime = aStartTime;
66*4a64e381SAndroid Build Coastguard Worker }
67*4a64e381SAndroid Build Coastguard Worker 
GetStartTime() const68*4a64e381SAndroid Build Coastguard Worker steady_clock::time_point Response::GetStartTime() const
69*4a64e381SAndroid Build Coastguard Worker {
70*4a64e381SAndroid Build Coastguard Worker     return mStartTime;
71*4a64e381SAndroid Build Coastguard Worker }
72*4a64e381SAndroid Build Coastguard Worker 
IsComplete()73*4a64e381SAndroid Build Coastguard Worker bool Response::IsComplete()
74*4a64e381SAndroid Build Coastguard Worker {
75*4a64e381SAndroid Build Coastguard Worker     return mComplete == true;
76*4a64e381SAndroid Build Coastguard Worker }
77*4a64e381SAndroid Build Coastguard Worker 
SetResponsCode(std::string & aCode)78*4a64e381SAndroid Build Coastguard Worker void Response::SetResponsCode(std::string &aCode)
79*4a64e381SAndroid Build Coastguard Worker {
80*4a64e381SAndroid Build Coastguard Worker     mCode = aCode;
81*4a64e381SAndroid Build Coastguard Worker }
82*4a64e381SAndroid Build Coastguard Worker 
SetContentType(const std::string & aContentType)83*4a64e381SAndroid Build Coastguard Worker void Response::SetContentType(const std::string &aContentType)
84*4a64e381SAndroid Build Coastguard Worker {
85*4a64e381SAndroid Build Coastguard Worker     mHeaders[OT_REST_CONTENT_TYPE_HEADER] = aContentType;
86*4a64e381SAndroid Build Coastguard Worker }
87*4a64e381SAndroid Build Coastguard Worker 
SetCallback(void)88*4a64e381SAndroid Build Coastguard Worker void Response::SetCallback(void)
89*4a64e381SAndroid Build Coastguard Worker {
90*4a64e381SAndroid Build Coastguard Worker     mCallback = true;
91*4a64e381SAndroid Build Coastguard Worker }
92*4a64e381SAndroid Build Coastguard Worker 
SetBody(std::string & aBody)93*4a64e381SAndroid Build Coastguard Worker void Response::SetBody(std::string &aBody)
94*4a64e381SAndroid Build Coastguard Worker {
95*4a64e381SAndroid Build Coastguard Worker     mBody = aBody;
96*4a64e381SAndroid Build Coastguard Worker }
97*4a64e381SAndroid Build Coastguard Worker 
GetBody(void) const98*4a64e381SAndroid Build Coastguard Worker std::string Response::GetBody(void) const
99*4a64e381SAndroid Build Coastguard Worker {
100*4a64e381SAndroid Build Coastguard Worker     return mBody;
101*4a64e381SAndroid Build Coastguard Worker }
102*4a64e381SAndroid Build Coastguard Worker 
NeedCallback(void)103*4a64e381SAndroid Build Coastguard Worker bool Response::NeedCallback(void)
104*4a64e381SAndroid Build Coastguard Worker {
105*4a64e381SAndroid Build Coastguard Worker     return mCallback;
106*4a64e381SAndroid Build Coastguard Worker }
107*4a64e381SAndroid Build Coastguard Worker 
Serialize(void) const108*4a64e381SAndroid Build Coastguard Worker std::string Response::Serialize(void) const
109*4a64e381SAndroid Build Coastguard Worker {
110*4a64e381SAndroid Build Coastguard Worker     std::string spacer = "\r\n";
111*4a64e381SAndroid Build Coastguard Worker     std::string ret(mProtocol + " " + mCode);
112*4a64e381SAndroid Build Coastguard Worker 
113*4a64e381SAndroid Build Coastguard Worker     for (const auto &header : mHeaders)
114*4a64e381SAndroid Build Coastguard Worker     {
115*4a64e381SAndroid Build Coastguard Worker         ret += (spacer + header.first + ": " + header.second);
116*4a64e381SAndroid Build Coastguard Worker     }
117*4a64e381SAndroid Build Coastguard Worker     ret += spacer + "Content-Length: " + std::to_string(mBody.size());
118*4a64e381SAndroid Build Coastguard Worker     ret += (spacer + spacer + mBody);
119*4a64e381SAndroid Build Coastguard Worker 
120*4a64e381SAndroid Build Coastguard Worker     return ret;
121*4a64e381SAndroid Build Coastguard Worker }
122*4a64e381SAndroid Build Coastguard Worker 
123*4a64e381SAndroid Build Coastguard Worker } // namespace rest
124*4a64e381SAndroid Build Coastguard Worker } // namespace otbr
125