本文整理汇总了Golang中techtraits/com/klaxon/router.Request.GetPathParams方法的典型用法代码示例。如果您正苦于以下问题:Golang Request.GetPathParams方法的具体用法?Golang Request.GetPathParams怎么用?Golang Request.GetPathParams使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类techtraits/com/klaxon/router.Request
的用法示例。
在下文中一共展示了Request.GetPathParams方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: getProject
//Get a specific project
func getProject(request router.Request) (int, []byte) {
projectDTO, err := GetProjectDTOFromGAE(request.GetPathParams()["project_id"], request.GetContext())
if err != nil && strings.Contains(err.Error(), "no such entity") {
log.Errorf(request.GetContext(), "Error retriving Project: %v", err)
return http.StatusNotFound, []byte("Project Not Found")
} else if err != nil {
log.Errorf(request.GetContext(), "Error retriving project: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
} else {
project, err := projectDTO.GetProject()
if err != nil {
log.Infof(request.GetContext(), "Error %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
projectJSON, err := json.MarshalIndent(project, "", " ")
if err != nil {
log.Infof(request.GetContext(), "Error %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
return http.StatusOK, projectJSON
}
}
示例2: getAlerts
//Get all alerts for a given project
func getAlerts(request router.Request) (int, []byte) {
alerts, err := GetAlertsFromGAE(request.GetPathParams()["project_id"], request.GetContext())
if err != nil {
log.Errorf(request.GetContext(), "Error retriving alerts: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
} else {
alertBytes, err := json.MarshalIndent(alerts, "", " ")
if err != nil {
log.Errorf(request.GetContext(), "Error retriving Alerts: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
return http.StatusOK, alertBytes
}
}
示例3: getSubscriptions
//Get all subscriptions for a given project
func getSubscriptions(request router.Request) (int, []byte) {
subscriptions, err := GetSubscriptionsFromGAE(request.GetPathParams()["project_id"], request.GetContext())
if err != nil {
log.Errorf(request.GetContext(), "Error retriving Subscriptions: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
subscriptionBytes, err := json.MarshalIndent(subscriptions, "", " ")
if err != nil {
log.Errorf(request.GetContext(), "Error retriving Subscriptions: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
return http.StatusOK, subscriptionBytes
}
示例4: checkProject
//TODO: Check if project is enabled
func checkProject(request router.Request) (int, []byte) {
//Get The project
projectId := request.GetPathParams()["project_id"]
projectObj, getProjectStatus, getProjectError := getProject(projectId, request.GetContext())
//Get Alerts
alerts, getAlertStatus, getAlertsError := getAlerts(projectId, request.GetContext())
//Get Subscriptions
subscriptions, getSubsStatus, getSubsError := getSubscriptions(projectId, request.GetContext())
if getProjectError == nil && getAlertsError == nil && getSubsError == nil {
//Check Alerts
return processAlerts(projectObj, alerts, subscriptions, request.GetContext())
} else {
return processError(getProjectStatus, getAlertStatus, getSubsStatus,
getProjectError, getAlertsError, getSubsError)
}
}
示例5: getSubscription
//Get a specific subscription for a project
func getSubscription(request router.Request) (int, []byte) {
subscription, err := GetSubscriptionFromGAE(request.GetPathParams()["project_id"], request.GetPathParams()["subscription_id"], request.GetContext())
if err != nil && strings.Contains(err.Error(), "no such entity") {
return http.StatusNotFound, []byte("Subscription not found")
} else if err != nil {
log.Errorf(request.GetContext(), "Error retriving Subsciption: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
} else {
subscriptionBytes, err := json.MarshalIndent(subscription, "", " ")
if err == nil {
return http.StatusOK, subscriptionBytes
} else {
log.Errorf(request.GetContext(), "Errror %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
}
}
示例6: postSubscription
//Create/Update an subscription for the given project
func postSubscription(request router.Request) (int, []byte) {
var subscription Subscription
err := json.Unmarshal(request.GetContent(), &subscription)
if err != nil {
log.Errorf(request.GetContext(), "error: %v", err)
return http.StatusBadRequest, []byte(err.Error())
}
subscription.Project = request.GetPathParams()["project_id"]
err = SaveSubscriptionToGAE(subscription, request.GetContext())
if err != nil {
log.Errorf(request.GetContext(), "error: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
return http.StatusOK, nil
}
示例7: getAlert
//Get a specific alert for a project
func getAlert(request router.Request) (int, []byte) {
alert, err := GetAlertFromGAE(request.GetPathParams()["project_id"], request.GetPathParams()["alert_id"], request.GetContext())
if err != nil && strings.Contains(err.Error(), "no such entity") {
log.Errorf(request.GetContext(), "Error retriving Alert: %v", err)
return http.StatusNotFound, []byte("Alert not found")
} else if err != nil {
log.Errorf(request.GetContext(), "Error retriving alert: %v", err)
return http.StatusBadRequest, []byte(err.Error())
} else {
var alertJSON, err = json.MarshalIndent(alert, "", " ")
if err == nil {
return http.StatusOK, alertJSON
} else {
log.Errorf(request.GetContext(), "Errror %v", err)
return http.StatusBadRequest, []byte(err.Error())
}
}
}
示例8: postAlert
//Create/Update an alert for the given project
func postAlert(request router.Request) (int, []byte) {
var alert Alert
err := json.Unmarshal(request.GetContent(), &alert)
if err != nil {
log.Infof(request.GetContext(), "error: %v", err)
return http.StatusBadRequest, []byte(err.Error())
}
//TODO Check Project Exists
alert.Project = request.GetPathParams()["project_id"]
err = SaveAlertToGAE(alert, request.GetContext())
if err != nil {
log.Infof(request.GetContext(), "error: %v", err)
return http.StatusInternalServerError, []byte(err.Error())
}
return http.StatusOK, nil
}