<?php
/**
* Copyright (C) 2007,Hendro Wicaksono (hide@address.com)
* Modification by Arie Nugraha (hide@address.com)
*
* 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
*
*/
// get file ID
$fileID = isset($_GET['fid'])?(integer)$_GET['fid']:0;
// get biblioID
$biblioID = isset($_GET['bid'])?(integer)$_GET['bid']:0;
// get file data
// query file to database
$sql_q = 'SELECT att.*, f.* FROM biblio_attachment AS att
LEFT JOIN files AS f ON att.file_id=f.file_id
WHERE att.file_id='.$fileID.' AND att.biblio_id='.$biblioID.' AND att.access_type=\'public\'';
$file_q = $dbs->query($sql_q);
// check if file exists
if ($file_q->num_rows < 1) {
die();
}
// check if file exists
$file_d = $file_q->fetch_assoc();
$file_loc = REPO_BASE_DIR.str_ireplace('/', DIRECTORY_SEPARATOR, $file_d['file_dir']).DIRECTORY_SEPARATOR.$file_d['file_name'];
if (!file_exists($file_loc)) {
die();
}
// multimedia URL
$multimedia_url = REPO_DIR.'/'.$file_d['file_dir'].'/'.$file_d['file_name'];
// flowplayer settings
$splash = SENAYAN_WEB_ROOT_DIR.IMAGES_DIR.'/senayan-player-splash.png';
$flowplayer_core = JS_WEB_ROOT_DIR.'flowplayer/flowplayer-3.1.0.swf';
$flowplayer_api = JS_WEB_ROOT_DIR.'flowplayer/flowplayer-3.1.0.min.js';
$flowplayer_audio_plugin = JS_WEB_ROOT_DIR.'flowplayer/flowplayer.audio-3.1.0.swf';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- by Hendro Wicaksono -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="<?php echo $flowplayer_api; ?>"></script>
<title>Senayan Multimedia Viewer</title>
</head>
<body style="padding: 0; margin: 0;">
<a href="#" style="display: block; width: 400px; height: 300px;" id="player"></a>
<script type="text/javascript">
flowplayer("player", "<?php echo $flowplayer_core; ?>", {
plugins: { audio: { url: '<?php echo $flowplayer_audio_plugin; ?>' } },
playlist: [
{
url: '<?php echo $multimedia_url; ?>',
onFinish: function() {
this.unload();
}
}
]
});
</script>
</body>
</html>
<?php
exit();
?>