Unified all push-in-enabled outputs into a single style/function of accepting incoming pushes
This commit is contained in:
parent
daa0833970
commit
ef3f4aaf1a
5 changed files with 40 additions and 114 deletions
|
@ -1294,6 +1294,34 @@ namespace Mist{
|
|||
|
||||
std::string source = strmSource.substr(7);
|
||||
std::string IP = source.substr(0, source.find('@'));
|
||||
|
||||
/*LTS-START*/
|
||||
std::string password;
|
||||
if (source.find('@') != std::string::npos){
|
||||
password = source.substr(source.find('@')+1);
|
||||
if (password != ""){
|
||||
if (password == passwd){
|
||||
INFO_MSG("Password accepted - ignoring IP settings.");
|
||||
IP = "";
|
||||
}else{
|
||||
INFO_MSG("Password rejected - checking IP.");
|
||||
if (IP == ""){
|
||||
IP = "deny-all.invalid";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
std::string smp = streamName.substr(0, streamName.find_first_of("+ "));
|
||||
if(Triggers::shouldTrigger("STREAM_PUSH", smp)){
|
||||
std::string payload = streamName+"\n" + getConnectedHost() +"\n"+capa["name"].asStringRef()+"\n"+reqUrl;
|
||||
if (!Triggers::doTrigger("STREAM_PUSH", payload, smp)){
|
||||
FAIL_MSG("Push from %s to %s rejected - STREAM_PUSH trigger denied the push", getConnectedHost().c_str(), streamName.c_str());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/*LTS-END*/
|
||||
|
||||
if (IP != ""){
|
||||
if (!myConn.isAddress(IP)){
|
||||
FAIL_MSG("Push from %s to %s rejected - source host not whitelisted", getConnectedHost().c_str(), streamName.c_str());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue