├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ ├── apcera │ │ └── nats │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── enc.go │ │ │ ├── nats.go │ │ │ ├── netchan.go │ │ │ └── parser.go │ ├── nats-io │ │ └── nats │ │ │ ├── LICENSE │ │ │ └── encoders │ │ │ └── builtin │ │ │ ├── default_enc.go │ │ │ ├── gob_enc.go │ │ │ └── json_enc.go │ ├── nvisibleinc │ │ └── go-ari-library │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ari_commands.go │ │ │ ├── ari_structs.go │ │ │ ├── go-ari-library.go │ │ │ ├── nats.go │ │ │ └── rabbitmq.go │ └── streadway │ │ └── amqp │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── allocator.go │ │ ├── auth.go │ │ ├── certs.sh │ │ ├── channel.go │ │ ├── confirms.go │ │ ├── connection.go │ │ ├── consumers.go │ │ ├── delivery.go │ │ ├── doc.go │ │ ├── fuzz.go │ │ ├── gen.sh │ │ ├── read.go │ │ ├── return.go │ │ ├── spec091.go │ │ ├── types.go │ │ ├── uri.go │ │ └── write.go │ └── golang.org │ └── x │ └── net │ ├── LICENSE │ ├── PATENTS │ └── websocket │ ├── client.go │ ├── hybi.go │ ├── server.go │ └── websocket.go ├── LICENSE ├── README.md ├── docs └── images │ ├── app-topic.jpg │ ├── application-topic-distribution.jpg │ └── dialog-topics.jpg ├── go-ari-proxy.go └── proxy_structs.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | go-ari-proxy 2 | config.json 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/TODO.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/enc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/nats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/nats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/netchan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/netchan.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/apcera/nats/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/apcera/nats/parser.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nats-io/nats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nats-io/nats/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nats-io/nats/encoders/builtin/default_enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nats-io/nats/encoders/builtin/default_enc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nats-io/nats/encoders/builtin/gob_enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nats-io/nats/encoders/builtin/gob_enc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nats-io/nats/encoders/builtin/json_enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nats-io/nats/encoders/builtin/json_enc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/ari_commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/ari_commands.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/ari_structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/ari_structs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/go-ari-library.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/go-ari-library.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/nats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/nats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/rabbitmq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/nvisibleinc/go-ari-library/rabbitmq.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/allocator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/allocator.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/certs.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/channel.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/confirms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/confirms.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/connection.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/consumers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/consumers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/delivery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/delivery.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/fuzz.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/gen.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/read.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/return.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/spec091.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/spec091.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/uri.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/streadway/amqp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/github.com/streadway/amqp/write.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/Godeps/_workspace/src/golang.org/x/net/websocket/websocket.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/app-topic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/docs/images/app-topic.jpg -------------------------------------------------------------------------------- /docs/images/application-topic-distribution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/docs/images/application-topic-distribution.jpg -------------------------------------------------------------------------------- /docs/images/dialog-topics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/docs/images/dialog-topics.jpg -------------------------------------------------------------------------------- /go-ari-proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/go-ari-proxy.go -------------------------------------------------------------------------------- /proxy_structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvisibleinc/go-ari-proxy/HEAD/proxy_structs.go --------------------------------------------------------------------------------