本文整理匯總了Golang中get/2cloud/org/twocloud.RequestBundle.GetNotification方法的典型用法代碼示例。如果您正苦於以下問題:Golang RequestBundle.GetNotification方法的具體用法?Golang RequestBundle.GetNotification怎麽用?Golang RequestBundle.GetNotification使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類get/2cloud/org/twocloud.RequestBundle
的用法示例。
在下文中一共展示了RequestBundle.GetNotification方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: deleteNotification
func deleteNotification(w http.ResponseWriter, r *twocloud.RequestBundle) {
username := r.Request.URL.Query().Get(":username")
user := r.AuthUser
if strings.ToLower(username) != strings.ToLower(r.AuthUser.Username) {
if !r.AuthUser.IsAdmin {
Respond(w, r, http.StatusUnauthorized, "You don't have access to that user's notifications.", []interface{}{})
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
}
}
notificationID, err := strconv.ParseUint(r.Request.URL.Query().Get(":notification"), 10, 64)
if err != nil {
Respond(w, r, http.StatusBadRequest, "Invalid notification ID", []interface{}{})
return
}
notification, err := r.GetNotification(notificationID)
if err != nil {
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
if notification.DestinationType == "user" && notification.Destination != user.ID {
Respond(w, r, http.StatusBadRequest, "That notification doesn't belong to that user.", []interface{}{})
return
} else if notification.DestinationType == "device" {
device, err := r.GetDevice(notification.Destination)
if err != nil {
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
if device.UserID != user.ID {
Respond(w, r, http.StatusBadRequest, "That notification does not belong to that user.", []interface{}{})
return
}
}
err = r.DeleteNotification(notification)
if err != nil {
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
Respond(w, r, http.StatusOK, "Successfully deleted the notification", []interface{}{notification})
return
}
示例2: markNotificationRead
func markNotificationRead(w http.ResponseWriter, r *twocloud.RequestBundle) {
username := r.Request.URL.Query().Get(":username")
user := r.AuthUser
var err error
if strings.ToLower(username) != strings.ToLower(r.AuthUser.Username) {
if !r.AuthUser.IsAdmin {
Respond(w, r, http.StatusUnauthorized, "You don't have access to that user's notifications.", []interface{}{})
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
}
}
notificationID, err := strconv.ParseUint(r.Request.URL.Query().Get(":notification"), 10, 64)
if err != nil {
Respond(w, r, http.StatusBadRequest, "Invalid notification ID", []interface{}{})
return
}
notification, err := r.GetNotification(notificationID)
if err != nil {
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
if notification.DestinationType == "user" && notification.Destination != user.ID {
Respond(w, r, http.StatusBadRequest, "That notification doesn't belong to that user.", []interface{}{})
return
} else if notification.DestinationType == "device" {
device, err := r.GetDevice(notification.Destination)
if err != nil {
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
if device.UserID != user.ID {
Respond(w, r, http.StatusBadRequest, "That notification does not belong to that user.", []interface{}{})
return
}
}
var req twocloud.Notification
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
}
if req.Unread {
Respond(w, r, http.StatusBadRequest, "Unread cannot be true.", []interface{}{})
return
}
notification.Unread = req.Unread
notification, err = r.MarkNotificationRead(notification)
if err != nil {
Respond(w, r, http.StatusInternalServerError, "Internal server error", []interface{}{})
return
}
Respond(w, r, http.StatusOK, "Successfully updated the notification", []interface{}{notification})
return
}