-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve in how to show file attachment in record detail and how to ac…
…cess them.
- Loading branch information
1 parent
21bcda4
commit 2f2b1af
Showing
5 changed files
with
81 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
/** | ||
* | ||
* Librarian login page | ||
* Copyright (C) 2007,2008 Arie Nugraha ([email protected]), Hendro Wicaksono ([email protected]) | ||
* | ||
* 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 | ||
* | ||
*/ | ||
|
||
// be sure that this file not accessed directly | ||
if (!defined('INDEX_AUTH')) { | ||
die("can not access this file directly"); | ||
} elseif (INDEX_AUTH != 1) { | ||
die("can not access this file directly"); | ||
} | ||
|
||
|
||
$errmsg = NULL; | ||
if (isset($_GET['errnum'])) { | ||
if ($_GET['errnum'] === '601') { | ||
$errmsg = '<div class="alert alert-danger" role="alert">You have no authorization to download this file.</div>'; | ||
} else { | ||
$errnum = FALSE; | ||
} | ||
} else { | ||
$errnum = FALSE; | ||
} | ||
|
||
#die('disini>'); | ||
|
||
|
||
if ((!$errnum) AND (!is_null($errmsg))) { | ||
echo $errmsg; | ||
} else { | ||
header("location:index.php"); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
/** | ||
* Copyright (C) 2014 Arie Nugraha ([email protected]), Hendro Wicaksono ([email protected]) | ||
/** | ||
* Copyright (C) 2014 Arie Nugraha ([email protected]), Hendro Wicaksono ([email protected]) | ||
* | ||
* 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 | ||
|
@@ -24,7 +24,7 @@ | |
} elseif (INDEX_AUTH != 1) { | ||
die("can not access this file directly"); | ||
} | ||
|
||
|
||
if ($sysconf['allow_pdf_download']) { | ||
// do nothing | ||
} | ||
|
@@ -44,29 +44,28 @@ | |
if ($file_q->num_rows > 0) { | ||
$file_loc = REPOBS.str_ireplace('/', DS, $file_d['file_dir']).DS.$file_d['file_name']; | ||
if (file_exists($file_loc)) { | ||
|
||
if ($file_d['access_limit']) { | ||
if (utility::isMemberLogin()) { | ||
$allowed_mem_types = @unserialize($file_d['access_limit']); | ||
if (!in_array($_SESSION['m_member_type_id'], $allowed_mem_types)) { | ||
header("location:index.php"); | ||
header("location:index.php?p=error&errnum=601"); | ||
continue; | ||
} | ||
} else { | ||
header("location:index.php"); | ||
$referto = SWB.'index.php?p=member&destination=index.php?p=fstream-pdf&fid='.$fileID.'&bid='.$biblioID; | ||
header("location:$referto"); | ||
continue; | ||
} | ||
} | ||
|
||
header("Content-Description: File Transfer"); | ||
header('Content-Disposition: attachment; filename="'.basename($file_loc).'"'); | ||
header('Content-Type: '.$file_d['mime_type']); | ||
readfile($file_loc); | ||
exit(); | ||
exit(); | ||
} else { | ||
die('<div class="errorBox">File Not Found!</div>'); | ||
} | ||
} else { | ||
} else { | ||
die('<div class="errorBox">File Not Found!</div>'); | ||
} | ||
exit(); | ||
exit(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters