xref: /aosp_15_r20/external/ot-br-posix/src/web/web-service/web_server.hpp (revision 4a64e381480ef79f0532b2421e44e6ee336b8e0d)
1*4a64e381SAndroid Build Coastguard Worker /*
2*4a64e381SAndroid Build Coastguard Worker  *  Copyright (c) 2017, 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 /**
30*4a64e381SAndroid Build Coastguard Worker  * @file
31*4a64e381SAndroid Build Coastguard Worker  *   This file implements the web server of border router
32*4a64e381SAndroid Build Coastguard Worker  */
33*4a64e381SAndroid Build Coastguard Worker 
34*4a64e381SAndroid Build Coastguard Worker #ifndef OTBR_WEB_WEB_SERVICE_WEB_SERVER_
35*4a64e381SAndroid Build Coastguard Worker #define OTBR_WEB_WEB_SERVICE_WEB_SERVER_
36*4a64e381SAndroid Build Coastguard Worker 
37*4a64e381SAndroid Build Coastguard Worker #include "openthread-br/config.h"
38*4a64e381SAndroid Build Coastguard Worker 
39*4a64e381SAndroid Build Coastguard Worker #include <algorithm>
40*4a64e381SAndroid Build Coastguard Worker #include <fstream>
41*4a64e381SAndroid Build Coastguard Worker #include <iostream>
42*4a64e381SAndroid Build Coastguard Worker #include <string>
43*4a64e381SAndroid Build Coastguard Worker #include <vector>
44*4a64e381SAndroid Build Coastguard Worker 
45*4a64e381SAndroid Build Coastguard Worker #include <net/if.h>
46*4a64e381SAndroid Build Coastguard Worker #include <syslog.h>
47*4a64e381SAndroid Build Coastguard Worker 
48*4a64e381SAndroid Build Coastguard Worker #include <boost/asio/ip/tcp.hpp>
49*4a64e381SAndroid Build Coastguard Worker 
50*4a64e381SAndroid Build Coastguard Worker #include "web/web-service/wpan_service.hpp"
51*4a64e381SAndroid Build Coastguard Worker 
52*4a64e381SAndroid Build Coastguard Worker namespace SimpleWeb {
53*4a64e381SAndroid Build Coastguard Worker template <class T> class Server;
54*4a64e381SAndroid Build Coastguard Worker typedef boost::asio::ip::tcp::socket HTTP;
55*4a64e381SAndroid Build Coastguard Worker } // namespace SimpleWeb
56*4a64e381SAndroid Build Coastguard Worker 
57*4a64e381SAndroid Build Coastguard Worker namespace otbr {
58*4a64e381SAndroid Build Coastguard Worker namespace Web {
59*4a64e381SAndroid Build Coastguard Worker 
60*4a64e381SAndroid Build Coastguard Worker typedef SimpleWeb::Server<SimpleWeb::HTTP> HttpServer;
61*4a64e381SAndroid Build Coastguard Worker 
62*4a64e381SAndroid Build Coastguard Worker /**
63*4a64e381SAndroid Build Coastguard Worker  * This class implements the http server.
64*4a64e381SAndroid Build Coastguard Worker  */
65*4a64e381SAndroid Build Coastguard Worker class WebServer
66*4a64e381SAndroid Build Coastguard Worker {
67*4a64e381SAndroid Build Coastguard Worker public:
68*4a64e381SAndroid Build Coastguard Worker     /**
69*4a64e381SAndroid Build Coastguard Worker      * This method is constructor to initialize the WebServer.
70*4a64e381SAndroid Build Coastguard Worker      */
71*4a64e381SAndroid Build Coastguard Worker     WebServer(void);
72*4a64e381SAndroid Build Coastguard Worker 
73*4a64e381SAndroid Build Coastguard Worker     /**
74*4a64e381SAndroid Build Coastguard Worker      * This method is destructor to free the WebServer.
75*4a64e381SAndroid Build Coastguard Worker      */
76*4a64e381SAndroid Build Coastguard Worker     ~WebServer(void);
77*4a64e381SAndroid Build Coastguard Worker 
78*4a64e381SAndroid Build Coastguard Worker     /**
79*4a64e381SAndroid Build Coastguard Worker      * This method starts the Web Server.
80*4a64e381SAndroid Build Coastguard Worker      *
81*4a64e381SAndroid Build Coastguard Worker      * @param[in] aIfName      The pointer to the Thread interface name.
82*4a64e381SAndroid Build Coastguard Worker      * @param[in] aListenAddr  The http server listen address, can be nullptr for any address.
83*4a64e381SAndroid Build Coastguard Worker      * @param[in] aPort        The port of http server.
84*4a64e381SAndroid Build Coastguard Worker      */
85*4a64e381SAndroid Build Coastguard Worker     void StartWebServer(const char *aIfName, const char *aListenAddr, uint16_t aPort);
86*4a64e381SAndroid Build Coastguard Worker 
87*4a64e381SAndroid Build Coastguard Worker     /**
88*4a64e381SAndroid Build Coastguard Worker      * This method stops the Web Server.
89*4a64e381SAndroid Build Coastguard Worker      */
90*4a64e381SAndroid Build Coastguard Worker     void StopWebServer(void);
91*4a64e381SAndroid Build Coastguard Worker 
92*4a64e381SAndroid Build Coastguard Worker private:
93*4a64e381SAndroid Build Coastguard Worker     typedef std::string (*HttpRequestCallback)(const std::string &aRequest, void *aUserData);
94*4a64e381SAndroid Build Coastguard Worker     static std::string HandleJoinNetworkRequest(const std::string &aJoinRequest, void *aUserData);
95*4a64e381SAndroid Build Coastguard Worker     static std::string HandleGetQRCodeRequest(const std::string &aGetQRCodeRequest, void *aUserData);
96*4a64e381SAndroid Build Coastguard Worker     static std::string HandleFormNetworkRequest(const std::string &aFormRequest, void *aUserData);
97*4a64e381SAndroid Build Coastguard Worker     static std::string HandleAddPrefixRequest(const std::string &aAddPrefixRequest, void *aUserData);
98*4a64e381SAndroid Build Coastguard Worker     static std::string HandleDeletePrefixRequest(const std::string &aDeletePrefixRequest, void *aUserData);
99*4a64e381SAndroid Build Coastguard Worker     static std::string HandleGetStatusRequest(const std::string &aGetStatusRequest, void *aUserData);
100*4a64e381SAndroid Build Coastguard Worker     static std::string HandleGetAvailableNetworkResponse(const std::string &aGetAvailableNetworkRequest,
101*4a64e381SAndroid Build Coastguard Worker                                                          void              *aUserData);
102*4a64e381SAndroid Build Coastguard Worker     static std::string HandleCommission(const std::string &aCommissionRequest, void *aUserData);
103*4a64e381SAndroid Build Coastguard Worker 
104*4a64e381SAndroid Build Coastguard Worker     std::string HandleJoinNetworkRequest(const std::string &aJoinRequest);
105*4a64e381SAndroid Build Coastguard Worker     std::string HandleGetQRCodeRequest(const std::string &aGetQRCodeRequest);
106*4a64e381SAndroid Build Coastguard Worker     std::string HandleFormNetworkRequest(const std::string &aFormRequest);
107*4a64e381SAndroid Build Coastguard Worker     std::string HandleAddPrefixRequest(const std::string &aAddPrefixRequest);
108*4a64e381SAndroid Build Coastguard Worker     std::string HandleDeletePrefixRequest(const std::string &aDeletePrefixRequest);
109*4a64e381SAndroid Build Coastguard Worker     std::string HandleGetStatusRequest(const std::string &aGetStatusRequest);
110*4a64e381SAndroid Build Coastguard Worker     std::string HandleGetAvailableNetworkResponse(const std::string &aGetAvailableNetworkRequest);
111*4a64e381SAndroid Build Coastguard Worker     std::string HandleCommission(const std::string &aCommissionRequest);
112*4a64e381SAndroid Build Coastguard Worker 
113*4a64e381SAndroid Build Coastguard Worker     void HandleHttpRequest(const char *aUrl, const char *aMethod, HttpRequestCallback aCallback);
114*4a64e381SAndroid Build Coastguard Worker     void ResponseGetQRCode(void);
115*4a64e381SAndroid Build Coastguard Worker     void ResponseJoinNetwork(void);
116*4a64e381SAndroid Build Coastguard Worker     void ResponseFormNetwork(void);
117*4a64e381SAndroid Build Coastguard Worker     void ResponseAddOnMeshPrefix(void);
118*4a64e381SAndroid Build Coastguard Worker     void ResponseDeleteOnMeshPrefix(void);
119*4a64e381SAndroid Build Coastguard Worker     void ResponseGetStatus(void);
120*4a64e381SAndroid Build Coastguard Worker     void ResponseGetAvailableNetwork(void);
121*4a64e381SAndroid Build Coastguard Worker     void DefaultHttpResponse(void);
122*4a64e381SAndroid Build Coastguard Worker     void ResponseCommission(void);
123*4a64e381SAndroid Build Coastguard Worker 
124*4a64e381SAndroid Build Coastguard Worker     void Init(void);
125*4a64e381SAndroid Build Coastguard Worker 
126*4a64e381SAndroid Build Coastguard Worker     HttpServer            *mServer;
127*4a64e381SAndroid Build Coastguard Worker     otbr::Web::WpanService mWpanService;
128*4a64e381SAndroid Build Coastguard Worker };
129*4a64e381SAndroid Build Coastguard Worker 
130*4a64e381SAndroid Build Coastguard Worker } // namespace Web
131*4a64e381SAndroid Build Coastguard Worker } // namespace otbr
132*4a64e381SAndroid Build Coastguard Worker 
133*4a64e381SAndroid Build Coastguard Worker #endif // OTBR_WEB_WEB_SERVICE_WEB_SERVER_
134