summaryrefslogtreecommitdiff
path: root/pwreset.go
blob: 92bbbc46dd8dea3e0af116f3c887c914738c6c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package main

import (
	"code.google.com/p/go.crypto/bcrypt"
	"github.com/gorilla/sessions"
	"kch42.de/gostuff/mailremind/model"
	"log"
	"net/http"
)

type pwresetTpldata struct {
	Error, Success, Code, UID string
}

func pwreset(user model.User, sess *sessions.Session, req *http.Request) interface{} {
	if err := req.ParseForm(); err != nil {
		return &pwresetTpldata{Error: "Could not understand formdata."}
	}

	code := req.FormValue("Code")
	_uid := req.FormValue("U")
	pw1 := req.FormValue("Password")
	pw2 := req.FormValue("PasswordAgain")

	if code == "" {
		return &pwresetTpldata{Error: "Wrong password reset code"}
	}

	uid, err := db.ParseDBID(_uid)
	if err != nil {
		return &pwresetTpldata{Error: "Invalid user ID"}
	}

	if user, err = dbcon.UserByID(uid); err != nil {
		return &pwresetTpldata{Error: "User not found"}
	}

	if user.ActivationCode() != code {
		return &pwresetTpldata{Error: "Wrong activation code"}
	}

	outdata := &pwresetTpldata{UID: _uid, Code: code}

	if req.Method != "POST" {
		return outdata
	}

	if pw1 == "" {
		outdata.Error = "Password must not be empty."
		return outdata
	}

	if pw1 != pw2 {
		outdata.Error = "Passwords are not identical."
		return outdata
	}

	hash, err := bcrypt.GenerateFromPassword([]byte(pw1), bcrypt.DefaultCost)
	if err != nil {
		log.Printf("Could not has password: %s", err)
		outdata.Error = "Failed hashing you password. If this happens again, please contact support."
		return outdata
	}

	if err := user.SetPWHash(hash); err != nil {
		log.Printf("Error while storing new password: %s", err)
		outdata.Error = "Could not store password. If this happens again, please contact support."
		return outdata
	}

	if err := user.SetActivationCode(""); err != nil {
		log.Printf("Error resetting acCode: %s", err)
	}

	outdata.Success = "Password was changed"
	return outdata
}