2017-12-08 22:37:17 +08:00
|
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2017-12-08 22:37:17 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include "Util/File.h"
|
2018-12-20 10:31:31 +08:00
|
|
|
|
#include "Util/SSLBox.h"
|
2017-12-08 22:37:17 +08:00
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include "Util/onceToken.h"
|
2018-12-20 10:31:31 +08:00
|
|
|
|
#include "Util/NoticeCenter.h"
|
2017-12-08 22:37:17 +08:00
|
|
|
|
#include "Network/TcpServer.h"
|
|
|
|
|
#include "Poller/EventPoller.h"
|
2018-12-20 10:31:31 +08:00
|
|
|
|
#include "Common/config.h"
|
|
|
|
|
#include "Http/WebSocketSession.h"
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
using namespace mediakit;
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
2018-12-19 17:53:43 +08:00
|
|
|
|
namespace mediakit {
|
|
|
|
|
////////////HTTP配置///////////
|
|
|
|
|
namespace Http {
|
|
|
|
|
#define HTTP_FIELD "http."
|
|
|
|
|
#define HTTP_PORT 80
|
|
|
|
|
const char kPort[] = HTTP_FIELD"port";
|
|
|
|
|
#define HTTPS_PORT 443
|
|
|
|
|
extern const char kSSLPort[] = HTTP_FIELD"sslport";
|
|
|
|
|
onceToken token1([](){
|
|
|
|
|
mINI::Instance()[kPort] = HTTP_PORT;
|
|
|
|
|
mINI::Instance()[kSSLPort] = HTTPS_PORT;
|
|
|
|
|
},nullptr);
|
|
|
|
|
}//namespace Http
|
|
|
|
|
} // namespace mediakit
|
|
|
|
|
|
2019-07-20 20:37:52 +08:00
|
|
|
|
void initEventListener(){
|
|
|
|
|
static onceToken s_token([](){
|
|
|
|
|
NoticeCenter::Instance().addListener(nullptr,Broadcast::kBroadcastHttpRequest,[](BroadcastHttpRequestArgs){
|
|
|
|
|
//const Parser &parser,HttpSession::HttpResponseInvoker &invoker,bool &consumed
|
|
|
|
|
if(strstr(parser.Url().data(),"/api/") != parser.Url().data()){
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//url以"/api/起始,说明是http api"
|
|
|
|
|
consumed = true;//该http请求已被消费
|
|
|
|
|
|
|
|
|
|
_StrPrinter printer;
|
|
|
|
|
////////////////method////////////////////
|
|
|
|
|
printer << "\r\nmethod:\r\n\t" << parser.Method();
|
|
|
|
|
////////////////url/////////////////
|
|
|
|
|
printer << "\r\nurl:\r\n\t" << parser.Url();
|
|
|
|
|
////////////////protocol/////////////////
|
|
|
|
|
printer << "\r\nprotocol:\r\n\t" << parser.Tail();
|
|
|
|
|
///////////////args//////////////////
|
|
|
|
|
printer << "\r\nargs:\r\n";
|
|
|
|
|
for(auto &pr : parser.getUrlArgs()){
|
|
|
|
|
printer << "\t" << pr.first << " : " << pr.second << "\r\n";
|
|
|
|
|
}
|
|
|
|
|
///////////////header//////////////////
|
|
|
|
|
printer << "\r\nheader:\r\n";
|
|
|
|
|
for(auto &pr : parser.getValues()){
|
|
|
|
|
printer << "\t" << pr.first << " : " << pr.second << "\r\n";
|
|
|
|
|
}
|
|
|
|
|
////////////////content/////////////////
|
|
|
|
|
printer << "\r\ncontent:\r\n" << parser.Content();
|
|
|
|
|
auto contentOut = printer << endl;
|
|
|
|
|
|
|
|
|
|
////////////////我们测算异步回复,当然你也可以同步回复/////////////////
|
|
|
|
|
EventPollerPool::Instance().getPoller()->async([invoker,contentOut](){
|
|
|
|
|
HttpSession::KeyValue headerOut;
|
|
|
|
|
//你可以自定义header,如果跟默认header重名,则会覆盖之
|
|
|
|
|
//默认header有:Server,Connection,Date,Content-Type,Content-Length
|
|
|
|
|
//请勿覆盖Connection、Content-Length键
|
|
|
|
|
//键名覆盖时不区分大小写
|
|
|
|
|
headerOut["TestHeader"] = "HeaderValue";
|
|
|
|
|
invoker("200 OK",headerOut,contentOut);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}, nullptr);
|
|
|
|
|
}
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
|
|
|
|
int main(int argc,char *argv[]){
|
|
|
|
|
//设置退出信号处理函数
|
2019-01-18 10:16:36 +08:00
|
|
|
|
static semaphore sem;
|
|
|
|
|
signal(SIGINT, [](int) { sem.post(); });// 设置退出信号
|
|
|
|
|
|
2017-12-08 22:37:17 +08:00
|
|
|
|
//设置日志
|
2018-12-28 16:47:50 +08:00
|
|
|
|
Logger::Instance().add(std::make_shared<ConsoleChannel>());
|
|
|
|
|
Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());
|
|
|
|
|
|
2017-12-08 22:37:17 +08:00
|
|
|
|
//加载配置文件,如果配置文件不存在就创建一个
|
2018-10-24 17:17:55 +08:00
|
|
|
|
loadIniConfig();
|
2019-07-20 20:37:52 +08:00
|
|
|
|
initEventListener();
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
2019-04-01 10:37:11 +08:00
|
|
|
|
//加载证书,证书包含公钥和私钥
|
2019-04-16 17:25:19 +08:00
|
|
|
|
SSL_Initor::Instance().loadCertificate((exeDir() + "ssl.p12").data());
|
|
|
|
|
//信任某个自签名证书
|
|
|
|
|
SSL_Initor::Instance().trustCertificate((exeDir() + "ssl.p12").data());
|
|
|
|
|
//不忽略无效证书证书(例如自签名或过期证书)
|
|
|
|
|
SSL_Initor::Instance().ignoreInvalidCertificate(false);
|
|
|
|
|
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
|
|
|
|
//开启http服务器
|
2018-02-23 15:36:51 +08:00
|
|
|
|
TcpServer::Ptr httpSrv(new TcpServer());
|
2019-09-17 09:48:20 +08:00
|
|
|
|
httpSrv->start<HttpSession>(mINI::Instance()[Http::kPort]);//默认80
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
|
|
|
|
//如果支持ssl,还可以开启https服务器
|
2018-02-23 15:36:51 +08:00
|
|
|
|
TcpServer::Ptr httpsSrv(new TcpServer());
|
2019-09-17 09:48:20 +08:00
|
|
|
|
httpsSrv->start<HttpsSession>(mINI::Instance()[Http::kSSLPort]);//默认443
|
2017-12-08 22:37:17 +08:00
|
|
|
|
|
|
|
|
|
InfoL << "你可以在浏览器输入:http://127.0.0.1/api/my_api?key0=val0&key1=参数1" << endl;
|
|
|
|
|
|
2019-01-18 10:16:36 +08:00
|
|
|
|
sem.wait();
|
2017-12-08 22:37:17 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|