AAAAhome/academiac/www/modules/mod_simplefileuploadv1.3/mod_simplefileuploadv1.3.php 0000604 00000031070 15137564134 0024010 0 ustar 00 get( 'upload_capthcabg', '120-192' );
if ($upload_capthcabg !== "") {
$bgcolor = explode('-', $upload_capthcabg);
if(!is_array($bgcolor)) {
$bgcolor = array(0 => "120", 1 => "192");
} else {
if (!is_numeric($bgcolor[0])) $bgcolor[0] = "120";
if (!is_numeric($bgcolor[1])) $bgcolor[1] = "192";
}
} else {
$bgcolor = array(0 => "120", 1 => "192");
}
// Make ready for Ajax calls and avoid any whitespace
if (isset($_GET["sfuaction"])) {
if(!class_exists('SFUAjaxServlet')) JLoader::register('SFUAjaxServlet' , dirname(__FILE__).DIRECTORY_SEPARATOR.'helper.php');
if ($_GET["sfuaction"] === "captcha") {
$mid = $_GET["mid"];
//global $mainframe;
$app = JFactory::getApplication();
header('Cache-control: private');
header('Last-Modified: ' . gmdate("D, d M Y H:i:s") . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Content-type: image/jpeg');
echo SFUAjaxServlet::getCaptcha($sfu_version, $bgcolor, $mid, 'ajax');
//$mainframe->close();
$app->close();
} else {
echo SFUAjaxServlet::getContent($_GET["sfuaction"]);
}
}
$session =& JFactory::getSession();
// Get Module ID to create unique names
$mid = $module->id;
// Store MID for use in SFL and SPU
$_SESSION["sfu_mid"] = $mid;
$upload_location = $params->get( 'upload_location', '.'.DIRECTORY_SEPARATOR.'images' );
if ( substr( $upload_location , strlen($upload_location) - 1) !== DIRECTORY_SEPARATOR )
$upload_location .= DIRECTORY_SEPARATOR;
$upload_bgcolor = $params->get( 'upload_bgcolor', '#e8edf1' );
if ( substr( $upload_bgcolor, 0, 1 ) !== "#" )
$upload_bgcolor = "#" . $upload_bgcolor;
$upload_capthcaheight = $params->get( 'upload_capthcaheight', '40' );
$upload_capthcawidth = $params->get( 'upload_capthcawidth', '120' );
$upload_stdbrowse = $params->get( 'upload_stdbrowse', '0' );
$upload_filewidth = $params->get( 'upload_filewidth', '12' );
$upload_maxsize = $params->get( 'upload_maxsize', '100000' );
$upload_popcaptchamsg = $params->get( 'upload_popcaptchamsg', '1' );
$upload_capthca = $params->get( 'upload_capthca', '1' );
$upload_capthcacase = $params->get( 'upload_capthcacase', '0' );
$upload_capthcacasemsg = $params->get( 'upload_capthcacasemsg', '0' );
$upload_multi = $params->get( 'upload_multi', '0' );
$upload_maxmulti = $params->get( 'upload_maxmulti', '100' );
$upload_startmulti = $params->get( 'upload_startmulti', '0' );
$upload_redirect = $params->get( 'upload_redirect', '' );
$upload_formfields = $params->get( 'upload_formfields', '' );
$upload_useformsfields = $params->get( 'upload_useformsfields', '0' );
if ($upload_useformsfields == 0)
$upload_formfields = "";
$sfu_autorefreshsfl = $params->get( 'sfu_autorefreshsfl', '0' );
$upload_jquery = $params->get( 'upload_jquery', '0' );
$upload_jqueryinclude = $params->get( 'upload_jqueryinclude', '0' );
$upload_debug = $params->get( 'upload_debug', '0' );
$moduleclass_sfx = $params->get('moduleclass_sfx')?$params->get('moduleclass_sfx'):'' ;
$upload_debug = $params->get( 'upload_debug', '0' );
// Get user id and check if user is in list
$settingids = $params->get( 'settingids', '' );
// Get current logged in user
$user =& JFactory::getUser();
$usr_id = $user->get('id');
$usr_name = $user->get('username');
$users_name = $user->get('name')." (".$usr_name.")";
// Security check for fake username in Joomla
if(stripos($usr_name, "/") !== false) {
$usr_name = "";
}
if(stripos($usr_name, "\\") !== false) {
$usr_name = "";
}
if(stripos($usr_name, "..") !== false) {
$usr_name = "";
}
//echo $usr_id;
$upload_username = $params->get( 'upload_username', '' );
$upload_password = $params->get( 'upload_password', '' );
$_SESSION["upload_username$mid"] = $upload_username;
$_SESSION["upload_password$mid"] = $upload_password;
$session->set( 'upload_username$mid', $upload_username );
$session->set( 'upload_password$mid', $upload_password );
// ++User defined upload
$upload_usernameddir = $params->get( 'upload_usernameddir', '0' );
$upload_usernameddirdefault = $params->get( 'upload_usernameddirdefault', '0' );
$upload_createdir = $params->get( 'upload_createdir', '0' );
$upload_userlocation = $params->get( 'upload_userlocation', '' );
$settingidsund = $params->get( 'settingidsund', '' );
$settingidsudd = $params->get( 'settingidsudd', '' );
//$settingidsuddpath = $params->get( 'settingidsuddpath', '' );
$upload_userpath = array($upload_location);
if (($upload_usernameddir == 1) && ($usr_name !== "")) {
if ($upload_debug == 1) echo "
Use UND!";
if ( substr( $upload_userlocation , strlen($upload_userlocation) - 1) !== DIRECTORY_SEPARATOR ) {
$upload_userlocation .= DIRECTORY_SEPARATOR;
}
if(is_array($settingidsund)) {
foreach($settingidsund as $value){
if($value==="[ALL]") {
if ($upload_debug == 1) echo "
UND array found as [ALL].";
$upload_userpath[] = $upload_userlocation.$usr_name.DIRECTORY_SEPARATOR;
break;
}
if($value===$usr_id) {
if ($upload_debug == 1) echo "
UND array found as ".$upload_userlocation.$usr_name.DIRECTORY_SEPARATOR.".";
$upload_userpath[] = $upload_userlocation.$usr_name.DIRECTORY_SEPARATOR;
break;
}
}
} else {
if($settingidsund==="[ALL]") {
// If all users are to have UDD
if ($upload_debug == 1) echo "
UND var found as [ALL].";
$upload_userpath[] = $upload_userlocation.$usr_name.DIRECTORY_SEPARATOR;
} else {
if($settingidsund!=="") {
// If only current user uses UDD
if($settingidsund===$usr_id) {
if ($upload_debug == 1) echo "
UND var found as ".$upload_userlocation.$usr_name.DIRECTORY_SEPARATOR.".";
$upload_userpath[] = $upload_userlocation.$usr_name.DIRECTORY_SEPARATOR;
}
}
}
}
}
//echo "upload_usernameddirdefault=".$upload_usernameddirdefault." count(upload_userpath)".count($upload_userpath);
// If Deafult+UND,check if remove Default
if (($upload_usernameddirdefault == 1) && (count($upload_userpath) == 2) && ($usr_name !== "")) {
//We should have Defalut and one UND path, only leave the UND path
if ($upload_debug == 1) echo "
UND only, default removed.";
$upload_userpath = array($upload_userpath[1]);
}
// ++ TEST: USER DEFINED
if(!(is_array($settingidsudd)) && ($settingidsudd !== "")) {
//Make it an array
$settingidsudd = array("0", $settingidsudd);
if ($upload_debug == 1) echo "
UDD exists.";
}
// It's an array if it's present as value=0 (zero) is default info text. Always skip zero!
if(is_array($settingidsudd) && ($usr_name !== "")) {
foreach($settingidsudd as $value){
if($value==="0") {
//nothing
} else {
//$name_chk = substr($value, 0, strpos($value, ">"));
$name_chk = explode(">", $value);
if($name_chk[0]===$usr_name) {
if ( substr( $name_chk[1] , strlen($name_chk[1]) - 1) !== DIRECTORY_SEPARATOR ) {
$name_chk[1] .= DIRECTORY_SEPARATOR;
}
$upload_userpath[] = $name_chk[1];
if ($upload_debug == 1) echo "
Added ".$name_chk[1]." to UDD.";
}
}
}
}
// --
if (isset($_FILES["uploadedfile$mid"]["name"]) && ($usr_name !== "")) {
if (count($upload_userpath) == 1) {
$upload_location = $upload_userpath[0];
if ($upload_debug == 1) echo "
Default upload location selected.";
} else {
$idx = 0;
if (isset($_POST["selPathId$mid"])) {
$idx = $_POST["selPathId$mid"];
}
$upload_location = $upload_userpath[$idx];
if ($upload_debug == 1) echo "
Upload location index [".$idx."] selected as '".$upload_location."'.";
//Print_R($upload_userpath);
}
}
// --User defined upload
$upload_users = "false";
if(is_array($settingids)) {
foreach($settingids as $value){
if($value==="[ALL]") {
$upload_users = "true";
if ($upload_debug == 1) echo "
Allowed array [ALL] found.";
break;
}
if($value===$usr_id) {
$upload_users = "true";
if ($upload_debug == 1) echo "
Allowed array [".$usr_id."] found.";
break;
}
/*echo "settingids=".$value."
";*/
}
} else {
if($settingids==="[ALL]") {
$upload_users = "true";
if ($upload_debug == 1) echo "
Allowed var [ALL] found.";
} else {
if($settingids!=="") {
if($settingids===$usr_id) {
if ($upload_debug == 1) echo "
Allowed var [".$usr_id."] found.";
$upload_users = "true";
}
/*echo "settingids=".$settingids."
";*/
} else {
//Allow all users
$upload_users = "true";
if ($upload_debug == 1) echo "
Allowed default to ALL.";
}
}
}
// include the helper file
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'helper.php');
if ($upload_debug == 1) echo "
helper.php loaded.";
$filename = "";
if (isset($_FILES["uploadedfile$mid"]["name"])) {
if(is_array($_FILES["uploadedfile$mid"]["name"])) {
foreach($_FILES["uploadedfile$mid"]["name"] as $value){
if(strlen($value) > 0) {
//Check that we have a filename
$filename = $value;
if ($upload_debug == 1) echo "
Uploaded file name exists.";
}
}
}
}
//print_r($_SERVER);
if (strlen($filename) > 0) {
// get the items to display from the helper
$results = "";
$_SESSION["uploaderr$mid"] = 0;
if ($upload_createdir == 1) {
if (!file_exists($upload_location)) {
//Create directory if missing
if (mkdir($upload_location, 0777, true)) {
//echo "Created dir: " . $upload_location;
$results = JText::_('NEW_DIR')."
";
if ($upload_debug == 1) echo "
Created new directory [".$upload_location."].";
// Add empty HTML page to newly created directory
if (!file_exists($upload_location . "index.html")) {
$fhIndex = fopen($upload_location . "index.html", "w");
if (!$fhIndex) {
$stringData = "