[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
perpustakaan
/
admin
/
modules
/
bibliography
/
[
Home
]
File: marcexport.php
<?php /** * * Modified 2015 by Wardiyono (wynerst@gmail.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 * */ // key to authenticate define('INDEX_AUTH', '1'); // load SLiMS main system configuration require '../../../sysconfig.inc.php'; // start the session require SB.'admin/default/session.inc.php'; require SB.'admin/default/session_check.inc.php'; require SIMBIO.'simbio_GUI/table/simbio_table.inc.php'; require SIMBIO.'simbio_GUI/form_maker/simbio_form_table_AJAX.inc.php'; require SIMBIO.'simbio_GUI/paging/simbio_paging.inc.php'; require SIMBIO.'simbio_DB/datagrid/simbio_dbgrid.inc.php'; require MDLBS.'bibliography/biblio_utils.inc.php'; // privileges checking $can_read = utility::havePrivilege('bibliography', 'r'); $can_write = utility::havePrivilege('bibliography', 'w'); if (!$can_read) { die('<div class="errorBox">'.__('You don\'t have enough privileges to access this area!').'</div>'); } // check if PEAR is installed ob_start(); include 'File/MARC.php'; ob_end_clean(); if (!class_exists('File_MARC')) { die('<div class="errorBox">'.__('<a href="http://pear.php.net/index.php">PEAR</a>, <a href="http://pear.php.net/package/File_MARC">File_MARC</a> packages need to be installed in order to export MARC record').'</div>'); } // clean print queue if (isset($_GET['action']) AND $_GET['action'] == 'clear') { // update print queue count object echo '<script type="text/javascript">top.$(\'#queueCount\').html(\'0\');</script>'; utility::jsAlert(__('Export queue cleared!')); unset($_SESSION['marcexport']); exit(); } /* RECORD OPERATION */ if (isset($_POST['itemID']) AND !empty($_POST['itemID']) AND isset($_POST['itemAction'])) { if (!$can_read) { die(); } if (!is_array($_POST['itemID'])) { // make an array $_POST['itemID'] = array((integer)$_POST['itemID']); } // loop array if (isset($_SESSION['marcexport'])) { $print_count = count($_SESSION['marcexport']); } else { $print_count = 0; } // create AJAX request echo '<script type="text/javascript" src="'.JWB.'jquery.js"></script>'; echo '<script type="text/javascript">'; // loop array foreach ($_POST['itemID'] as $itemID) { if (isset($_SESSION['marcexport'][$itemID])) { continue; } if (!empty($itemID)) { $barcode_text = trim($itemID); /* replace space */ $barcode_text = str_replace(array(' ', '/', '\/'), '_', $barcode_text); /* replace invalid characters */ $barcode_text = str_replace(array(':', ',', '*', '@'), '', $barcode_text); // add to sessions $_SESSION['marcexport'][$itemID] = $itemID; $print_count++; } } echo 'top.$(\'#queueCount\').html(\''.$print_count.'\')'; echo '</script>'; utility::jsAlert(__('Selected items added to print queue')); exit(); } // batch export if (isset($_POST['doExport'])) { if (!$can_read) { die(); } $format = $_POST['exportType']; $total = (integer)$_POST['recordNum']; $start = (integer)$_POST['recordOffset']; $start = $start-1; if ($format == 'XML') { header('Content-type: application/marcxml+xml'); header('Content-disposition: attachment; filename=slims-marc-export.xml'); } else if ($format == 'JSON') { header('Content-type: application/json'); header('Content-disposition: attachment; filename=slims-marc-export.json'); } else { header('Content-type: application/marc'); header('Content-disposition: attachment; filename=slims-marc-export.mrc'); } $biblio = new Biblio($dbs, null); echo $biblio->marc_export('BATCH', $start, $total, $format); exit(); } // Starting Export to MARC if (isset($_GET['action']) AND $_GET['action'] == 'export') { // check if label session array is available if (!isset($_SESSION['marcexport'])) { utility::jsAlert(__('There is no data to export!*')); } if (count($_SESSION['marcexport']) < 1) { utility::jsAlert(__('There is no data to export!')); } // concat all ID together $item_ids = ''; foreach ($_SESSION['marcexport'] as $id) { $item_ids .= '\''.$id.'\','; } // strip the last comma $item_ids = substr_replace($item_ids, '', -1); // unset the session unset($_SESSION['marcexport']); header('Content-type: application/marc'); header('Content-disposition: attachment; filename=slims-marc-export.mrc'); $biblio = new Biblio($dbs, null); echo $biblio->marc_export($item_ids); // utility::jsAlert('Done..'); exit(); } ?> <fieldset class="menuBox"> <div class="menuBoxInner printIcon"> <div class="per_title"> <h2><?php echo __('Export Catalog to Marc Format '); ?></h2> </div> <div class="sub_section"> <div class="btn-group"> <a target="blindSubmit" href="<?php echo MWB; ?>bibliography/marcexport.php?action=clear" class="notAJAX btn btn-default"><i class="glyphicon glyphicon-trash"></i> <?php echo __('Clear selected catalog'); ?></a> <a target="blindSubmit" href="<?php echo MWB; ?>bibliography/marcexport.php?action=export" class="notAJAX btn btn-default"><i class="glyphicon glyphicon-print"></i> <?php echo __('Export now');?></a> <a href="<?php echo MWB; ?>bibliography/marcexport.php?action=batch" class="btn btn-default"><i class="glyphicon glyphicon-floppy-disk"></i> <?php echo __('Batch Export');?></a> </div> <form name="search" action="<?php echo MWB; ?>bibliography/marcexport.php" id="search" method="get" style="display: inline;"><?php echo __('Search'); ?> : <input type="text" name="keywords" size="30" /> <input type="submit" id="doSearch" value="<?php echo __('Search'); ?>" class="btn btn-default" /> </form> </div> <div class="infoBox"> <?php echo __('Currently there is').' '; if (isset($_SESSION['marcexport'])) { echo '<font id="queueCount" style="color: #f00">'.count($_SESSION['marcexport']).'</font>'; } else { echo '<font id="queueCount" style="color: #f00">0</font>'; } echo ' '.__('in queue waiting to be processed.'); ?> </div> </div> </fieldset> <?php /* search form end */ if (isset($_GET['action']) && $_GET['action'] == 'batch') { $form = new simbio_form_table_AJAX('mainForm', $_SERVER['PHP_SELF'], 'post'); $form->submit_button_attr = 'name="doExport" value="'.__('Export Now').'" class="btn btn-default"'; // form table attributes $form->table_attr = 'align="center" id="dataList" cellpadding="5" cellspacing="0"'; $form->table_header_attr = 'class="alterCell" style="font-weight: bold;"'; $form->table_content_attr = 'class="alterCell2"'; /* Form Element(s) */ // record separator $rec_sep_options[] = array('RAW', 'MARC RAW'); $rec_sep_options[] = array('XML', 'MARCXML'); $rec_sep_options[] = array('JSON', 'MARCJSON'); $form->addSelectList('exportType', __('Export Type'), $rec_sep_options); // number of records to export $form->addTextField('text', 'recordNum', __('Number of Records To Export (0 for all records)'), '0', 'style="width: 10%;"'); // records offset $form->addTextField('text', 'recordOffset', __('Start From Record'), '1', 'style="width: 10%;"'); // output the form echo $form->printOut(); } else { // List of books $datagrid = new simbio_datagrid(); /* ITEM LIST */ require SIMBIO.'simbio_UTILS/simbio_tokenizecql.inc.php'; require LIB.'biblio_list_model.inc.php'; // index choice if ($sysconf['index']['type'] == 'index' || ($sysconf['index']['type'] == 'sphinx' && file_exists(LIB.'sphinx/sphinxapi.php'))) { if ($sysconf['index']['type'] == 'sphinx') { require LIB.'sphinx/sphinxapi.php'; require LIB.'biblio_list_sphinx.inc.php'; } else { require LIB.'biblio_list_index.inc.php'; } // table spec $table_spec = 'search_biblio'; $datagrid->setSQLColumn('biblio_id', 'title AS \''.__('Title').'\'', 'author AS \''.__('Author').'\''); } else { require LIB.'biblio_list.inc.php'; // table spec $table_spec = 'search_biblio'; $datagrid->setSQLColumn('biblio_id', 'title AS \''.__('Title').'\'', 'author AS \''.__('Author').'\''); } $datagrid->setSQLorder('last_update DESC'); // is there any search if (isset($_GET['keywords']) AND $_GET['keywords']) { $keywords = $dbs->escape_string(trim($_GET['keywords'])); $searchable_fields = array('title', 'author', 'subject'); $search_str = ''; // if no qualifier in fields if (!preg_match('@[a-z]+\s*=\s*@i', $keywords)) { foreach ($searchable_fields as $search_field) { $search_str .= $search_field.'='.$keywords.' OR '; } } else { $search_str = $keywords; } $biblio_list = new biblio_list($dbs, 20); $criteria = $biblio_list->setSQLcriteria($search_str); } if (isset($criteria)) { $datagrid->setSQLcriteria('('.$criteria['sql_criteria'].')'); } // set table and table header attributes $datagrid->table_attr = 'align="center" id="dataList" cellpadding="5" cellspacing="0"'; $datagrid->table_header_attr = 'class="dataListHeader" style="font-weight: bold;"'; // edit and checkbox property $datagrid->edit_property = false; $datagrid->chbox_property = array('itemID', __('Add')); $datagrid->chbox_action_button = __('Add To Export Queue'); $datagrid->chbox_confirm_msg = __('Add to export queue?'); $datagrid->column_width = array('50%', '45%'); // set checkbox action URL $datagrid->chbox_form_URL = $_SERVER['PHP_SELF']; // put the result into variables $datagrid_result = $datagrid->createDataGrid($dbs, $table_spec, 20, $can_read); if (isset($_GET['keywords']) AND $_GET['keywords']) { $msg = str_replace('{result->num_rows}', $datagrid->num_rows, __('Found <strong>{result->num_rows}</strong> from your keywords')); echo '<div class="infoBox">'.$msg.' : "'.$_GET['keywords'].'"<div>'.__('Query took').' <b>'.$datagrid->query_time.'</b> '.__('second(s) to complete').'</div></div>'; } echo $datagrid_result; } /* main content end */