本文整理汇总了Golang中duov6/com/objectstore/messaging.ObjectRequest.Extras方法的典型用法代码示例。如果您正苦于以下问题:Golang ObjectRequest.Extras方法的具体用法?Golang ObjectRequest.Extras怎么用?Golang ObjectRequest.Extras使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类duov6/com/objectstore/messaging.ObjectRequest
的用法示例。
在下文中一共展示了ObjectRequest.Extras方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: dispatchRequest
func dispatchRequest(r *http.Request, params martini.Params) (responseMessage string, isSuccess bool) { //result is JSON
objectRequest := messaging.ObjectRequest{}
paramMap := make(map[string]interface{})
objectRequest.Extras = paramMap
message, isSuccess := getObjectRequest(r, &objectRequest, params)
if isSuccess == false {
responseMessage = getQueryResponseString("Invalid Query Request", message, false, objectRequest.MessageStack, nil)
} else {
dispatcher := processors.Dispatcher{}
var repResponse repositories.RepositoryResponse = dispatcher.Dispatch(&objectRequest)
isSuccess = repResponse.IsSuccess
if isSuccess {
if repResponse.Body != nil {
responseMessage = string(repResponse.Body)
//If it's a FILE
if checkIfFile(params) != "NAF" {
rootsaveDirectory := ""
rootgetDirectory := ""
if runtime.GOOS == "linux" {
rootsaveDirectory = objectRequest.Configuration.ServerConfiguration["LinuxFileServer"]["SavePath"]
rootgetDirectory = objectRequest.Configuration.ServerConfiguration["LinuxFileServer"]["GetPath"]
} else {
rootsaveDirectory = objectRequest.Configuration.ServerConfiguration["WindowsFileServer"]["SavePath"]
rootgetDirectory = objectRequest.Configuration.ServerConfiguration["WindowsFileServer"]["GetPath"]
}
var sendRequest = FileServerMessaging.FileRequest{}
sendRequest.Body = repResponse.Body
sendRequest.FilePath = ""
sendRequest.RootSavePath = rootsaveDirectory
sendRequest.RootGetPath = rootgetDirectory
exe := FileServer.FileManager{}
fileResponse := exe.Download(&sendRequest)
if fileResponse.IsSuccess == true {
fmt.Println(fileResponse.Message)
} else {
fmt.Println(fileResponse.Message)
}
}
} else {
responseMessage = getQueryResponseString("Successfully completed request", repResponse.Message, isSuccess, objectRequest.MessageStack, repResponse.Data)
}
} else {
responseMessage = getQueryResponseString("Error occured while processing", repResponse.Message, isSuccess, objectRequest.MessageStack, nil)
}
}
return
}