本文整理匯總了Golang中github.com/caltechlibrary/cait.ArchivesSpaceAPI.GetLocation方法的典型用法代碼示例。如果您正苦於以下問題:Golang ArchivesSpaceAPI.GetLocation方法的具體用法?Golang ArchivesSpaceAPI.GetLocation怎麽用?Golang ArchivesSpaceAPI.GetLocation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/caltechlibrary/cait.ArchivesSpaceAPI
的用法示例。
在下文中一共展示了ArchivesSpaceAPI.GetLocation方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: runLocationCmd
func runLocationCmd(api *cait.ArchivesSpaceAPI, cmd *command) (string, error) {
if err := api.Login(); err != nil {
return "", err
}
location := new(cait.Location)
if cmd.Payload != "" {
err := json.Unmarshal([]byte(cmd.Payload), &location)
if err != nil {
return "", fmt.Errorf("Could not decode %s, error: %s", cmd.Payload, err)
}
}
locationID := cait.URIToID(location.URI)
switch cmd.Action {
case "create":
response, err := api.CreateLocation(location)
if err != nil {
return "", err
}
if response.Status != "Created" {
return "", fmt.Errorf("Create location status %s, %s", location.URI, response)
}
src, err := json.Marshal(response)
if err != nil {
return "", err
}
return string(src), nil
case "list":
if locationID == 0 {
locations, err := api.ListLocations()
if err != nil {
return "", fmt.Errorf(`{"error": %q}`, err)
}
src, err := json.Marshal(locations)
if err != nil {
return "", fmt.Errorf(`{"error": "Cannot JSON encode %s %s"}`, cmd.Payload, err)
}
return string(src), nil
}
location, err := api.GetLocation(locationID)
if err != nil {
return "", fmt.Errorf(`{"error": %q}`, err)
}
src, err := json.Marshal(location)
if err != nil {
return "", fmt.Errorf(`{"error": "Cannot find %s %s"}`, cmd.Payload, err)
}
return string(src), nil
case "update":
responseMsg, err := api.UpdateLocation(location)
if err != nil {
return "", err
}
src, err := json.Marshal(responseMsg)
return string(src), err
case "delete":
location, err := api.GetLocation(locationID)
if err != nil {
return "", err
}
responseMsg, err := api.DeleteLocation(location)
if err != nil {
return "", err
}
src, err := json.Marshal(responseMsg)
return string(src), err
case "export":
err := api.ExportLocations()
if err != nil {
return "", fmt.Errorf("Exporting /locations, %s", err)
}
return `{"status": "ok"}`, nil
}
return "", fmt.Errorf("action %s not implemented for %s", cmd.Action, cmd.Subject)
}