256 lines
8.6 KiB
PHP
256 lines
8.6 KiB
PHP
<?php
|
|
/*
|
|
FusionPBX
|
|
Version: MPL 1.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
The Initial Developer of the Original Code is
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
James Rose <james.o.rose@gmail.com>
|
|
*/
|
|
|
|
//includes
|
|
include "root.php";
|
|
require_once "resources/require.php";
|
|
require_once "resources/check_auth.php";
|
|
|
|
//check permissions
|
|
if (permission_exists('script_editor_view')) {
|
|
//access granted
|
|
}
|
|
else {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get();
|
|
|
|
//include
|
|
require_once "header.php";
|
|
|
|
//define function recure_dir
|
|
function recur_dir($dir) {
|
|
clearstatcache();
|
|
$htmldirlist = '';
|
|
$htmlfilelist = '';
|
|
$dirlist = opendir($dir);
|
|
$dir_array = array();
|
|
if($dirlist !== false) while (false !== ($file = readdir($dirlist))) {
|
|
if ($file != "." AND $file != ".."){
|
|
$newpath = $dir.'/'.$file;
|
|
$level = explode('/',$newpath);
|
|
if (
|
|
substr(strtolower($newpath), -4) == ".svn" ||
|
|
substr(strtolower($newpath), -4) == ".git" ||
|
|
substr(strtolower($newpath), -3) == ".db" ||
|
|
substr(strtolower($newpath), -4) == ".jpg" ||
|
|
substr(strtolower($newpath), -4) == ".gif" ||
|
|
substr(strtolower($newpath), -4) == ".png" ||
|
|
substr(strtolower($newpath), -4) == ".ico" ||
|
|
substr(strtolower($newpath), -4) == ".ttf"
|
|
){
|
|
//ignore certain files (and folders)
|
|
}
|
|
else {
|
|
$dir_array[] = $newpath;
|
|
}
|
|
if ($x > 1000) { break; };
|
|
$x++;
|
|
}
|
|
}
|
|
|
|
asort($dir_array);
|
|
foreach ($dir_array as $newpath){
|
|
$level = explode('/',$newpath);
|
|
|
|
if (is_dir($newpath)) {
|
|
$dirname = end($level);
|
|
$newpath = str_replace ('//', '/', $newpath);
|
|
$htmldirlist .= "
|
|
<table border=0 cellpadding='0' cellspacing='0' width='100%'>
|
|
<tr>
|
|
<td nowrap style='padding-left: 16px;'>
|
|
<a onclick=\"Toggle(this, '".$newpath."');\" style='cursor: pointer;'><img src='resources/images/icon_folder.png' border='0' align='absmiddle' style='margin: 1px 2px 3px 0px;'>".$dirname."</a><div style='display:none'>".recur_dir($newpath)."</div>
|
|
</td>
|
|
</tr>
|
|
</table>\n";
|
|
}
|
|
else {
|
|
$filename = end($level);
|
|
$filesize = round(filesize($newpath)/1024, 2);
|
|
$newpath = str_replace ('//', '/', $newpath);
|
|
$newpath = str_replace ("\\", "/", $newpath);
|
|
$newpath = str_replace ($filename, '', $newpath);
|
|
$htmlfilelist .= "
|
|
<table border=0 cellpadding='0' cellspacing='0' width='100%'>
|
|
<tr>
|
|
<td nowrap align='bottom' style='padding-left: 16px;'>
|
|
<a href='javascript:void(0);' onclick=\"parent.document.getElementById('filename').value='".$filename."'; parent.document.getElementById('folder').value='".$newpath."';\" title='".$newpath." ".$filesize." KB'><img src='resources/images/icon_file.png' border='0' align='absmiddle' style='margin: 1px 2px 3px -1px;'>".$filename."</a>
|
|
</td>
|
|
</tr>
|
|
</table>\n";
|
|
}
|
|
}
|
|
|
|
closedir($dirlist);
|
|
return $htmldirlist ."\n". $htmlfilelist;
|
|
}
|
|
|
|
echo "<script type=\"text/javascript\" language=\"javascript\">\n";
|
|
echo " function makeRequest(url, strpost) {\n";
|
|
echo " var http_request = false;\n";
|
|
echo "\n";
|
|
echo " if (window.XMLHttpRequest) { // Mozilla, Safari, ...\n";
|
|
echo " http_request = new XMLHttpRequest();\n";
|
|
echo " if (http_request.overrideMimeType) {\n";
|
|
echo " http_request.overrideMimeType('text/xml');\n";
|
|
echo " // See note below about this line\n";
|
|
echo " }\n";
|
|
echo " } else if (window.ActiveXObject) { // IE\n";
|
|
echo " try {\n";
|
|
echo " http_request = new ActiveXObject(\"Msxml2.XMLHTTP\");\n";
|
|
echo " } catch (e) {\n";
|
|
echo " try {\n";
|
|
echo " http_request = new ActiveXObject(\"Microsoft.XMLHTTP\");\n";
|
|
echo " } catch (e) {}\n";
|
|
echo " }\n";
|
|
echo " }\n";
|
|
echo "\n";
|
|
echo " if (!http_request) {\n";
|
|
echo " alert('".$text['message-give-up']."');\n";
|
|
echo " return false;\n";
|
|
echo " }\n";
|
|
echo " http_request.onreadystatechange = function() { returnContent(http_request); };\n";
|
|
echo " http_request.overrideMimeType('text/html');\n";
|
|
echo " http_request.open('POST', url, true);\n";
|
|
echo "\n";
|
|
echo "\n";
|
|
echo " if (strpost.length == 0) {\n";
|
|
echo " //http_request.send(null);\n";
|
|
echo " http_request.send('name=value&foo=bar');\n";
|
|
echo " }\n";
|
|
echo " else {\n";
|
|
echo " http_request.setRequestHeader('Content-Type','application/x-www-form-urlencoded');\n";
|
|
echo " http_request.send(strpost);\n";
|
|
echo " }\n";
|
|
echo "\n";
|
|
echo " }\n";
|
|
echo "\n";
|
|
echo " function returnContent(http_request) {\n";
|
|
echo "\n";
|
|
echo " if (http_request.readyState == 4) {\n";
|
|
echo " if (http_request.status == 200) {\n";
|
|
|
|
echo " parent.editAreaLoader.setValue('edit1', http_request.responseText); \n";
|
|
echo "\n";
|
|
echo " }\n";
|
|
echo " else {\n";
|
|
echo " alert('".$text['message-problem']."');\n";
|
|
echo " }\n";
|
|
echo " }\n";
|
|
echo "\n";
|
|
echo " }\n";
|
|
echo "</script>\n";
|
|
|
|
echo "<SCRIPT LANGUAGE=\"JavaScript\">\n";
|
|
//echo "// ---------------------------------------------\n";
|
|
//echo "// --- http://www.codeproject.com/jscript/dhtml_treeview.asp\n";
|
|
//echo "// --- Name: Easy DHTML Treeview --\n";
|
|
//echo "// --- Author: D.D. de Kerf --\n";
|
|
//echo "// --- Version: 0.2 Date: 13-6-2001 --\n";
|
|
//echo "// ---------------------------------------------\n";
|
|
echo "function Toggle(node, path) {\n";
|
|
echo " parent.document.getElementById('folder').value=path; \n";
|
|
echo " parent.document.getElementById('filename').value='';\n";
|
|
echo " parent.document.getElementById('folder').focus();\n";
|
|
echo " // Unfold the branch if it isn't visible\n";
|
|
echo " if (node.nextSibling.style.display == 'none') {\n";
|
|
echo " node.nextSibling.style.display = 'block';\n";
|
|
echo " }\n";
|
|
echo " // Collapse the branch if it IS visible\n";
|
|
echo " else {\n";
|
|
echo " node.nextSibling.style.display = 'none';\n";
|
|
echo " }\n";
|
|
echo "\n";
|
|
echo "}\n";
|
|
echo "</SCRIPT>\n";
|
|
|
|
echo "</head>\n";
|
|
echo "<body style='margin: 0; padding: 5px;' onfocus='blur();'>\n";
|
|
|
|
echo "<div style='text-align: left; margin-left: -16px;'>\n";
|
|
|
|
ini_set("session.cookie_httponly", True);
|
|
if (!isset($_SESSION)) { session_start(); }
|
|
//get the directory
|
|
if (!isset($_SESSION)) { session_start(); }
|
|
switch ($_SESSION["app"]["edit"]["dir"]) {
|
|
case 'scripts':
|
|
$edit_directory = $_SESSION['switch']['scripts']['dir'];
|
|
break;
|
|
case 'php':
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].'/'.PROJECT_PATH;
|
|
break;
|
|
case 'grammer':
|
|
$edit_directory = $_SESSION['switch']['grammar']['dir'];
|
|
break;
|
|
case 'provision':
|
|
switch (PHP_OS) {
|
|
case "Linux":
|
|
if (file_exists('/etc/fusionpbx/resources/templates/provision')) {
|
|
$edit_directory = '/etc/fusionpbx/resources/templates/provision';
|
|
}
|
|
else {
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/provision/";
|
|
}
|
|
break;
|
|
case "FreeBSD":
|
|
if (file_exists('/usr/local/etc/fusionpbx/resources/templates/provision')) {
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/provision/";
|
|
}
|
|
else {
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/provision/";
|
|
}
|
|
break;
|
|
case "NetBSD":
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/provision/";
|
|
break;
|
|
case "OpenBSD":
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/provision/";
|
|
break;
|
|
default:
|
|
$edit_directory = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/templates/provision/";
|
|
}
|
|
break;
|
|
case 'xml':
|
|
$edit_directory = $_SESSION['switch']['conf']['dir'];
|
|
break;
|
|
}
|
|
if (file_exists($edit_directory)) {
|
|
echo recur_dir($edit_directory);
|
|
}
|
|
|
|
echo "</div>\n";
|
|
|
|
require_once "footer.php";
|
|
|
|
?>
|