项目作者: vma

项目描述 :
freeswitch esl library for go
高级语言: Go
项目地址: git://github.com/vma/esl.git
创建时间: 2017-02-02T16:53:32Z
项目社区:https://github.com/vma/esl

开源协议:BSD 2-Clause "Simplified" License

下载


Description

esl is a go library to connect to freeSWITCH via esl.

Installation

Installation can be done as usual:

  1. $ go get github.com/vma/esl

How it works

esl.NewConnection create a new esl connection and take a ConnectionHandler interface
which defines the callbacks to handle the esl events.

Example of use

This simple example originate a call, park it and start music on hold when it is answered.
When the call is hanged up, we close the connection, which ends the con.HandleEvents() loop.

  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "github.com/vma/esl"
  6. )
  7. type Handler struct {
  8. CallId string
  9. BgJobId string
  10. }
  11. const (
  12. Caller = "+33184850000"
  13. Callee = "+33184850001"
  14. )
  15. func main() {
  16. handler := &Handler{}
  17. con, err := esl.NewConnection("127.0.0.1:8021", handler)
  18. if err != nil {
  19. log.Fatal("ERR connecting to freeswitch:", err)
  20. }
  21. con.HandleEvents()
  22. }
  23. func (h *Handler) OnConnect(con *esl.Connection) {
  24. con.SendRecv("event", "plain", "ALL")
  25. h.CallId, _ = con.Api("create_uuid")
  26. log.Println("call id:", h.CallId)
  27. h.BgJobId, _ = con.BgApi("originate", "{origination_uuid="+h.CallId+
  28. ",origination_caller_id_number="+Caller+"}sofia/gateway/provider/"+Callee, "&park()")
  29. log.Println("originate bg job id:", h.BgJobId)
  30. }
  31. func (h *Handler) OnDisconnect(con *esl.Connection, ev *esl.Event) {
  32. log.Println("esl disconnected:", ev)
  33. }
  34. func (h *Handler) OnClose(con *esl.Connection) {
  35. log.Println("esl connection closed")
  36. }
  37. func (h *Handler) OnEvent(con *esl.Connection, ev *esl.Event) {
  38. log.Printf("%s - event %s %s %s\n", ev.UId, ev.Name, ev.App, ev.AppData)
  39. fmt.Println(ev) // send to stderr as it is very verbose
  40. switch ev.Name {
  41. case esl.BACKGROUND_JOB:
  42. log.Printf("bg job result:%s\n", ev.GetTextBody())
  43. case esl.CHANNEL_ANSWER:
  44. log.Println("call answered, starting moh")
  45. con.Execute("playback", h.CallId, "local_stream://moh")
  46. case esl.CHANNEL_HANGUP:
  47. hupcause := ev.Get("Hangup-Cause")
  48. log.Printf("call terminated with cause %s", hupcause)
  49. con.Close()
  50. }
  51. }

TODO

  • add documentation
  • add tests
  • more usage examples