X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FGetTranslationPage.java;h=d8f43cd9e5af5a18672965b87b5863ac90e8fe41;hb=2e03e9dddbea4b81aacaf1aa316f5c3ccffd4bf9;hp=21ec083542b9c736ba25d1ed0b7bed0117c7b1f1;hpb=976fe760eb678a414617aeea984ec89848b49d01;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java index 21ec083..d8f43cd 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java @@ -1,5 +1,5 @@ /* - * Sone - GetTranslationPage.java - Copyright © 2010 David Roden + * Sone - GetTranslationPage.java - Copyright © 2010–2013 David Roden * * 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 @@ -18,7 +18,7 @@ package net.pterodactylus.sone.web.ajax; import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; +import net.pterodactylus.sone.web.page.FreenetRequest; /** * Returns the translation for a given key as JSON object. @@ -27,9 +27,6 @@ import net.pterodactylus.util.json.JsonObject; */ public class GetTranslationPage extends JsonPage { - /** The Sone web interface. */ - private WebInterface webInterface; - /** * Creates a new translation page. * @@ -37,18 +34,28 @@ public class GetTranslationPage extends JsonPage { * The Sone web interface */ public GetTranslationPage(WebInterface webInterface) { - super("ajax/getTranslation.ajax"); - this.webInterface = webInterface; + super("getTranslation.ajax", webInterface); } - /** - * {@inheritDoc} - */ + // + // JSONPAGE METHODS + // + @Override - protected JsonObject createJsonObject(Request request) { + protected JsonReturnObject createJsonObject(FreenetRequest request) { String key = request.getHttpRequest().getParam("key"); - String translation = webInterface.l10n().getString(key); - return new JsonObject().put("value", translation); + String translation = webInterface.getL10n().getString(key); + return createSuccessJsonObject().put("value", translation); + } + + @Override + protected boolean needsFormPassword() { + return false; + } + + @Override + protected boolean requiresLogin() { + return false; } }