|
| 1 | +// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly> |
| 2 | +// SPDX-License-Identifier: MIT |
| 3 | + |
| 4 | +//go:build !js |
| 5 | +// +build !js |
| 6 | + |
| 7 | +// delete-transceiver demonstrates Pion WebRTC's ability to delete rejected transceivers. |
| 8 | +package main |
| 9 | + |
| 10 | +import ( |
| 11 | + "encoding/json" |
| 12 | + "fmt" |
| 13 | + "net/http" |
| 14 | + "time" |
| 15 | + |
| 16 | + "github.com/pion/ice/v4" |
| 17 | + "github.com/pion/webrtc/v4" |
| 18 | +) |
| 19 | + |
| 20 | +var api *webrtc.API //nolint |
| 21 | +var peerConnection *webrtc.PeerConnection |
| 22 | + |
| 23 | +// Everything below is the Pion WebRTC API! Thanks for using it ❤️. |
| 24 | +func doOffer(w http.ResponseWriter, r *http.Request) { |
| 25 | + var err error |
| 26 | + peerConnection, err = api.NewPeerConnection(webrtc.Configuration{}) |
| 27 | + if err != nil { |
| 28 | + panic(err) |
| 29 | + } |
| 30 | + |
| 31 | + // Set the handler for ICE connection state |
| 32 | + // This will notify you when the peer has connected/disconnected |
| 33 | + peerConnection.OnICEConnectionStateChange(func(connectionState webrtc.ICEConnectionState) { |
| 34 | + fmt.Printf("ICE Connection State has changed: %s\n", connectionState.String()) |
| 35 | + }) |
| 36 | + |
| 37 | + // Send the current time via a DataChannel to the remote peer every 3 seconds |
| 38 | + peerConnection.OnDataChannel(func(d *webrtc.DataChannel) { |
| 39 | + d.OnOpen(func() { |
| 40 | + for range time.Tick(time.Second * 3) { |
| 41 | + if err = d.SendText(time.Now().String()); err != nil { |
| 42 | + panic(err) |
| 43 | + } |
| 44 | + } |
| 45 | + }) |
| 46 | + }) |
| 47 | + |
| 48 | + var offer webrtc.SessionDescription |
| 49 | + if err = json.NewDecoder(r.Body).Decode(&offer); err != nil { |
| 50 | + panic(err) |
| 51 | + } |
| 52 | + |
| 53 | + if err = peerConnection.SetRemoteDescription(offer); err != nil { |
| 54 | + panic(err) |
| 55 | + } |
| 56 | + |
| 57 | + // Create channel that is blocked until ICE Gathering is complete |
| 58 | + gatherComplete := webrtc.GatheringCompletePromise(peerConnection) |
| 59 | + |
| 60 | + answer, err := peerConnection.CreateAnswer(nil) |
| 61 | + if err != nil { |
| 62 | + panic(err) |
| 63 | + } else if err = peerConnection.SetLocalDescription(answer); err != nil { |
| 64 | + panic(err) |
| 65 | + } |
| 66 | + |
| 67 | + // Block until ICE Gathering is complete, disabling trickle ICE |
| 68 | + // we do this because we only can exchange one signaling message |
| 69 | + // in a production application you should exchange ICE Candidates via OnICECandidate |
| 70 | + <-gatherComplete |
| 71 | + |
| 72 | + response, err := json.Marshal(*peerConnection.LocalDescription()) |
| 73 | + if err != nil { |
| 74 | + panic(err) |
| 75 | + } |
| 76 | + |
| 77 | + w.Header().Set("Content-Type", "application/json") |
| 78 | + if _, err := w.Write(response); err != nil { |
| 79 | + panic(err) |
| 80 | + } |
| 81 | +} |
| 82 | + |
| 83 | +func doUpdate(w http.ResponseWriter, r *http.Request) { |
| 84 | + var err error |
| 85 | + var offer webrtc.SessionDescription |
| 86 | + if err = json.NewDecoder(r.Body).Decode(&offer); err != nil { |
| 87 | + panic(err) |
| 88 | + } |
| 89 | + |
| 90 | + if err = peerConnection.SetRemoteDescription(offer); err != nil { |
| 91 | + panic(err) |
| 92 | + } |
| 93 | + |
| 94 | + answer, err := peerConnection.CreateAnswer(nil) |
| 95 | + if err != nil { |
| 96 | + panic(err) |
| 97 | + } else if err = peerConnection.SetLocalDescription(answer); err != nil { |
| 98 | + panic(err) |
| 99 | + } |
| 100 | + response, err := json.Marshal(answer) |
| 101 | + if err != nil { |
| 102 | + panic(err) |
| 103 | + } |
| 104 | + |
| 105 | + w.Header().Set("Content-Type", "application/json") |
| 106 | + if _, err := w.Write(response); err != nil { |
| 107 | + panic(err) |
| 108 | + } |
| 109 | +} |
| 110 | + |
| 111 | +func main() { |
| 112 | + // Create a SettingEngine, this allows non-standard WebRTC behavior |
| 113 | + settingEngine := webrtc.SettingEngine{} |
| 114 | + |
| 115 | + // Listen on UDP Port 8443, will be used for all WebRTC traffic |
| 116 | + mux, err := ice.NewMultiUDPMuxFromPort(8443) |
| 117 | + if err != nil { |
| 118 | + panic(err) |
| 119 | + } |
| 120 | + fmt.Printf("Listening for WebRTC traffic at %d\n", 8443) |
| 121 | + settingEngine.SetICEUDPMux(mux) |
| 122 | + |
| 123 | + // Create a new API using our SettingEngine |
| 124 | + api = webrtc.NewAPI(webrtc.WithSettingEngine(settingEngine)) |
| 125 | + |
| 126 | + http.Handle("/", http.FileServer(http.Dir("."))) |
| 127 | + http.HandleFunc("/doOffer", doOffer) |
| 128 | + http.HandleFunc("/doUpdate", doUpdate) |
| 129 | + |
| 130 | + fmt.Println("Open http://localhost:8080 to access this demo") |
| 131 | + // nolint: gosec |
| 132 | + panic(http.ListenAndServe(":8080", nil)) |
| 133 | +} |
0 commit comments