2021-01-29 04:47:48 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2021-03-05 05:47:47 +00:00
|
|
|
"log"
|
2021-01-29 04:47:48 +00:00
|
|
|
|
|
|
|
"github.com/densestvoid/groupme"
|
2021-05-08 19:36:09 +00:00
|
|
|
"github.com/karmanyaahm/wray"
|
2021-01-29 04:47:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This is not a real token. Please find yours by logging
|
|
|
|
// into the GroupMe development website: https://dev.groupme.com/
|
2021-03-04 06:21:23 +00:00
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
var authorizationToken = "ABCD"
|
2021-03-04 06:21:23 +00:00
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
//This adapts your faye library to an interface compatible with this library
|
|
|
|
type FayeClient struct {
|
|
|
|
*wray.FayeClient
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fc FayeClient) WaitSubscribe(channel string, msgChannel chan groupme.PushMessage) {
|
|
|
|
c_new := make(chan wray.Message)
|
|
|
|
fc.FayeClient.WaitSubscribe(channel, c_new)
|
|
|
|
//converting between types because channels don't support interfaces well
|
|
|
|
go func() {
|
|
|
|
for i := range c_new {
|
|
|
|
msgChannel <- i
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
//for authentication, specific implementation will vary based on faye library
|
|
|
|
type AuthExt struct{}
|
|
|
|
|
|
|
|
func (a *AuthExt) In(wray.Message) {}
|
|
|
|
func (a *AuthExt) Out(m wray.Message) {
|
|
|
|
groupme.OutMsgProc(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
//specific to faye library
|
|
|
|
type fayeLogger struct{}
|
|
|
|
|
|
|
|
func (l fayeLogger) Infof(f string, a ...interface{}) {
|
|
|
|
log.Printf("[INFO] : "+f, a...)
|
|
|
|
}
|
|
|
|
func (l fayeLogger) Errorf(f string, a ...interface{}) {
|
|
|
|
log.Printf("[ERROR] : "+f, a...)
|
|
|
|
}
|
|
|
|
func (l fayeLogger) Debugf(f string, a ...interface{}) {
|
|
|
|
log.Printf("[DEBUG] : "+f, a...)
|
|
|
|
}
|
|
|
|
func (l fayeLogger) Warnf(f string, a ...interface{}) {
|
|
|
|
log.Printf("[WARN] : "+f, a...)
|
|
|
|
}
|
2021-01-29 04:47:48 +00:00
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
// A short program that subscribes to 2 groups and 2 direct chats
|
|
|
|
// and prints out all recognized events in those
|
2021-01-29 04:47:48 +00:00
|
|
|
func main() {
|
2021-05-08 19:36:09 +00:00
|
|
|
|
|
|
|
//Create and initialize fayeclient
|
|
|
|
fc := FayeClient{wray.NewFayeClient(groupme.PushServer)}
|
|
|
|
fc.SetLogger(fayeLogger{})
|
|
|
|
fc.AddExtension(&AuthExt{})
|
|
|
|
//for additional logging uncomment the following line
|
|
|
|
//fc.AddExtension(fc.FayeClient)
|
|
|
|
|
|
|
|
//create push subscription and start listening
|
|
|
|
p := groupme.NewPushSubscription(context.Background())
|
|
|
|
go p.StartListening(context.TODO(), fc)
|
|
|
|
|
2021-01-29 04:47:48 +00:00
|
|
|
// Create a new client with your auth token
|
|
|
|
client := groupme.NewClient(authorizationToken)
|
2021-05-08 19:36:09 +00:00
|
|
|
User, _ := client.MyUser(context.Background())
|
|
|
|
//Subscribe to get messages and events for the specific user
|
|
|
|
err := p.SubscribeToUser(context.Background(), User.ID, authorizationToken)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
//handles (in this case prints) all messages
|
|
|
|
p.AddFullHandler(Handler{User: User})
|
2021-01-29 04:47:48 +00:00
|
|
|
|
|
|
|
// Get the groups your user is part of
|
|
|
|
groups, err := client.IndexGroups(
|
|
|
|
context.Background(),
|
|
|
|
&groupme.GroupsQuery{
|
|
|
|
Page: 0,
|
2021-05-08 19:36:09 +00:00
|
|
|
PerPage: 2,
|
2021-01-29 04:47:48 +00:00
|
|
|
Omit: "memberships",
|
2021-05-08 19:36:09 +00:00
|
|
|
})
|
2021-01-29 04:47:48 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2021-05-08 19:36:09 +00:00
|
|
|
//Subscribe to those groups
|
2021-03-04 06:21:23 +00:00
|
|
|
for _, j := range groups {
|
2021-03-05 05:47:47 +00:00
|
|
|
err = p.SubscribeToGroup(context.TODO(), j.ID, authorizationToken)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2021-03-04 06:21:23 +00:00
|
|
|
}
|
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
//get chats your user is part of
|
|
|
|
chats, err := client.IndexChats(context.Background(),
|
|
|
|
&groupme.IndexChatsQuery{
|
|
|
|
Page: 0,
|
|
|
|
PerPage: 2,
|
|
|
|
})
|
|
|
|
//subscribe to all those chats
|
|
|
|
for _, j := range chats {
|
|
|
|
err = p.SubscribeToDM(context.TODO(), j.LastMessage.ConversationID, authorizationToken)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2021-01-29 04:47:48 +00:00
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
//blocking
|
2021-03-04 06:21:23 +00:00
|
|
|
<-make(chan (struct{}))
|
|
|
|
}
|
2021-01-29 04:47:48 +00:00
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
//Following example handlers print out all data
|
2021-03-04 06:21:23 +00:00
|
|
|
type Handler struct {
|
|
|
|
User *groupme.User
|
|
|
|
}
|
2021-01-29 04:47:48 +00:00
|
|
|
|
2021-03-04 06:21:23 +00:00
|
|
|
func (h Handler) HandleError(e error) {
|
|
|
|
fmt.Println(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h Handler) HandleTextMessage(msg groupme.Message) {
|
2021-03-05 05:43:05 +00:00
|
|
|
fmt.Println(msg.Text, msg.Name, msg.Attachments)
|
2021-03-04 06:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h Handler) HandleJoin(group groupme.ID) {
|
|
|
|
fmt.Println("User joined group with id", group.String())
|
|
|
|
}
|
|
|
|
|
2021-05-08 19:36:09 +00:00
|
|
|
func (h Handler) HandleLike(msg groupme.Message) {
|
|
|
|
fmt.Println(msg.ID, "liked by", msg.FavoritedBy)
|
2021-03-04 06:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h Handler) HandlerMembership(i groupme.ID) {
|
|
|
|
fmt.Println("Membership event on", i.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h Handler) HandleGroupTopic(group groupme.ID, newTopic string) {
|
|
|
|
fmt.Println(group.String(), "has new topic of", newTopic)
|
|
|
|
}
|
|
|
|
func (h Handler) HandleGroupName(group groupme.ID, newName string) {
|
|
|
|
fmt.Println(group.String(), "has new name of", newName)
|
|
|
|
}
|
|
|
|
func (h Handler) HandleGroupAvatar(group groupme.ID, newAvatar string) {
|
|
|
|
fmt.Println(group.String(), "has new avatar url of", newAvatar)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h Handler) HandleLikeIcon(group groupme.ID, PackID, PackIndex int, Type string) {
|
|
|
|
//Not sure how to use without groupme icon packs
|
|
|
|
if len(Type) == 0 {
|
|
|
|
fmt.Println("Default like icon set")
|
|
|
|
return
|
2021-01-29 04:47:48 +00:00
|
|
|
}
|
2021-03-04 06:21:23 +00:00
|
|
|
fmt.Println(group.String(), "has new like icon of", PackID, PackIndex, Type)
|
|
|
|
}
|
2021-01-29 04:47:48 +00:00
|
|
|
|
2021-03-04 06:21:23 +00:00
|
|
|
func (h Handler) HandleNewNickname(group groupme.ID, user groupme.ID, newName string) {
|
|
|
|
fmt.Printf("In group %s, user %s has new nickname %s\n", group.String(), user.String(), newName)
|
|
|
|
}
|
|
|
|
func (h Handler) HandleNewAvatarInGroup(group groupme.ID, user groupme.ID, avatarURL string) {
|
|
|
|
if avatarURL == "" {
|
|
|
|
//get default avatar
|
|
|
|
avatarURL = h.User.ImageURL
|
|
|
|
}
|
|
|
|
fmt.Printf("In group %s, user %s has new avatar with url %s\n", group.String(), user.String(), avatarURL)
|
2021-01-29 04:47:48 +00:00
|
|
|
}
|
2021-03-05 05:43:05 +00:00
|
|
|
|
|
|
|
func (h Handler) HandleMembers(group groupme.ID, members []groupme.Member, added bool) {
|
|
|
|
action := "removed"
|
|
|
|
if added {
|
|
|
|
action = "added"
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("In group %s, users %v %s\n", group.String(), members, action)
|
|
|
|
}
|