Merge pull request #1120 from krishnasrinivas/version-check

UI: implement rpc call to return UI version
This commit is contained in:
Harshavardhana 2016-02-11 11:07:57 -08:00
commit f0e2edd632
2 changed files with 9 additions and 0 deletions

View File

@ -36,6 +36,9 @@ type ServerInfoArgs struct{}
// ListBucketsArgs - list bucket args.
type ListBucketsArgs struct{}
// GenericArgs - empty struct
type GenericArgs struct{}
// DiskInfoRep - disk info reply.
type DiskInfoRep struct {
DiskInfo disk.Info `json:"diskInfo"`

View File

@ -51,6 +51,12 @@ func isAuthenticated(req *http.Request) bool {
return tokenRequest.Valid
}
// GetUIVersion - get UI version
func (web WebAPI) GetUIVersion(r *http.Request, args *GenericArgs, reply *GenericRep) error {
reply.UIVersion = uiVersion
return nil
}
// ServerInfo - get server info.
func (web *WebAPI) ServerInfo(r *http.Request, args *ServerInfoArgs, reply *ServerInfoRep) error {
if !isAuthenticated(r) {