0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.141.201.92


Current Path : /var/www/oasis/src_old/
Upload File :
Current File : /var/www/oasis/src_old/uploadzip.php

<?php
// DateTime.Now.Second.ToString()
session_start();
function replaceChars($name)
{
	$spl_char = array("*","/","~","!","@","#","$","%","^","&",":",";","?","/","\\","_","-","'"," ","");
	$link_name = strtolower(str_replace($spl_char,"_",$name));
	return str_ireplace("__","_",$link_name);
}

function viewStudInfoToupload($aobj_context)
{	
	session_start();
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);  
	
	$college_code = $_SESSION['collcode']; 
	$degree_code = $aobj_context->mobj_data['degreeCode']; 
	$_SESSION['degree_codeImgUp']=$degree_code;
	$RegNo_start = substr("00000000".$aobj_context->mobj_data["regStart"],-8); 
	$RegNo_end = substr("ZZZZZZZZ".$aobj_context->mobj_data["regEnd"],-8); 
		
	$get_studentInfo = "select * from student where fcollcode = '{$college_code}' and fdegree ='{$degree_code}' and fregno between '{$RegNo_start}' and '{$RegNo_end}'";
	$lobj_get_studentInfo = $aobj_context->mobj_db->getAll($get_studentInfo);
	
	$get_currentDate="select CONCAT(DATE_FORMAT(NOW(),'%Y'),DATE_FORMAT(NOW(),'%m'),DATE_FORMAT(NOW(),'%d'),DATE_FORMAT(CURTIME(),'%r')) as currentDate";
	$lobj_get_currentDate=$aobj_context->mobj_db->getRow($get_currentDate);
	
	$currentDate = $lobj_get_currentDate[currentDate];
	 
	if($lobj_get_studentInfo)
	{
		$e_data.="<table  align = 'center' width='100%' cellspacing='0' cellpadding='1' border='0' >";
		$e_data.="<th align='left' colspan='6' class='ui-jqgrid-titlebar ui-widget-header ui-corner-tl ui-corner-tr ui-helper' style='font-size:12px; padding-left:6px; height:24px;'>Photo Upload List</th>";
		$e_data.="<tr class='ui-state-default ui-jqgrid-hdiv'>";
		$e_data.="<td align='center' style='width:55px; font-size:12px;  border-left:1px solid #C5DBEC;border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Sl.No.</td>";
		$e_data.="<td align='center' style='width:105px; font-size:12px;  border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Register No.</td>";
		$e_data.="<td align='center' style='width:205px; font-size:12px;   border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Name</td>";
		$e_data.="<td align='center' style='width:105px; font-size:12px;  border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Degree Code</td>";
		$e_data.="<td align='center' style='width:155px; font-size:12px;  border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Photo</td>";

		$e_data.="</tr>";							

		$k=0;
		$id=1;
		$m=0;
		//var_dump($lobj_get_moudle_names); die();
		$counter_degree = 1;
		foreach($lobj_get_studentInfo as $key=>$value)
		{
		if($k%2==0)
		{
		$class='tbl_row';
		$inp_class='tbl_row_input';
		}
		else
		{
		$input_class='tbl_row1'; 
		$inp_class='tbl_row1_input';
		}  
		$image_src='';
		$photo_path=$value[FPHOTOPATH];
				if(!empty($photo_path) && file_exists($photo_path)) 
				{			
					$image_src=$photo_path.'?'.$currentDate;
				}
				else
				{
					$image_src="images/default_photo.jpg";
				}
		$f_regno = $value[FREGNO];		
		$e_data.="<tr class='ui-widget-content jqgrow'>";	
		$e_data.="<td class='tbl_row_new' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px; font-size:12px;text-align:center; ' id='it_cnt_{$id}' >{$counter_degree}</td>";				
		$e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px; font-size:12px;text-align:center; ' id='it_mname_{$id}' >{$value[FREGNO]}</td>";
		$e_data.="<td class='tbl_row_new' style=' border-right:1px solid #C5DBEC; padding:2px; font-size:12px; '  id='it_dname_{$id}' >{$value[FNAME]}</td>";
		$e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px; font-size:12px; text-align:center;' id='it_mname_{$id}' >{$value[FDEGREE]}</td>";
		$e_data.="<td class='tbl_row_new' style='border-right:1px solid #C5DBEC; padding:2px; font-size:12px;height:120px;width:200px;' id='it_mname_{$id}' ><span style='margin-left:20px;background:#EEEEE;'><img src='{$image_src}' id='student_entry_photo_{$id}' width='100px' height='70px'/></span><div><span ><input type='hidden' id='hd_regno_{$id}' value='{$f_regno}'><input type='file'  id='student_entry_upload_{$id}' name='student_entry_upload_{$id}' onchange='UserSelectedPhotoDisplay({$id});' style='width:75px'></sapn><span style='padding:5px 5px;'><input type='submit' value='Upload' onclick='UserSelectedPhotoUpload({$id})'></span></div></td>";
		$e_data.="</tr>";
		$k++;
		$id++;
		$m++;
		$counter_degree++;
		}
		$e_data.="</table>";
		$arr['total_count']= $m;						
		$arr['html']=$e_data;
		$arr['error']=0;
		echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
	}
	else
	{
	$error_data = 'No Records Found.. ';
	echo $aobj_context->mobj_output->ToJSONEnvelope($error_data,-1,"failure"); 
	return;
	}
}


function UserSelectedPhotoDisplay($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 
	ini_set('post_max_size', '64M');
	ini_set('upload_max_filesize', '64M');
	session_start();
	$collcode = $_SESSION['collcode']; 
	$user_id = $_SESSION['user_id']; 
	$img_index = $aobj_context->mobj_data['index'];
	
	//$registration_numb = $aobj_context->mobj_data['regno'];
	
	$college_path=$aobj_context->main_src."/student_photos/{$college_code}";
	$folder_path=$aobj_context->main_src."/student_photos/{$college_code}/".replaceChars(strtolower($degree_code));
	$file_name=replaceChars(basename($_FILES['student_entry_upload']['name']));
	$path_arr=pathinfo($_FILES['student_entry_upload']['name']);
	$file_ext=$path_arr['extension'];
	
	$temp_path=$aobj_context->main_src."/misc_files/temp";
	if(!file_exists($temp_path))
	{
		mkdir($temp_path);
	}
	$file_path="/{$collcode}_{$user_id}_{$file_name}";
 	$temp_path.=$file_path;

		if(isset($_FILES['student_entry_upload_'.$img_index]['name']) && $_FILES['student_entry_upload_'.$img_index]['name'] != '')         
		{ 
			$size=($_FILES['student_entry_upload_'.$img_index]['size']/1024);
			if($size>1024)
			{
				$data="Please Upload the Photo of size less than 1 MB";
				echo $aobj_context->mobj_output->ToJSONEnvelope($data,-2,"success"); 
				return;
			}
			if(move_uploaded_file($_FILES['student_entry_upload']['tmp_name'],$temp_path))
			{
				$data="student_photos/temp/{$file_path}";
			
				echo $aobj_context->mobj_output->ToJSONEnvelope($data,0,"success"); 
				return;
			}
			
		}
		echo $aobj_context->mobj_output->ToJSONEnvelope($data,-1,"failure"); 
		return;	

}

function saveuserselectedfile($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC); 
	session_start();
	include_once("pclzip.lib.php");

	ini_set('post_max_size', '256M');
	ini_set('upload_max_filesize', '256M');
	ini_set('max_execution_time', 1000);
	ini_set('max_input_time', 1000);

	$degree_code = $_SESSION['degree_codeImgUp'];
	$college_code = $_SESSION['collcode']; 
	
	$foldertype = $aobj_context->mobj_data['type'];
	$examination = $aobj_context->mobj_data['examination'];
	

	$folder_path=$aobj_context->main_src.$foldertype;
	// var_dump($_FILES['student_entry_upload']['name']);
	$uploaded = false;
	for($i = 0; $i < count($_FILES['student_entry_upload']['name']); $i++)
	{
		$file_name = basename($_FILES['student_entry_upload']['name'][$i]);
		$type = basename($_FILES['student_entry_upload']['type'][$i]);
		
		$path_arr = pathinfo($_FILES['student_entry_upload']['name'][$i]);
		$file_ext = $path_arr['extension'];
		$ext = pathinfo($file_name, PATHINFO_EXTENSION);

		$full_file_path = $folder_path.'/'.$file_name;

		// echo $_FILES['student_entry_upload']['tmp_name'][$i]." File Moving";
		if(isset($_FILES['student_entry_upload']['name'][$i]) && $_FILES['student_entry_upload']['name'][$i] != '')         
		{ 
			if(move_uploaded_file($_FILES['student_entry_upload']['tmp_name'][$i],$full_file_path))
			{
				$uploaded = true;
				// echo $_FILES['student_entry_upload']['tmp_name'][$i]." File Moved";
			}
		}
	}

	if($uploaded)
	{	
		$arr='Transfer successful. '.($i)." files Moved.";
		echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success");
	}
	else
	{	
		$arr='Error in File Transfer';
		echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure");
	}
	/*$file_name=basename($_FILES['student_entry_upload']['name']);
	$type = basename($_FILES['student_entry_upload']['type']);
	
	$path_arr = pathinfo($_FILES['student_entry_upload']['name']);
	$file_ext = $path_arr['extension'];
	$ext = pathinfo($file_name, PATHINFO_EXTENSION);

	$full_file_path = $folder_path.'/'.$file_name;
	$file = substr($full_file_path, 0, -4);
	*/
	//$image_path="student_photos/{$college_code}/".replaceChars(strtolower($degree_code)).'/'.$regno_index.".".$ext;
	/*$photo_path="";
	if(isset($_FILES['student_entry_upload']['name']) && $_FILES['student_entry_upload']['name'] != '')         
	{ 
		if(move_uploaded_file($_FILES['student_entry_upload']['tmp_name'],$full_file_path))
		{	
			
			$str = "unzip ".$full_file_path." -d ".$folder_path;

			exec($str,$arr,$returnval);

			unlink($full_file_path);
			if(!$returnval)
			{	
				$arr='Transfer successful. '.(count($arr)-1)." files extracted.";
				echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success");
			}
			else
			{	
				$arr='Error in File Extraction';
				echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure");
			}
			
		}
		
	}
	else
	{
		$arr='Uploaded Failed';
		echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"failure");
	}*/
}
 
?>