forked from OS4ED/openSIS-Classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DownloadWindow.php
74 lines (70 loc) · 3.06 KB
/
DownloadWindow.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
#**************************************************************************
# openSIS is a free student information system for public and non-public
# schools from Open Solutions for Education, Inc. web: www.os4ed.com
#
# openSIS is web-based, open source, and comes packed with features that
# include student demographic info, scheduling, grade book, attendance,
# report cards, eligibility, transcripts, parent portal,
# student portal and more.
#
# Visit the openSIS web site at http://www.opensis.com to learn more.
# If you have question regarding this system or the license, please send
# an email to info@os4ed.com.
#
# This program is released under the terms of the GNU General Public License as
# published by the Free Software Foundation, version 2 of the License.
# See license.txt.
#
# 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, see <http://www.gnu.org/licenses/>.
#
#***************************************************************************************
include('RedirectRootInc.php');
include 'Warehouse.php';
include 'Data.php';
// include('functions/SqlSecurityFnc.php');
$down_id = sqlSecurityFilter($_REQUEST['down_id']);
if(isset($_REQUEST['down_id']) && $_REQUEST['down_id']!='')
{
$downfile_info= DBGet(DBQuery('SELECT * FROM user_file_upload WHERE DOWNLOAD_ID=\''.$down_id.'\''));
header("Cache-Control: public");
header("Pragma: ");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Length: ".$downfile_info[1]['SIZE']."");
header("Content-Type: ".$downfile_info[1]['TYPE']."");
// header("Content-Disposition: attachment; filename=\"".str_replace(' ','_',$downfile_info[1]['NAME'])."\";");
// header("Content-Disposition: attachment; filename=\"".$downfile_info[1]['NAME']."\";");
header("Content-Disposition: attachment; filename=\"".str_replace("opensis_space_here", " ", str_replace($downfile_info[1]['USER_ID']."-","",$downfile_info[1]['NAME']))."\";");
header("Content-Transfer-Encoding: binary");
ob_clean();
flush();
if(isset($_REQUEST['studentfile']) && $_REQUEST['studentfile']=='Y')
{
$filedata = @file_get_contents('assets/studentfiles/'.$downfile_info[1]['NAME']);
echo $filedata;
}
else if(isset($_REQUEST['userfile']) && $_REQUEST['userfile']=='Y')
{
$filedata = @file_get_contents('assets/stafffiles/'.$downfile_info[1]['NAME']);
echo $filedata;
}
else
{
echo $downfile_info[1]['CONTENT'];
}
exit;
}
// else
// {
// header('Content-Disposition: attachment; filename="'.urldecode($_REQUEST['name']).'" ');
// readfile('assets/'.urldecode($_REQUEST['filename']));
// }
?>