blob: 83ee201727b0927b7ab46b1a71b74786d2fc430f [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.
--%>
<%@ page import="org.apache.log4j.*" %>
<%@ page import="org.apache.commons.httpclient.*" %>
<%@ page import="org.apache.commons.httpclient.methods.*" %>
<%@ page import="org.apache.wiki.*" %>
<%@ page import="org.apache.wiki.preferences.Preferences" %>
<%@ page import="org.apache.wiki.util.*" %>
<%@ page import="org.apache.wiki.ui.EditorManager" %>
<%@ page import="org.apache.commons.lang3.time.StopWatch" %>
<%@ page errorPage="/Error.jsp" %>
<%@ taglib uri="http://jspwiki.apache.org/tags" prefix="wiki" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<fmt:setBundle basename="CoreResources"/>
<%!
Logger log = Logger.getLogger("JSPWiki");
%>
<%
WikiEngine wiki = WikiEngine.getInstance( getServletConfig() );
// Create wiki context and check for authorization
WikiContext wikiContext = wiki.createContext( request, WikiContext.VIEW );
if(!wiki.getAuthorizationManager().hasAccess( wikiContext, response )) return;
String pagereq = wikiContext.getName();
String reqPage = TextUtil.replaceEntities( request.getParameter( "page" ) );
String content = TextUtil.replaceEntities( request.getParameter( "text" ) );
if( content != null )
{
String ticket = TextUtil.replaceEntities( request.getParameter( "Asirra_Ticket" ) );
HttpClient client = new HttpClient();
HttpMethod method = new GetMethod("http://challenge.asirra.com/cgi/Asirra?action=ValidateTicket&ticket="+ticket);
int status = client.executeMethod(method);
String body = method.getResponseBodyAsString();
if( status == HttpStatus.SC_OK )
{
if( body.indexOf( "Pass" ) != -1 )
{
session.setAttribute( "captcha", "ok" );
response.sendRedirect( wikiContext.getURL( WikiContext.EDIT, reqPage ) );
return;
}
}
response.sendRedirect("Message.jsp?message=NOK");
}
// Set the content type and include the response content
response.setContentType( "text/html; charset=" + wiki.getContentEncoding() );
%>
<!doctype html>
<html lang="<c:out value='${prefs.Language}' default='en'/>" name="top">
<head>
<title><wiki:Variable var="applicationname" />: <wiki:PageName /></title>
<%-- <wiki:Include page="commonheader.jsp"/> --%>
<meta name="robots" content="noindex,nofollow" />
<script type="text/javascript">
function HumanCheckComplete(isHuman)
{
if (isHuman)
{
formElt = document.getElementById("mainForm");
formElt.submit();
}
else
{
alert('<fmt:message key="captcha.js.humancheckcomplete.alert" />');
return false;
}
}
function i18nAsirra() {
document.getElementById("asirra_InstructionsTextId").innerHTML = "<fmt:message key="captcha.asirra.please.select" />";
for ( var i = 0; i < 12; i++)
{
document.getElementById("asirra_AdoptMeDiv" + i).getElementsByTagName("a")[0].innerHTML= '<font size="-1">' + '<fmt:message key="captcha.asirra.adopt.me" />' + '</font>' ;
}
document.getElementById("asirra_KnobsTable").getElementsByTagName("a")[0].title="<fmt:message key="captcha.asirra.a.get.challenge" />";
document.getElementById("asirra_KnobsTable").getElementsByTagName("a")[1].title="<fmt:message key="captcha.asirra.a.whatsthis" />";
document.getElementById("mainForm").style.display="block"; // show form when i18n is done
}
</script>
</head>
<body onload="i18nAsirra()">
<div style="margin: 8px">
<p><fmt:message key="captcha.description" /></p>
<form action="<wiki:Link jsp='Captcha.jsp' format='url'/>" method="post" id="mainForm" style="display: none;">
<input type="hidden" value="foo" name="text" />
<input type="hidden" value='<%=reqPage%>' name='page'/>
<script type="text/javascript" src="http://challenge.asirra.com/js/AsirraClientSide.js"></script>
<script type="text/javascript">
asirraState.SetEnlargedPosition( "right" );
// asirraState.SetCellsPerRow( 6 );
</script>
<br />
<input type="button" value="<fmt:message key="captcha.submit" />" onclick="javascript:Asirra_CheckIfHuman(HumanCheckComplete)" />
</form>
</div>
</body>
</html>