blob: 057874fb0b49a12548d3d12fe91da05b7c1faff4 [file] [log] [blame]
<%--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--%>
<%@ taglib uri="http://jspwiki.apache.org/tags" prefix="wiki" %>
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import="java.util.*" %>
<%@ page import="java.util.Collection" %>
<%@ page import="java.net.URLEncoder" %>
<%@ page import="org.apache.commons.lang3.*" %>
<%@ page import="org.apache.log4j.*" %>
<%@ page import="org.apache.wiki.api.core.*" %>
<%@ page import="org.apache.wiki.api.spi.Wiki" %>
<%@ page import="org.apache.wiki.api.search.SearchResult" %>
<%@ page import="org.apache.wiki.auth.*" %>
<%@ page import="org.apache.wiki.auth.permissions.*" %>
<%@ page import="org.apache.wiki.preferences.Preferences" %>
<%@ page import="org.apache.wiki.search.SearchManager" %>
<%@ page import="org.apache.wiki.ui.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ page import="javax.servlet.jsp.jstl.fmt.*" %>
<fmt:setLocale value="${prefs.Language}" />
<fmt:setBundle basename="templates.default"/>
<%!
public void jspInit()
{
wiki = Wiki.engine().find( getServletConfig() );
}
Logger log = Logger.getLogger("JSPWikiSearch");
Engine wiki;
%>
<%
/* ********************* actual start ********************* */
/* FIXME: too much hackin on this level -- should better happen in toplevel jsp's */
Context wikiContext = Wiki.context().find( wiki, request, ContextEnum.WIKI_FIND.getRequestContext() );
if(!wiki.getManager( AuthorizationManager.class ).hasAccess( wikiContext, response ) ) return;
String query = request.getParameter( "query");
if( (query != null) && ( !query.trim().equals("") ) )
{
try
{
Collection< SearchResult > list = wiki.getManager( SearchManager.class ).findPages( query, wikiContext );
// Filter down to only those that we actually have a permission to view
AuthorizationManager mgr = wiki.getManager( AuthorizationManager.class );
ArrayList< SearchResult > items = new ArrayList<>();
for( Iterator< SearchResult > i = list.iterator(); i.hasNext(); )
{
SearchResult r = i.next();
Page p = r.getPage();
PagePermission pp = new PagePermission( p, PagePermission.VIEW_ACTION );
try
{
if( mgr.checkPermission( wikiContext.getWikiSession(), pp ) )
{
items.add( r );
}
}
catch( Exception e ) { log.error( "Searching for page "+p, e ); }
}
pageContext.setAttribute( "searchresults", items, PageContext.REQUEST_SCOPE );
}
catch( Exception e )
{
wikiContext.getWikiSession().addMessage( e.getMessage() );
}
}
%>
<%
int startitem = 0; // first item to show
int maxitems = 20; // number of items to show in result
String parm_start = request.getParameter( "start");
if( parm_start != null ) startitem = Integer.parseInt( parm_start ) ;
Collection list = (Collection)pageContext.getAttribute( "searchresults", PageContext.REQUEST_SCOPE );
if( startitem == -1 ) maxitems = list.size(); //show all
%>
<wiki:SearchResults>
<h4 id="find-heading-results"><fmt:message key="find.heading.results"><fmt:param><c:out value="${param.query}"/></fmt:param></fmt:message></h4>
<p>
<fmt:message key="find.externalsearch"/>
&nbsp;<a class="external"
href="http://www.google.com/search?q=<c:out value='${param.query}'/>"
title="Google Search '<c:out value='${param.query}'/>'"
target="_blank">Google</a>
|
<a class="external"
href="http://en.wikipedia.org/wiki/Special:Search?search=<c:out value='${param.query}'/>"
title="Wikipedia Search '<c:out value='${param.query}'/>'"
target="_blank">Wikipedia</a>
</p>
<wiki:SetPagination start="${param.start}" total="<%=list.size()%>" pagesize="20" maxlinks="9"
fmtkey="info.pagination"
onclick="$('start').value=%s; SearchBox.runfullsearch();" />
<div class="graphBars">
<div class="zebra-table">
<table class="wikitable table-striped" aria-describedby="find-heading-results">
<tr>
<th scope="col"><fmt:message key="find.results.page"/></th>
<th scope="col"><fmt:message key="find.results.score"/></th>
</tr>
<wiki:SearchResultIterator id="searchref" start="${param.start}" maxItems="<%=maxitems%>">
<tr>
<td><wiki:LinkTo><wiki:PageName/></wiki:LinkTo></td>
<td><span class="gBar"><%= searchref.getScore() %></span></td>
</tr>
<c:if test="${param.details == 'on'}">
<%
String[] contexts = searchref.getContexts();
if( (contexts != null) && (contexts.length > 0) )
{
%>
<tr class="odd" >
<td class="fragment" colspan="2">
<%
for (int i = 0; i < contexts.length; i++)
{
%>
<%= (i > 0 ) ? "<span class='fragment_ellipsis'> ... </span>" : "" %>
<%= contexts[i] %>
<%
}
%>
</td>
</tr>
<%
}
%>
</c:if><%-- details --%>
</wiki:SearchResultIterator>
</table>
<wiki:IfNoSearchResults>
<p class="warning"><fmt:message key="find.noresults"/></p>
</wiki:IfNoSearchResults>
</div>
</div>
${pagination}
</wiki:SearchResults>