Do the redirections properly
This commit is contained in:
parent
840fd3ed47
commit
de89cbc931
2 changed files with 19 additions and 2 deletions
12
admin.go
12
admin.go
|
@ -34,7 +34,11 @@ func deleteHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
db.RemoveBook(id)
|
db.RemoveBook(id)
|
||||||
sess.Notify("Removed book!", "The book '"+book.Title+"' it's completly removed", "success")
|
sess.Notify("Removed book!", "The book '"+book.Title+"' it's completly removed", "success")
|
||||||
sess.Save(w, r)
|
sess.Save(w, r)
|
||||||
http.Redirect(w, r, "/", 307) //FIXME: if new return to /new/
|
if book.Active {
|
||||||
|
http.Redirect(w, r, "/", 307)
|
||||||
|
} else {
|
||||||
|
http.Redirect(w, r, "/new/", 307)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func editHandler(w http.ResponseWriter, r *http.Request) {
|
func editHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
@ -102,7 +106,11 @@ func saveHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
sess.Notify("Book Modified!", "", "success")
|
sess.Notify("Book Modified!", "", "success")
|
||||||
sess.Save(w, r)
|
sess.Save(w, r)
|
||||||
http.Redirect(w, r, "/book/"+idStr, 307)
|
if db.BookActive(id) {
|
||||||
|
http.Redirect(w, r, "/book/"+idStr, 307)
|
||||||
|
} else {
|
||||||
|
http.Redirect(w, r, "/new/", 307)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type newBook struct {
|
type newBook struct {
|
||||||
|
|
|
@ -127,6 +127,15 @@ func (d *DB) GetNewBooks()(books []Book, num int, err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (d *DB) BookActive(id bson.ObjectId) bool {
|
||||||
|
var book Book
|
||||||
|
err := d.books.Find(bson.M{"_id": id}).One(&book)
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return book.Active
|
||||||
|
}
|
||||||
|
|
||||||
type tagsList []struct {
|
type tagsList []struct {
|
||||||
Subject string "_id"
|
Subject string "_id"
|
||||||
Count int "value"
|
Count int "value"
|
||||||
|
|
Reference in a new issue