2015-08-27 20:05:24 -04:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package controller
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
router "github.com/gorilla/mux"
|
2015-09-18 20:40:45 -04:00
|
|
|
jsonrpc "github.com/gorilla/rpc/v2"
|
|
|
|
"github.com/gorilla/rpc/v2/json"
|
2015-09-15 22:38:30 -04:00
|
|
|
"github.com/minio/minio/pkg/controller/rpc"
|
2015-08-27 20:05:24 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// getRPCHandler rpc handler
|
|
|
|
func getRPCHandler() http.Handler {
|
2015-09-18 20:40:45 -04:00
|
|
|
s := jsonrpc.NewServer()
|
|
|
|
s.RegisterCodec(json.NewCodec(), "application/json")
|
2015-08-27 20:05:24 -04:00
|
|
|
s.RegisterService(new(rpc.VersionService), "Version")
|
|
|
|
s.RegisterService(new(rpc.DonutService), "Donut")
|
|
|
|
s.RegisterService(new(rpc.AuthService), "Auth")
|
2015-09-17 21:53:40 -04:00
|
|
|
s.RegisterService(new(rpc.ServerService), "Server")
|
2015-08-27 20:05:24 -04:00
|
|
|
// Add new RPC services here
|
|
|
|
return registerRPC(router.NewRouter(), s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// registerRPC - register rpc handlers
|
2015-09-18 20:40:45 -04:00
|
|
|
func registerRPC(mux *router.Router, s *jsonrpc.Server) http.Handler {
|
2015-08-27 20:05:24 -04:00
|
|
|
mux.Handle("/rpc", s)
|
2015-08-31 20:15:49 -04:00
|
|
|
return mux
|
2015-08-27 20:05:24 -04:00
|
|
|
}
|