本文整理匯總了Golang中get/2cloud/org/twocloud.RequestBundle.BroadcastNotifications方法的典型用法代碼示例。如果您正苦於以下問題:Golang RequestBundle.BroadcastNotifications方法的具體用法?Golang RequestBundle.BroadcastNotifications怎麽用?Golang RequestBundle.BroadcastNotifications使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類get/2cloud/org/twocloud.RequestBundle
的用法示例。
在下文中一共展示了RequestBundle.BroadcastNotifications方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: sendNotification
func sendNotification(w http.ResponseWriter, r *twocloud.RequestBundle) {
if !r.AuthUser.IsAdmin {
Respond(w, r, http.StatusForbidden, "You don't have permission to send notifications.", []interface{}{})
return
}
var req notificationReq
body, err := ioutil.ReadAll(r.Request.Body)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error.", []interface{}{})
return
}
err = json.Unmarshal(body, &req)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusBadRequest, "Error decoding request.", []interface{}{})
return
}
username := r.Request.URL.Query().Get(":username")
if username != "" {
deviceIDstr := r.Request.URL.Query().Get(":device")
if deviceIDstr != "" {
deviceID, err := strconv.ParseUint(deviceIDstr, 10, 64)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusBadRequest, "Invalid device ID", []interface{}{})
return
}
device, err := r.GetDevice(deviceID)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
notifications, err := r.SendNotificationsToDevice(device, req.Notifications)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
Respond(w, r, http.StatusCreated, "Successfully created notifications", []interface{}{notifications})
return
}
id, err := r.GetUserID(username)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
user, err := r.GetUser(id)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
notifications, err := r.SendNotificationsToUser(user, req.Notifications)
if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
Respond(w, r, http.StatusCreated, "Successfully created notifications", []interface{}{notifications})
return
}
notifications, err := r.BroadcastNotifications(req.Notifications, req.Filter)
if err == twocloud.InvalidBroadcastFilter {
Respond(w, r, http.StatusBadRequest, err.Error(), []interface{}{})
return
} else if err != nil {
r.Log.Error(err.Error())
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
Respond(w, r, http.StatusCreated, "Successfully created notifications", []interface{}{notifications})
return
}