AnonSec Team
Server IP : 103.11.96.170  /  Your IP : 18.118.207.114
Web Server : Microsoft-IIS/10.0
System : Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
User : elibrary.unsap.ac.id ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF
Directory (0777) :  D:/localhost/elibrary/lib/contents/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : D:/localhost/elibrary/lib/contents/default.inc.php
<?php
/**
* Copyright (C) 2013 Arie Nugraha (dicarve@yahoo.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
*
*/

// 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");
}

/* Showing list of catalogues and also for searching handling */

// include required class class
require SIMBIO.'simbio_UTILS/simbio_tokenizecql.inc.php';
require SIMBIO.'simbio_GUI/paging/simbio_paging.inc.php';
require LIB.'biblio_list_model.inc.php';

// index choice
if ($sysconf['index']['engine']['enable']) {
  if ($sysconf['index']['engine']['type'] === 'es') {
    // elastic search
    require LIB . 'biblio_list_elasticsearch.inc.php';
  }
} else {
  if ($sysconf['index']['type'] == 'index') {
    require LIB.'biblio_list_index.inc.php';
  } else if ($sysconf['index']['type'] == 'mongodb' && class_exists('MongoClient')) {
    require LIB.'biblio_list_mongodb.inc.php';
  } else if ($sysconf['index']['type'] == 'sphinx' && file_exists(LIB.'sphinx/sphinxapi.php')) {
    require LIB . 'sphinx/sphinxapi.php';
    require LIB . 'biblio_list_sphinx.inc.php';
    $sysconf['opac_result_num'] = (int)$sysconf['opac_result_num'];
  } else {
    require LIB.'biblio_list.inc.php';
  }
}

// create biblio list object
try {
  $biblio_list = new biblio_list($dbs, $sysconf['opac_result_num']);
} catch (Exception $err) {
  die($err->getMessage());
}

if (isset($sysconf['enable_xml_detail']) && !$sysconf['enable_xml_detail']) {
  $biblio_list->xml_detail = false;
}
if (isset($sysconf['enable_mark']) && !$sysconf['enable_mark']) {
  $biblio_list->enable_mark = false;
}

// search result info
$search_result_info = '';

// if we are in searching mode
if (isset($_GET['search']) && !empty($_GET['search'])) {
  // default vars
  $is_adv = false;
  $keywords = '';
  $criteria = '';
  // simple search
  if (isset($_GET['keywords'])) {
    $keywords = trim(strip_tags(urldecode($_GET['keywords'])));
  }
  if ($keywords && !preg_match('@[a-z0-9_.]+=[^=]+\s+@i', $keywords.' ')) {
    $criteria = 'title='.$keywords.' OR author='.$keywords.' OR subject='.$keywords;
    $biblio_list->setSQLcriteria($criteria);
  } else {
    $biblio_list->setSQLcriteria($keywords);
  }
  // advanced search
  $is_adv = isset($_GET['title']) || isset($_GET['author']) || isset($_GET['isbn'])
    || isset($_GET['subject']) || isset($_GET['location'])
    || isset($_GET['gmd']) || isset($_GET['colltype']) || isset($_GET['publisher']) || isset($_GET['callnumber']);
  if ($is_adv) {
    $title = '';
    if (isset($_GET['title'])) {
      $title = trim(strip_tags(urldecode($_GET['title'])));
    }
    $author = '';
    if (isset($_GET['author'])) {
      $author = trim(strip_tags(urldecode($_GET['author'])));
    }
    $subject = '';
    if (isset($_GET['subject'])) {
      $subject = trim(strip_tags(urldecode($_GET['subject'])));
    }
    $isbn = '';
    if (isset($_GET['isbn'])) {
      $isbn = trim(strip_tags(urldecode($_GET['isbn'])));
    }
    $gmd = '';
    if (isset($_GET['gmd'])) {
      $gmd = trim(strip_tags(urldecode($_GET['gmd'])));
    }
    $colltype = '';
    if (isset($_GET['colltype'])) {
      $colltype = trim(strip_tags(urldecode($_GET['colltype'])));
    }
    $location = '';
    if (isset($_GET['location'])) {
      $location = trim(strip_tags(urldecode($_GET['location'])));
    }
    $publisher = '';
    if (isset($_GET['publisher'])) {
      $publisher = trim(strip_tags(urldecode($_GET['publisher'])));
    }
    $callnumber = '';
    if (isset($_GET['callnumber'])) {
      $callnumber = trim(strip_tags(urldecode($_GET['callnumber'])));
    }
    // don't do search if all search field is empty
    if ($title || $author || $subject || $isbn || $gmd || $colltype || $location || $publisher || $callnumber !== '') {
      $criteria = '';
      if ($title) { $criteria .= ' title='.$title; }
      if ($author) { $criteria .= ' author='.$author; }
      if ($subject) { $criteria .= ' subject='.$subject; }
      if ($isbn) { $criteria .= ' isbn='.$isbn; }
      if ($gmd) { $criteria .= ' gmd="'.$gmd.'"'; }
      if ($colltype) { $criteria .= ' colltype="'.$colltype.'"'; }
      if ($location) { $criteria .= ' location="'.$location.'"'; }
      if ($publisher) { $criteria .= ' publisher="'.$publisher.'"'; }
      if ($callnumber !== '') { $criteria .= ' callnumber="'.$callnumber.'"'; }
      $criteria = trim($criteria);
      $biblio_list->setSQLcriteria($criteria);
    }
  }

  // searched words
  $searched_words = implode(' ', $biblio_list->words);
  if ($biblio_list->words) {
    $searched_words_js_array = '[';
    foreach($biblio_list->words as $word) {
      $searched_words_js_array .= "'$word',";
    }
    $searched_words_js_array = substr_replace($searched_words_js_array, '', -1);
    $searched_words_js_array .= ']';
  }

  // search result info construction
  $keywords_info = '<span class="search-keyword-info" title="'.htmlentities($keywords).'">'.((strlen($keywords)>30)?substr($keywords, 0, 30).'...':$keywords).'</span>';
  $search_result_info .= '<div class="search-found-info">';
  if ($is_adv) {
    $search_result_info .= __('Found <strong>{biblio_list->num_rows}</strong> from your keywords').': <strong class="search-found-info-keywords">'.$keywords_info.'</strong>  ';
    if ($title) { $search_result_info .= 'Title : <strong><cite>'.$title.'</cite></strong>, '; }
    if ($author) { $search_result_info .= 'Author : <strong><cite>'.$author.'</cite></strong>, '; }
    if ($subject) { $search_result_info .= 'Subject : <strong><cite>'.$subject.'</cite></strong>, '; }
    if ($isbn) { $search_result_info .= 'ISBN/ISSN : <strong><cite>'.$isbn.'</cite></strong>, '; }
    if ($gmd) { $search_result_info .= 'GMD : <strong><cite>'.$gmd.'</cite></strong>, '; }
    if ($colltype) { $search_result_info .= 'Collection Type : <strong><cite>'.$colltype.'</cite></strong>, '; }
    if ($location) { $search_result_info .= 'Location : <strong><cite>'.$location.'</cite></strong>, '; }
    if ($publisher) { $search_result_info .= 'Publisher : <strong><cite>'.$publisher.'</cite></strong>, '; }
    if ($callnumber !== '') { $search_result_info .= 'Call Number : <strong><cite>'.$callnumber.'</cite></strong>, '; }
    // strip last comma
    $search_result_info = substr_replace($search_result_info, '', -2);
  } else {
    $search_result_info .= __('Found <strong>{biblio_list->num_rows}</strong> from your keywords').': <strong class="search-found-info-keywords">'.$keywords_info.'</strong>';
  }
  $search_result_info .= '</div>';

  // show promoted titles
  if (isset($sysconf['enable_promote_titles']) && $sysconf['enable_promote_titles']) {
    $biblio_list->only_promoted = true;
  }

  if (!isset($_GET['resultXML']) && !isset($_GET['JSONLD'])) {
    // show the list
    echo $biblio_list->getDocumentList();
    echo '<br />'."\n";
  }

  // set result number info
  $search_result_info = str_replace('{biblio_list->num_rows}', $biblio_list->num_rows, $search_result_info);

  // count total pages
  $total_pages = ceil($biblio_list->num_rows/$sysconf['opac_result_num']);

  // page number info
  if (isset($_GET['page']) AND $_GET['page'] > 1) {
    $page = intval($_GET['page']);
    $msg = str_replace('{page}', $page, __('You currently on page <strong>{page}</strong> of <strong>{total_pages}</strong> page(s)')); //mfc
    $msg = str_replace('{total_pages}', $total_pages, $msg);
    $search_result_info .= '<div class="search-page-info">'.$msg.'</div>';
  } else {
    $page = 1;
  }

  // query time
  if (!isset($_SERVER['QUERY_STRING'])) {
    $_SERVER['QUERY_STRING'] = '';
  }
  $search_result_info .= '<div class="search-query-time">'.__('Query took').' <b>'.$biblio_list->query_time.'</b> '.__('second(s) to complete').'</div>';
  if ($biblio_list->num_rows < 1 && $keywords != '') {
    // word suggestion with enchant
    if (function_exists('enchant_broker_init') && $sysconf['spellchecker_enabled']) {
      $enc = enchant_broker_init();
      if (enchant_broker_dict_exists($enc,$sysconf['default_lang'])) {
        $dict = enchant_broker_request_dict($enc,$sysconf['default_lang']);
      } else {
        $dict = enchant_broker_request_dict($enc,'en_US');
      }
      $search_result_info .= '<div class="search-suggestions">'.__('Did you mean:').' ';
      $word = strtok($keywords, " \t\n");
      $keywords_suggest = array();
      while ($word !== false) {
		// check if we are inside quote
		if (stripos($word, '"', 0) === true) {
          $search_result_info .= preg_replace('@[a-z]@i', '', $word);
          $word = str_replace('"', '', $word);
		}
        $wordcorrect = enchant_dict_check($dict, $word);
        if (!$wordcorrect) {
          $closest = null;
          $wordsuggest = enchant_dict_suggest($dict, $word);
		      $shortest = -1;
		      // loop through words to find the closest with levenshtein
		      foreach ($wordsuggest as $wordsg) {
		      	$lev = levenshtein($word, $wordsg);
		      	if ($lev == 0) {
		      	  $closest = $wordsg;
		      	  $shortest = 0;
		      	  break;
		      	}

		      	if ($lev <= $shortest || $shortest < 0) {
		      	  // set the closest match, and shortest distance
		      	  $closest  = $wordsg;
		      	  $shortest = $lev;
		      	}
		      }

          $keywords_suggest[] = '<b class="search-word-suggest">'.$closest.'</b>';
          $keywords_suggest_plain[] = $closest;
        } else {
		  $keywords_suggest[] = '<b class="search-word-correct">'.$word.'</b>';
		  $keywords_suggest_plain[] = $word;
		}
		$word = strtok(" \t\n");
	  }
	  $keywords_suggest_plain_str = implode(' ', $keywords_suggest_plain);
      $search_result_info .= '<a class="search-suggestion-link" href="./index.php?keywords='.urlencode($keywords_suggest_plain_str).'&search=Search">';
      $search_result_info .= implode(' ', $keywords_suggest);
      $search_result_info .= '</a>?</div>';
      enchant_broker_free_dict($dict);
    }
  }

  if (isset($biblio_list) && isset($sysconf['enable_xml_result']) && $sysconf['enable_xml_result']) {
    $search_result_info .= '<div>';
    $search_result_info .= '<a href="index.php?resultXML=true&'.$_SERVER['QUERY_STRING'].'" class="xmlResultLink" target="_blank" title="View Result in XML Format" style="clear: both;">XML Result</a>';
    $search_result_info .= '<a href="index.php?JSONLD=true&'.$_SERVER['QUERY_STRING'].'" class="jsonResultLink" target="_blank" title="View Result in JSON Format" style="clear: both;">JSON Result</a>';
    $search_result_info .= '</div>';
  }
}

if (isset($_GET['JSONLD']) && $sysconf['jsonld_result']) {
  // get document list but don't output the result
  $biblio_list->getDocumentList(false);
  if ($biblio_list->num_rows > 0) {
    // send http header
    header('Content-Type: application/ld+json');
    header('Content-disposition: attachment; filename=biblio-opac.json');
    echo $biblio_list->JSONLDresult();
  }
  exit();
}
// check if we are on xml resultset mode
if ( (isset($_GET['rss']) || isset($_GET['resultXML'])) && $sysconf['enable_xml_result']) {
  // get document list but don't output the result
  $biblio_list->getDocumentList(false);
  if ($biblio_list->num_rows > 0) {
    // send http header
    header('Content-Type: text/xml');
    echo '<?xml version="1.0" encoding="UTF-8" ?>'."\n";
    if (isset($_GET['rss'])) {
      echo $biblio_list->RSSresult();
    } else {
      echo $biblio_list->XMLresult();
    }
  }
  exit();
}

AnonSec - 2021