Rename Command.Reply to Command.Response.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / FcpInterface.java
1 /*
2  * Sone - FcpInterface.java - Copyright © 2011 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.fcp;
19
20 import java.util.Collections;
21 import java.util.HashMap;
22 import java.util.Map;
23
24 import net.pterodactylus.sone.core.Core;
25 import net.pterodactylus.sone.freenet.fcp.Command;
26 import net.pterodactylus.sone.freenet.fcp.FcpException;
27 import net.pterodactylus.sone.freenet.fcp.Command.AccessType;
28 import net.pterodactylus.sone.freenet.fcp.Command.Response;
29 import freenet.pluginmanager.FredPluginFCP;
30 import freenet.pluginmanager.PluginNotFoundException;
31 import freenet.pluginmanager.PluginReplySender;
32 import freenet.support.SimpleFieldSet;
33 import freenet.support.api.Bucket;
34
35 /**
36  * Implementation of an FCP interface for other clients or plugins to
37  * communicate with Sone.
38  *
39  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
40  */
41 public class FcpInterface {
42
43         /** All available FCP commands. */
44         private final Map<String, Command> commands = Collections.synchronizedMap(new HashMap<String, Command>());
45
46         /**
47          * Creates a new FCP interface.
48          *
49          * @param core
50          *            The core
51          */
52         public FcpInterface(Core core) {
53                 commands.put("Version", new VersionCommand());
54                 commands.put("GetLocalSones", new GetLocalSonesCommand(core));
55                 commands.put("GetPostFeed", new GetPostFeedCommand(core));
56         }
57
58         /**
59          * Handles a plugin FCP request.
60          *
61          * @param pluginReplySender
62          *            The reply sender
63          * @param parameters
64          *            The message parameters
65          * @param data
66          *            The message data (may be {@code null})
67          * @param accessType
68          *            One of {@link FredPluginFCP#ACCESS_DIRECT},
69          *            {@link FredPluginFCP#ACCESS_FCP_FULL},
70          *            {@link FredPluginFCP#ACCESS_FCP_RESTRICTED}
71          */
72         public void handle(PluginReplySender pluginReplySender, SimpleFieldSet parameters, Bucket data, int accessType) {
73                 Command command = commands.get(parameters.get("Message"));
74                 if (command == null) {
75                         /* TODO - return error? */
76                         return;
77                 }
78                 String identifier = parameters.get("Identifier");
79                 if ((identifier == null) || (identifier.length() == 0)) {
80                         /* TODO - return error? */
81                         return;
82                 }
83                 try {
84                         Response reply = command.execute(parameters, data, AccessType.values()[accessType]);
85                         SimpleFieldSet replyParameters = reply.getReplyParameters();
86                         replyParameters.putOverwrite("Identifier", identifier);
87                         if (reply.hasData()) {
88                                 pluginReplySender.send(replyParameters, reply.getData());
89                         } else if (reply.hasBucket()) {
90                                 pluginReplySender.send(replyParameters, reply.getBucket());
91                         } else {
92                                 pluginReplySender.send(replyParameters);
93                         }
94                 } catch (FcpException fe1) {
95                         /* TODO - log, report */
96                 } catch (PluginNotFoundException pnfe1) {
97                         /* TODO - log */
98                 }
99         }
100
101 }