_rootFolderID; } else { $folderid = $_GET["folderid"]; } header("Location: ../out/out.SearchForm.php?folderid=".$folderid); } // // Supporting functions. // function makeTimeStamp($hour, $min, $sec, $year, $month, $day) { $thirtyone = array (1, 3, 5, 7, 8, 10, 12); $thirty = array (4, 6, 9, 11); // Very basic check that the terms are valid. Does not fail for illegal // dates such as 31 Feb. if (!is_numeric($hour) || !is_numeric($min) || !is_numeric($sec) || !is_numeric($year) || !is_numeric($month) || !is_numeric($day) || $month<1 || $month>12 || $day<1 || $day>31 || $hour<0 || $hour>23 || $min<0 || $min>59 || $sec<0 || $sec>59) { return false; } $year = (int) $year; $month = (int) $month; $day = (int) $day; if (array_search($month, $thirtyone)) { $max=31; } else if (array_search($month, $thirty)) { $max=30; } else { $max=(($year % 4 == 0) && ($year % 100 != 0 || $year % 400 == 0)) ? 29 : 28; } // If the date falls out of bounds, set it to the maximum for the given // month. Makes assumption about the user's intention, rather than failing // for absolutely everything. if ($day>$max) { $day=$max; } return mktime($hour, $min, $sec, $month, $day, $year); } function getTime() { if (function_exists('microtime')) { $tm = microtime(); $tm = explode(' ', $tm); return (float) sprintf('%f', $tm[1] + $tm[0]); } return time(); } function markQuery($str, $tag = "b") { GLOBAL $query; $querywords = preg_split("/ /", $query); foreach ($querywords as $queryword) $str = str_ireplace("($queryword)", "<" . $tag . ">\\1", $str); return $str; } // // Parse all of the parameters for the search // // Create the keyword search string. This search spans up to three columns // in the database: keywords, name and comment. if (isset($_GET["query"]) && is_string($_GET["query"])) { $query = sanitizeString($_GET["query"]); } else { $query = ""; } $mode = "AND"; if (isset($_GET["mode"]) && is_numeric($_GET["mode"]) && $_GET["mode"]==0) { $mode = "OR"; } $searchin = array(); if (isset($_GET['searchin']) && is_array($_GET["searchin"])) { foreach ($_GET["searchin"] as $si) { if (isset($si) && is_numeric($si)) { switch ($si) { case 1: // keywords case 2: // name case 3: // comment $searchin[$si] = $si; break; } } } } // if none is checkd search all if (count($searchin)==0) $searchin=array( 0, 1, 2, 3); // Check to see if the search has been restricted to a particular sub-tree in // the folder hierarchy. if (isset($_GET["targetidform1"]) && is_numeric($_GET["targetidform1"]) && $_GET["targetidform1"]>0) { $targetid = $_GET["targetidform1"]; $startFolder = $dms->getFolder($targetid); } else { $targetid = $settings->_rootFolderID; $startFolder = $dms->getFolder($targetid); } if (!is_object($startFolder)) { UI::exitError(getMLText("search_results"),getMLText("invalid_folder_id")); } // Now that the target folder has been identified, it is possible to create // the full navigation bar. $folderPathHTML = getFolderPathHTML($startFolder, true); UI::htmlStartPage(getMLText("search_results")); UI::globalNavigation($startFolder); UI::pageNavigation($folderPathHTML, "", $startFolder); UI::contentHeading(getMLText("search_results")); // Check to see if the search has been restricted to a particular // document owner. $owner = null; if (isset($_GET["ownerid"]) && is_numeric($_GET["ownerid"]) && $_GET["ownerid"]!=-1) { $owner = $dms->getUser($_GET["ownerid"]); if (!is_object($owner)) { UI::contentContainer(getMLText("unknown_owner")); UI::htmlEndPage(); exit; } } // Is the search restricted to documents created between two specific dates? $startdate = array(); $stopdate = array(); if (isset($_GET["creationdate"]) && $_GET["creationdate"]!=null) { $startdate = array('year'=>$_GET["createstartyear"], 'month'=>$_GET["createstartmonth"], 'day'=>$_GET["createstartday"]); if (!checkdate($startdate['month'], $startdate['year'], $startdate['day'])) { UI::contentContainer(getMLText("invalid_create_date_start")); UI::htmlEndPage(); exit; } $stopdate = array('year'=>$_GET["createendyear"], 'month'=>$_GET["createendmonth"], 'day'=>$_GET["createendday"]); if (!checkdate($stopdate['month'], $stopdate['year'], $stopdate['day'])) { UI::contentContainer(getMLText("invalid_create_date_end")); UI::htmlEndPage(); exit; } } // status $status = array(); if (isset($_GET["pendingReview"])){ $status[] = S_DRAFT_REV; } if (isset($_GET["pendingApproval"])){ $status[] = S_DRAFT_APP; } if (isset($_GET["released"])){ $status[] = S_RELEASED; } if (isset($_GET["rejected"])){ $status[] = S_REJECTED; } if (isset($_GET["obsolete"])){ $status[] = S_OBSOLETE; } if (isset($_GET["expired"])){ $status[] = S_EXPIRED; } // // Get the page number to display. If the result set contains more than // 25 entries, it is displayed across multiple pages. // // This requires that a page number variable be used to track which page the // user is interested in, and an extra clause on the select statement. // // Default page to display is always one. $pageNumber=1; if (isset($_GET["pg"])) { if (is_numeric($_GET["pg"]) && $_GET["pg"]>0) { $pageNumber = (integer)$_GET["pg"]; } else if (!strcasecmp($_GET["pg"], "all")) { $pageNumber = "all"; } } // ------------------------------------- Suche starten -------------------------------------------- $startTime = getTime(); $resArr = $dms->search($query, 25, ($pageNumber-1)*25, $mode, $searchin, $startFolder, $owner, $status, $startdate, $stopdate); $searchTime = getTime() - $startTime; $searchTime = round($searchTime, 2); // ---------------------------------- Ausgabe der Ergebnisse -------------------------------------- UI::contentContainerStart(); ?>
$resArr['totalDocs'])); } ?> $searchTime));?>
"; print "\n\n"; //print "\n"; print "".getMLText("name")."\n"; print "".getMLText("owner")."\n"; print "".getMLText("status")."\n"; print "".getMLText("version")."\n"; print "".getMLText("comment")."\n"; //print "".getMLText("reviewers")."\n"; //print "".getMLText("approvers")."\n"; print "\n\n\n"; $resultsFilteredByAccess = false; foreach ($resArr['docs'] as $document) { if ($document->getAccessMode($user) < M_READ) { $resultsFilteredByAccess = true; } else { $lc = $document->getLatestContent(); print ""; //print ""; if (in_array(2, $searchin)) { $docName = markQuery($document->getName(), "i"); } else { $docName = $document->getName(); } print "getID()."\">/"; $folder = $document->getFolder(); $path = $folder->getPath(); for ($i = 1; $i < count($path); $i++) { print $path[$i]->getName()."/"; } print $docName; print ""; $owner = $document->getOwner(); print "".$owner->getFullName().""; print "".getOverallStatusText($lc->getStatus()). ""; print "".$lc->getVersion().""; if (in_array(3, $searchin)) $comment = markQuery($document->getComment()); else $comment = $document->getComment(); if (strlen($comment) > 50) $comment = substr($comment, 0, 47) . "..."; print "".$comment.""; print "\n"; } } if ($resultsFilteredByAccess) { print "". getMLText("search_results_access_filtered") . ""; } print "\n"; UI::pageList($pageNumber, $resArr['totalPages'], "../op/op.Search.php", $_GET); UI::contentContainerEnd(); UI::htmlEndPage(); ?>