Make Sone returned by a Sone provider optional.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / TrustAjaxPage.java
1 /*
2  * Sone - TrustAjaxPage.java - Copyright © 2011–2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web.ajax;
19
20 import com.google.common.base.Optional;
21
22 import net.pterodactylus.sone.core.Core;
23 import net.pterodactylus.sone.data.Sone;
24 import net.pterodactylus.sone.web.WebInterface;
25 import net.pterodactylus.sone.web.page.FreenetRequest;
26 import net.pterodactylus.util.json.JsonObject;
27
28 /**
29  * AJAX page that lets the user trust a Sone.
30  *
31  * @see Core#trustSone(Sone, Sone)
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public class TrustAjaxPage extends JsonPage {
35
36         /**
37          * Creates a new “trust Sone” AJAX handler.
38          *
39          * @param webInterface
40          *            The Sone web interface
41          */
42         public TrustAjaxPage(WebInterface webInterface) {
43                 super("trustSone.ajax", webInterface);
44         }
45
46         /**
47          * {@inheritDoc}
48          */
49         @Override
50         protected JsonObject createJsonObject(FreenetRequest request) {
51                 Sone currentSone = getCurrentSone(request.getToadletContext(), false);
52                 if (currentSone == null) {
53                         return createErrorJsonObject("auth-required");
54                 }
55                 String soneId = request.getHttpRequest().getParam("sone");
56                 Optional<Sone> sone = webInterface.getCore().getSone(soneId);
57                 if (!sone.isPresent()) {
58                         return createErrorJsonObject("invalid-sone-id");
59                 }
60                 webInterface.getCore().trustSone(currentSone, sone.get());
61                 return createSuccessJsonObject().put("trustValue", webInterface.getCore().getPreferences().getPositiveTrust());
62         }
63
64 }