Browse Source

removed extra info, link and pin should be sufficient for now

master
David Haukeness 5 years ago
parent
commit
9a7b9156c9
No known key found for this signature in database
GPG Key ID: 54F2372DDB7F9462
  1. 17
      commands.go

17
commands.go

@ -1,10 +1,8 @@
package main package main
import ( import (
"bytes"
"fmt" "fmt"
"log" "log"
"text/tabwriter"
"samhofi.us/x/keybase/types/chat1" "samhofi.us/x/keybase/types/chat1"
) )
@ -17,17 +15,6 @@ func (b *bot) setupMeeting(convid chat1.ConvIDStr, msgid chat1.MessageID, words
b.k.SendMessageByConvID(convid, "I'm sorry, i'm not sure what happened... I was unable to set up a new meeting.\nI've written the appropriate logs and notified my humans.") b.k.SendMessageByConvID(convid, "I'm sorry, i'm not sure what happened... I was unable to set up a new meeting.\nI've written the appropriate logs and notified my humans.")
return return
} }
var buf bytes.Buffer message := fmt.Sprintf("Here's your meeting:\n>URL: %s\n>PIN: %s", meeting.getURL(), meeting.getPIN())
w := tabwriter.NewWriter(&buf, 0, 4, 3, ' ', 0) b.k.SendMessageByConvID(convid, message)
fmt.Fprintln(w, "Here's your meeting:")
fmt.Fprintf(w, "URL:\t%s\n", meeting.getURL())
fmt.Fprintf(w, "PIN:\t%s\n", meeting.getPIN())
fmt.Fprintln(w, "Dial In:\t")
fmt.Fprintln(w, "```")
for _, phone := range meeting.Phone {
fmt.Fprintf(w, " %s\t%s\t\n", phone.Country, phone.Number)
}
fmt.Fprintln(w, "```")
w.Flush()
b.k.SendMessageByConvID(convid, buf.String())
} }

Loading…
Cancel
Save