summaryrefslogtreecommitdiffstats
path: root/handlers/bind.go
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2015-07-10 20:50:39 +0000
committerBrian Cully <bjc@kublai.com>2015-07-10 20:50:39 +0000
commitc8c4c1a9986ebafa48b66830a4f6f20f9529ff03 (patch)
treecf651e5233daa50e681dc58193d366f9691a9769 /handlers/bind.go
parent204f830396f84f2583d081221b5e253bed85bcf1 (diff)
downloadxmppbot-c8c4c1a9986ebafa48b66830a4f6f20f9529ff03.tar.gz
xmppbot-c8c4c1a9986ebafa48b66830a4f6f20f9529ff03.zip
Update for new goctl API.
Move handlers to their own package.
Diffstat (limited to 'handlers/bind.go')
-rw-r--r--handlers/bind.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/handlers/bind.go b/handlers/bind.go
new file mode 100644
index 0000000..cdacf06
--- /dev/null
+++ b/handlers/bind.go
@@ -0,0 +1,28 @@
+package handlers
+
+import (
+ "fmt"
+
+ "github.com/bjc/goctl"
+)
+
+type Bind struct{}
+
+func (bh Bind) Name() string {
+ return "bind"
+}
+
+func (bh Bind) Help() string {
+ return "binds XMPP resource"
+}
+
+func (bh Bind) Run(_ *goctl.Goctl, args []string) string {
+ if xb == nil {
+ return "ERROR: bot is not connected."
+ }
+
+ if err := xb.Bind(); err != nil {
+ return fmt.Sprintf("ERROR: couldn't bind resource: %s.", err)
+ }
+ return "ok"
+}