--- /dev/null
+package com.gitblit.transport.ssh.commands;
+
+import com.gitblit.models.UserModel;
+
+public class PluginDispatchCommand extends DispatchCommand {
+
+ @Override
+ protected void registerCommands(UserModel user) {
+ // no op
+ }
+}
*/
package com.gitblit.transport.ssh.commands;
+import java.util.List;
+
+import ro.fortsoft.pf4j.PluginWrapper;
+
import com.gitblit.manager.IGitblit;
import com.gitblit.models.UserModel;
import com.gitblit.transport.ssh.SshDaemonClient;
registerDispatcher(user, GitblitDispatcher.class);
registerDispatcher(user, GitDispatcher.class);
- // TODO register plugin dispatchers here
+ List<SshCommand> exts = gitblit.getExtensions(SshCommand.class);
+ for (SshCommand sshCommand : exts) {
+ PluginDispatchCommand pluginCmd = new PluginDispatchCommand();
+ PluginWrapper wrapper = gitblit.whichPlugin(sshCommand.getClass());
+ pluginCmd.registerCommand(user, sshCommand.getClass());
+ // TODO(davido): add dispatcher registration per plugin name
+ //registerDispatcher(wrapper.getDescriptor().getPluginId(), pluginCmd);
+ }
}
@Override
import org.apache.sshd.server.Environment;
-public abstract class SshCommand extends BaseCommand {
+import ro.fortsoft.pf4j.ExtensionPoint;
+
+public abstract class SshCommand extends BaseCommand implements ExtensionPoint {
protected PrintWriter stdout;
protected PrintWriter stderr;