mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
22 lines
520 B
Go
22 lines
520 B
Go
|
package wray
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
type Transport interface {
|
||
|
isUsable(string) bool
|
||
|
connectionType() string
|
||
|
send(map[string]interface{}) (Response, error)
|
||
|
setUrl(string)
|
||
|
}
|
||
|
|
||
|
func SelectTransport(client *FayeClient, transportTypes []string, disabled []string) (Transport, error) {
|
||
|
for _, transport := range registeredTransports {
|
||
|
if contains(transport.connectionType(), transportTypes) && transport.isUsable(client.url) {
|
||
|
return transport, nil
|
||
|
}
|
||
|
}
|
||
|
return nil, errors.New("No usable transports available")
|
||
|
}
|