From 44ef0bd5fe47a43e47aec5f7981b6c1d728dd9a8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Mar 2025 18:37:22 +0900 Subject: Restructure source files into 'src' subfolder Signed-off-by: Michele Calgaro --- plugins/webinterface/php_handler.cpp | 128 ----------------------------------- 1 file changed, 128 deletions(-) delete mode 100644 plugins/webinterface/php_handler.cpp (limited to 'plugins/webinterface/php_handler.cpp') diff --git a/plugins/webinterface/php_handler.cpp b/plugins/webinterface/php_handler.cpp deleted file mode 100644 index 6586f7e..0000000 --- a/plugins/webinterface/php_handler.cpp +++ /dev/null @@ -1,128 +0,0 @@ - /*************************************************************************** - * Copyright (C) 2006 by Diego R. Brogna * - * dierbro@gmail.com * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#include "php_handler.h" - -#include -#include -#include -#include -#include -#include -#include "php_interface.h" - - -using namespace kt; -using namespace bt; - -namespace kt -{ - TQMap PhpHandler::scripts; - - PhpHandler::PhpHandler(const TQString & php_exe,PhpInterface *php) : TQProcess(php_exe),php_i(php) - { - connect(this,TQ_SIGNAL(readyReadStdout()),this,TQ_SLOT(onReadyReadStdout())); - connect(this,TQ_SIGNAL(processExited()),this,TQ_SLOT(onExited())); - } - - PhpHandler::~PhpHandler() - { - } - - bool PhpHandler::executeScript(const TQString & path,const TQMap & args) - { - TQByteArray php_s; - if (!scripts.contains(path)) - { - TQFile fptr(path); - if (!fptr.open(IO_ReadOnly)) - { - Out(SYS_WEB|LOG_DEBUG) << "Failed to open " << path << endl; - return false; - } - php_s = fptr.readAll(); - scripts.insert(path,php_s); - } - else - { - php_s = scripts[path]; - } - - output.resize(0); - - int firstphptag = TQCString(php_s).find("globalInfo(ts); - php_i->downloadStatus(ts); - - TQMap::const_iterator it; - - for ( it = args.begin(); it != args.end(); ++it ) - { - // Check for string delimiters, don't want PHP injection attacks - if (!containsDelimiters(it.key()) && !containsDelimiters(it.data())) - ts << TQString("$_REQUEST['%1']=\"%2\";\n").arg(it.key()).arg(it.data()); - } - ts.writeRawBytes(php_s.data() + off,php_s.size() - off); // the rest of the script - ts << flush; - -#if 0 - TQFile dinges("output.php"); - if (dinges.open(IO_WriteOnly)) - { - TQTextStream out(&dinges); - out.writeRawBytes(data.data(),data.size()); - dinges.close(); - } -#endif - return launch(data); - } - - bool PhpHandler::containsDelimiters(const TQString & str) - { - return str.contains("\"") || str.contains("'"); - } - - void PhpHandler::onExited() - { - // read remaining data - onReadyReadStdout(); - finished(); - } - - void PhpHandler::onReadyReadStdout() - { - TQTextStream out(output,IO_WriteOnly|IO_Append); - while (canReadLineStdout()) - { - TQByteArray d = readStdout(); - out.writeRawBytes(d.data(),d.size()); - } - } - -} - -#include "php_handler.moc" -- cgit v1.2.3