aboutsummaryrefslogtreecommitdiff
path: root/examples/example_longpolling.go
blob: 67a0d7c5becdf1c832bb055c502158a81840ad9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// +build ignore

/**
 * Updates loop example
 */
package main

import (
	"context"
	"fmt"
	"log"
	"os"
	"os/signal"

	"github.com/neonxp/tamtam"
)

func main() {
	// Initialisation
	api := tamtam.New(os.Getenv("TOKEN"))

	// Some methods demo:
	info, err := api.Bots.GetBot()
	log.Printf("Get me: %#v %#v", info, err)

	ctx, cancel := context.WithCancel(context.Background())
	go func() {
		for {
			select {
			case upd := <-api.GetUpdates():
				log.Printf("Received: %#v", upd)
				switch upd := upd.(type) {
				case *tamtam.MessageCreatedUpdate:
					res, err := api.Messages.SendMessage(0, upd.Message.Sender.UserId, &tamtam.NewMessageBody{
						Text: fmt.Sprintf("Hello, %s! Your message: %s", upd.Message.Sender.Name, upd.Message.Body.Text),
					})
					log.Printf("Answer: %#v %#v", res, err)
				default:
					log.Printf("Unknown type: %#v", upd)
				}
			case <-ctx.Done():
				return
			}

		}
	}()
	go func() {
		exit := make(chan os.Signal)
		signal.Notify(exit, os.Kill, os.Interrupt)
		select {
		case <-exit:
			cancel()
		case <-ctx.Done():
			return
		}
	}()

	if err := api.UpdatesLoop(ctx); err != nil {
		log.Fatalln(err)
	}

}