1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Prevent locking encrypted

This commit is contained in:
Zack Scholl 2017-03-22 13:42:51 -06:00
parent 41cdfda98a
commit 59af266a12

View File

@ -75,10 +75,15 @@ func handlePageRequest(c *gin.Context) {
p.Update("*This page has now self-destructed.*\n\n" + p.Text.GetCurrent())
p.Erase()
}
if command == "/erase" && !p.IsLocked && !p.IsEncrypted {
p.Erase()
c.Redirect(302, "/"+page+"/edit")
return
if command == "/erase" {
if !p.IsLocked && !p.IsEncrypted {
p.Erase()
c.Redirect(302, "/"+page+"/edit")
return
} else {
c.Redirect(302, "/"+page+"/view")
return
}
}
rawText := p.Text.GetCurrent()
rawHTML := p.RenderedPage
@ -189,6 +194,10 @@ func handleLock(c *gin.Context) {
return
}
p := Open(json.Page)
if p.IsEncrypted {
c.JSON(http.StatusOK, gin.H{"success": false, "message": "Encrypted"})
return
}
var message string
if p.IsLocked {
err2 := CheckPasswordHash(json.Passphrase, p.PassphraseToUnlock)