TaskFlow/views/deleteViews.go

156 lines
4.1 KiB
Go
Raw Normal View History

2016-01-31 14:20:01 +08:00
package views
2016-02-01 22:34:19 +08:00
/*
Holds the delete related view handlers
*/
2016-01-31 14:20:01 +08:00
import (
"log"
"net/http"
"strconv"
2016-02-01 21:45:04 +08:00
"github.com/thewhitetulip/Tasks/db"
2016-05-09 10:11:05 +08:00
"github.com/thewhitetulip/Tasks/sessions"
2016-02-06 18:02:46 +08:00
"github.com/thewhitetulip/Tasks/utils"
2016-01-31 14:20:01 +08:00
)
//TrashTaskFunc is used to populate the trash tasks
func TrashTaskFunc(w http.ResponseWriter, r *http.Request) {
//for best UX we want the user to be returned to the page making
//the delete transaction, we use the r.Referer() function to get the link
2016-02-06 18:02:46 +08:00
redirectUrl := utils.GetRedirectUrl(r.Referer())
2016-05-09 10:11:05 +08:00
if r.Method == "GET" && sessions.IsLoggedIn(r) {
2016-01-31 14:20:01 +08:00
id, err := strconv.Atoi(r.URL.Path[len("/trash/"):])
if err != nil {
log.Println("TrashTaskFunc", err)
2016-02-06 18:02:46 +08:00
message = "Incorrect command"
http.Redirect(w, r, redirectUrl, http.StatusFound)
2016-01-31 14:20:01 +08:00
} else {
err = db.TrashTask(id)
if err != nil {
message = "Error trashing task"
} else {
message = "Task trashed"
}
http.Redirect(w, r, redirectUrl, http.StatusFound)
2016-01-31 14:20:01 +08:00
}
} else {
message = "Method not allowed"
http.Redirect(w, r, redirectUrl, http.StatusFound)
2016-01-31 14:20:01 +08:00
}
}
//RestoreTaskFunc is used to restore task from trash, handles "/restore/" URL
func RestoreTaskFunc(w http.ResponseWriter, r *http.Request) {
2016-05-09 10:11:05 +08:00
if r.Method == "GET" && sessions.IsLoggedIn(r) {
2016-01-31 14:20:01 +08:00
id, err := strconv.Atoi(r.URL.Path[len("/restore/"):])
if err != nil {
log.Println(err)
2016-02-01 21:45:04 +08:00
http.Redirect(w, r, "/deleted", http.StatusBadRequest)
2016-01-31 14:20:01 +08:00
} else {
err = db.RestoreTask(id)
if err != nil {
message = "Restore failed"
} else {
message = "Task restored"
}
http.Redirect(w, r, "/deleted/", http.StatusFound)
}
} else {
message = "Method not allowed"
http.Redirect(w, r, "/", http.StatusFound)
}
}
//DeleteTaskFunc is used to delete a task, trash = move to recycle bin, delete = permanent delete
func DeleteTaskFunc(w http.ResponseWriter, r *http.Request) {
2016-05-09 10:11:05 +08:00
if r.Method == "GET" && sessions.IsLoggedIn(r) {
2016-01-31 14:20:01 +08:00
id := r.URL.Path[len("/delete/"):]
if id == "all" {
2016-02-01 21:45:04 +08:00
err := db.DeleteAll()
if err != nil {
message = "Error deleting tasks"
http.Redirect(w, r, "/", http.StatusInternalServerError)
}
2016-01-31 14:20:01 +08:00
http.Redirect(w, r, "/", http.StatusFound)
} else {
id, err := strconv.Atoi(id)
if err != nil {
log.Println(err)
2016-02-01 21:45:04 +08:00
http.Redirect(w, r, "/", http.StatusBadRequest)
2016-01-31 14:20:01 +08:00
} else {
err = db.DeleteTask(id)
if err != nil {
message = "Error deleting task"
} else {
message = "Task deleted"
}
http.Redirect(w, r, "/deleted", http.StatusFound)
2016-01-31 14:20:01 +08:00
}
}
} else {
message = "Method not allowed"
http.Redirect(w, r, "/", http.StatusFound)
}
}
//RestoreFromCompleteFunc restores the task from complete to pending
func RestoreFromCompleteFunc(w http.ResponseWriter, r *http.Request) {
2016-05-09 10:11:05 +08:00
if r.Method == "GET" && sessions.IsLoggedIn(r) {
2016-01-31 14:20:01 +08:00
id, err := strconv.Atoi(r.URL.Path[len("/incomplete/"):])
if err != nil {
log.Println(err)
2016-02-01 21:45:04 +08:00
http.Redirect(w, r, "/completed", http.StatusBadRequest)
2016-01-31 14:20:01 +08:00
} else {
err = db.RestoreTaskFromComplete(id)
if err != nil {
message = "Restore failed"
} else {
message = "Task restored"
}
2016-02-01 21:45:04 +08:00
http.Redirect(w, r, "/completed", http.StatusFound)
2016-01-31 14:20:01 +08:00
}
} else {
message = "Method not allowed"
2016-02-01 21:45:04 +08:00
http.Redirect(w, r, "/completed", http.StatusFound)
2016-01-31 14:20:01 +08:00
}
}
2016-02-06 14:58:00 +08:00
//DeleteCategoryFunc will delete any category
func DeleteCategoryFunc(w http.ResponseWriter, r *http.Request) {
2016-05-09 10:11:05 +08:00
if r.Method == "GET" && sessions.IsLoggedIn(r) {
2016-02-06 14:58:00 +08:00
categoryName := r.URL.Path[len("/del-category/"):]
err := db.DeleteCategoryByName(categoryName)
if err != nil {
message = "error deleting category"
} else {
message = "Category " + categoryName + " deleted"
}
http.Redirect(w, r, "/", http.StatusFound)
}
}
2016-02-17 00:53:15 +08:00
//DeleteCommentFunc will delete any category
func DeleteCommentFunc(w http.ResponseWriter, r *http.Request) {
2016-05-09 10:11:05 +08:00
if r.Method == "GET" && sessions.IsLoggedIn(r) {
2016-02-17 00:53:15 +08:00
id := r.URL.Path[len("/del-comment/"):]
commentID, err := strconv.Atoi(id)
if err != nil {
http.Redirect(w, r, "/", http.StatusBadRequest)
return
}
err = db.DeleteCommentByID(commentID)
if err != nil {
message = "comment not deleted"
} else {
message = "comment deleted"
}
http.Redirect(w, r, "/", http.StatusFound)
}
}