guichet/invite.go

556 lines
16 KiB
Go
Raw Normal View History

2020-02-14 17:57:25 +00:00
package main
import (
2020-02-14 20:58:34 +00:00
"bytes"
"crypto/rand"
"encoding/binary"
"encoding/hex"
2020-02-14 17:57:25 +00:00
"fmt"
"html/template"
2020-02-14 20:58:34 +00:00
"log"
2020-02-14 17:57:25 +00:00
"net/http"
"regexp"
"strings"
2023-07-20 08:21:51 +00:00
// "github.com/emersion/go-sasl"
// "github.com/emersion/go-smtp"
2020-02-14 17:57:25 +00:00
"github.com/go-ldap/ldap/v3"
2020-02-14 20:58:34 +00:00
"github.com/gorilla/mux"
2020-02-15 09:29:46 +00:00
"golang.org/x/crypto/argon2"
2020-02-14 17:57:25 +00:00
)
2020-02-14 20:58:34 +00:00
var EMAIL_REGEXP = regexp.MustCompile("^[a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$")
2020-02-14 17:57:25 +00:00
func checkInviterLogin(w http.ResponseWriter, r *http.Request) *LoginStatus {
2023-07-21 08:16:51 +00:00
2020-02-14 17:57:25 +00:00
login := checkLogin(w, r)
if login == nil {
return nil
}
2023-07-20 08:21:51 +00:00
// if !login.CanInvite {
// http.Error(w, "Not authorized to invite new users.", http.StatusUnauthorized)
// return nil
// }
2020-02-14 17:57:25 +00:00
return login
}
2020-02-14 20:58:34 +00:00
// New account creation directly from interface
2023-07-23 10:53:26 +00:00
func openNewUserLdap(config *ConfigFile) (*ldap.Conn, error) {
2023-07-23 11:02:09 +00:00
l, err := openLdap(config)
if err != nil {
2023-07-23 12:17:32 +00:00
log.Printf(fmt.Sprintf("openNewUserLdap 1 : %v %v", err, l))
log.Printf(fmt.Sprintf("openNewUserLdap 1 : %v", config))
2023-07-25 19:35:22 +00:00
// data.Common.ErrorMessage = err.Error()
2023-07-23 11:02:09 +00:00
}
err = l.Bind(config.NewUserDN, config.NewUserPassword)
2023-07-23 10:53:26 +00:00
if err != nil {
2023-07-23 12:23:21 +00:00
log.Printf(fmt.Sprintf("openNewUserLdap 2 : %v", err))
log.Printf(fmt.Sprintf("openNewUserLdap 2 : %v", config.NewUserDN))
log.Printf(fmt.Sprintf("openNewUserLdap 2 : %v", config.NewUserPassword))
2023-07-23 12:19:23 +00:00
log.Printf(fmt.Sprintf("openNewUserLdap 2 : %v", config))
2023-07-25 19:35:22 +00:00
// data.Common.ErrorMessage = err.Error()
2023-07-23 10:53:26 +00:00
}
return l, err
}
func handleLostPassword(w http.ResponseWriter, r *http.Request) {
2023-07-23 10:00:02 +00:00
templateLostPasswordPage := getTemplate("password_lost.html")
2023-07-25 12:27:58 +00:00
if checkLogin(w, r) != nil {
http.Redirect(w, r, "/", http.StatusTemporaryRedirect)
}
2023-07-24 14:32:10 +00:00
data := PasswordLostData{
2023-07-25 19:35:22 +00:00
Common: NestedCommonTplData{
CanAdmin: false,
LoggedIn: false},
2023-07-24 14:32:10 +00:00
}
2023-07-23 10:53:26 +00:00
if r.Method == "POST" {
r.ParseForm()
data.Username = strings.TrimSpace(strings.Join(r.Form["username"], ""))
data.Mail = strings.TrimSpace(strings.Join(r.Form["mail"], ""))
2023-07-23 06:34:06 +00:00
data.OtherMailbox = strings.TrimSpace(strings.Join(r.Form["othermailbox"], ""))
user := User{
2023-07-23 14:34:51 +00:00
CN: strings.TrimSpace(strings.Join(r.Form["username"], "")),
UID: strings.TrimSpace(strings.Join(r.Form["username"], "")),
Mail: strings.TrimSpace(strings.Join(r.Form["mail"], "")),
OtherMailbox: strings.TrimSpace(strings.Join(r.Form["othermailbox"], "")),
}
2023-07-23 10:53:26 +00:00
ldapConn, err := openNewUserLdap(config)
if err != nil {
2023-07-25 06:46:12 +00:00
log.Printf(fmt.Sprintf("handleLostPassword 99 : %v %v", err, ldapConn))
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2023-07-23 10:53:26 +00:00
}
err = passwordLost(user, config, ldapConn)
if err != nil {
2023-07-25 06:46:12 +00:00
log.Printf(fmt.Sprintf("handleLostPassword 104 : %v %v", err, ldapConn))
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2023-07-23 06:39:44 +00:00
} else {
2023-07-24 19:49:42 +00:00
err = ldapConn.Bind(config.NewUserDN, config.NewUserPassword)
if err != nil {
2023-07-25 06:46:12 +00:00
log.Printf(fmt.Sprintf("handleLostPassword 109 : %v %v", err, ldapConn))
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2023-07-24 19:49:42 +00:00
} else {
2023-07-25 19:35:22 +00:00
data.Common.Success = true
2023-07-24 19:49:42 +00:00
}
}
}
2023-07-25 19:35:22 +00:00
data.Common.CanAdmin = false
templateLostPasswordPage.Execute(w, data)
}
2020-02-14 20:58:34 +00:00
func handleInviteNewAccount(w http.ResponseWriter, r *http.Request) {
2023-07-21 12:15:44 +00:00
l, err := ldapOpen(w)
2023-07-21 12:21:03 +00:00
if err != nil {
2023-07-21 12:21:53 +00:00
log.Printf(fmt.Sprintf("58: %v %v", err, l))
2023-07-21 12:21:03 +00:00
}
// l.Bind(config.NewUserDN, config.NewUserPassword)
2023-07-21 07:51:57 +00:00
2023-07-21 11:02:25 +00:00
// login := checkInviterLogin(w, r)
// if login == nil {
// return
// }
2023-07-21 07:51:57 +00:00
// l, _ := ldap.DialURL(config.LdapServerAddr)
// l.Bind(config.NewUserDN, config.NewUserPassword)
2023-07-21 11:02:25 +00:00
2023-07-21 12:21:03 +00:00
// loginInfo, err := doLogin(w, r, "testuser", config.NewUserDN, config.NewUserPassword)
2023-07-21 11:50:34 +00:00
// if err != nil {
// log.Printf(fmt.Sprintf("58: %v %v", err, l))
// }
2023-07-21 11:02:25 +00:00
2023-07-21 11:50:34 +00:00
// l := ldapOpen(w)
2023-07-21 11:02:25 +00:00
if l == nil {
return
}
2023-07-21 11:11:49 +00:00
err = l.Bind(config.NewUserDN, config.NewUserPassword)
2023-07-21 12:21:03 +00:00
if err != nil {
2023-07-21 12:21:53 +00:00
log.Printf(fmt.Sprintf("58: %v %v", err, l))
2023-07-21 12:21:03 +00:00
}
2023-07-21 11:02:25 +00:00
handleNewAccount(w, r, l, config.NewUserDN)
2020-02-14 20:58:34 +00:00
}
// New account creation using code
func handleInvitationCode(w http.ResponseWriter, r *http.Request) {
code := mux.Vars(r)["code"]
code_id, code_pw := readCode(code)
2023-07-20 11:51:28 +00:00
// log.Printf(code_pw)
2023-07-20 11:50:31 +00:00
2023-07-20 11:46:32 +00:00
login := checkLogin(w, r)
// l := ldapOpen(w)
// if l == nil {
// return
// }
2020-02-14 20:58:34 +00:00
inviteDn := config.InvitationNameAttr + "=" + code_id + "," + config.InvitationBaseDN
2023-07-20 11:52:16 +00:00
err := login.conn.Bind(inviteDn, code_pw)
2020-02-14 20:58:34 +00:00
if err != nil {
2022-12-01 22:05:59 +00:00
templateInviteInvalidCode := getTemplate("invite_invalid_code.html")
2020-02-14 20:58:34 +00:00
templateInviteInvalidCode.Execute(w, nil)
return
}
2020-02-14 21:51:12 +00:00
sReq := ldap.NewSearchRequest(
inviteDn,
ldap.ScopeBaseObject, ldap.NeverDerefAliases, 0, 0, false,
fmt.Sprintf("(objectclass=*)"),
[]string{"dn", "creatorsname"},
nil)
2023-07-20 11:49:26 +00:00
sr, err := login.conn.Search(sReq)
2020-02-14 21:51:12 +00:00
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if len(sr.Entries) != 1 {
http.Error(w, fmt.Sprintf("Expected 1 entry, got %d", len(sr.Entries)), http.StatusInternalServerError)
return
}
invitedBy := sr.Entries[0].GetAttributeValue("creatorsname")
2023-07-20 11:49:26 +00:00
if handleNewAccount(w, r, login.conn, invitedBy) {
2020-02-14 20:58:34 +00:00
del_req := ldap.NewDelRequest(inviteDn, nil)
2023-07-20 11:49:26 +00:00
err = login.conn.Del(del_req)
2020-02-14 20:58:34 +00:00
if err != nil {
log.Printf("Could not delete invitation %s: %s", inviteDn, err)
}
}
}
// Common functions for new account
2020-02-14 21:51:12 +00:00
func handleNewAccount(w http.ResponseWriter, r *http.Request, l *ldap.Conn, invitedBy string) bool {
2022-12-01 22:05:59 +00:00
templateInviteNewAccount := getTemplate("invite_new_account.html")
2020-02-14 17:57:25 +00:00
data := &NewAccountData{}
if r.Method == "POST" {
r.ParseForm()
newUser := User{}
2023-07-21 07:13:17 +00:00
// login := checkLogin(w, r)
2023-07-20 11:46:32 +00:00
// newUser.Mail = fmt.Sprintf("%s@%s", strings.TrimSpace(strings.Join(r.Form["username"], "")), "lesgv.com")
2023-07-20 11:46:32 +00:00
newUser.DisplayName = strings.TrimSpace(strings.Join(r.Form["displayname"], ""))
newUser.GivenName = strings.TrimSpace(strings.Join(r.Form["givenname"], ""))
newUser.SN = strings.TrimSpace(strings.Join(r.Form["surname"], ""))
newUser.Mail = strings.TrimSpace(strings.Join(r.Form["mail"], ""))
newUser.UID = strings.TrimSpace(strings.Join(r.Form["otheremail"], ""))
newUser.CN = strings.TrimSpace(strings.Join(r.Form["username"], ""))
newUser.DN = "cn=" + strings.TrimSpace(strings.Join(r.Form["username"], "")) + "," + config.InvitationBaseDN
2020-02-14 17:57:25 +00:00
password1 := strings.Join(r.Form["password"], "")
password2 := strings.Join(r.Form["password2"], "")
2023-07-20 12:06:42 +00:00
if password1 != password2 {
2023-07-25 19:35:22 +00:00
data.Common.Success = false
2023-07-20 12:04:35 +00:00
data.ErrorPasswordMismatch = true
} else {
newUser.Password = password2
2023-07-21 12:21:03 +00:00
l.Bind(config.NewUserDN, config.NewUserPassword)
err := add(newUser, config, l)
if err != nil {
2023-07-25 19:35:22 +00:00
data.Common.Success = false
data.Common.ErrorMessage = err.Error()
}
http.Redirect(w, r, "/admin/activate", http.StatusFound)
2023-07-20 12:04:35 +00:00
}
// tryCreateAccount(l, data, password1, password2, invitedBy)
2023-07-20 13:40:14 +00:00
2023-07-20 15:52:16 +00:00
} else {
2023-07-20 17:46:13 +00:00
data.SuggestPW = fmt.Sprintf("%s", suggestPassword())
2020-02-14 17:57:25 +00:00
}
2023-07-25 19:35:22 +00:00
data.Common.CanAdmin = false
data.Common.LoggedIn = false
2020-02-14 17:57:25 +00:00
templateInviteNewAccount.Execute(w, data)
2023-07-25 19:35:22 +00:00
return data.Common.Success
2020-02-14 17:57:25 +00:00
}
2020-02-14 21:51:12 +00:00
func tryCreateAccount(l *ldap.Conn, data *NewAccountData, pass1 string, pass2 string, invitedBy string) {
2022-07-19 08:35:14 +00:00
checkFailed := false
2020-02-14 17:57:25 +00:00
// Check if username is correct
2022-07-19 08:35:14 +00:00
if match, err := regexp.MatchString("^[a-z0-9._-]+$", data.Username); !(err == nil && match) {
2020-02-14 17:57:25 +00:00
data.ErrorInvalidUsername = true
2022-07-19 08:35:14 +00:00
checkFailed = true
2020-02-14 17:57:25 +00:00
}
// Check if user exists
userDn := config.UserNameAttr + "=" + data.Username + "," + config.UserBaseDN
searchRq := ldap.NewSearchRequest(
userDn,
ldap.ScopeBaseObject, ldap.NeverDerefAliases, 0, 0, false,
"(objectclass=*)",
[]string{"dn"},
nil)
sr, err := l.Search(searchRq)
if err != nil {
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2022-07-19 08:35:14 +00:00
checkFailed = true
2020-02-14 17:57:25 +00:00
}
if len(sr.Entries) > 0 {
data.ErrorUsernameTaken = true
2022-07-19 08:35:14 +00:00
checkFailed = true
2020-02-14 17:57:25 +00:00
}
// Check that password is long enough
if len(pass1) < 8 {
data.ErrorPasswordTooShort = true
2022-07-19 08:35:14 +00:00
checkFailed = true
2020-02-14 17:57:25 +00:00
}
if pass1 != pass2 {
data.ErrorPasswordMismatch = true
2022-07-19 08:35:14 +00:00
checkFailed = true
2020-02-14 17:57:25 +00:00
}
2022-07-19 08:35:14 +00:00
if checkFailed {
return
}
2022-07-19 08:35:14 +00:00
2020-02-14 17:57:25 +00:00
// Actually create user
req := ldap.NewAddRequest(userDn, nil)
req.Attribute("objectclass", []string{"inetOrgPerson", "organizationalPerson", "person", "top"})
req.Attribute("structuralobjectclass", []string{"inetOrgPerson"})
2022-07-19 08:35:14 +00:00
pw, err := SSHAEncode(pass1)
if err != nil {
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2022-07-19 08:35:14 +00:00
return
}
req.Attribute("userpassword", []string{pw})
2020-02-14 21:51:12 +00:00
req.Attribute("invitedby", []string{invitedBy})
2020-02-14 17:57:25 +00:00
if len(data.DisplayName) > 0 {
req.Attribute("displayname", []string{data.DisplayName})
}
if len(data.GivenName) > 0 {
req.Attribute("givenname", []string{data.GivenName})
}
if len(data.Surname) > 0 {
req.Attribute("sn", []string{data.Surname})
}
if len(config.InvitedMailFormat) > 0 {
email := strings.ReplaceAll(config.InvitedMailFormat, "{}", data.Username)
req.Attribute("mail", []string{email})
}
err = l.Add(req)
if err != nil {
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2020-02-14 17:57:25 +00:00
return
}
for _, group := range config.InvitedAutoGroups {
req := ldap.NewModifyRequest(group, nil)
req.Add("member", []string{userDn})
err = l.Modify(req)
if err != nil {
2023-07-25 19:35:22 +00:00
data.Common.WarningMessage += fmt.Sprintf("Cannot add to %s: %s\n", group, err.Error())
2020-02-14 17:57:25 +00:00
}
}
2023-07-25 19:35:22 +00:00
data.Common.Success = true
2020-02-14 17:57:25 +00:00
}
2020-02-14 20:58:34 +00:00
// ---- Code generation ----
2020-02-14 17:57:25 +00:00
func handleInviteSendCode(w http.ResponseWriter, r *http.Request) {
2022-12-01 22:05:59 +00:00
templateInviteSendCode := getTemplate("invite_send_code.html")
2020-02-14 20:58:34 +00:00
login := checkInviterLogin(w, r)
if login == nil {
return
}
2023-07-20 08:21:51 +00:00
// carLicense
2020-02-14 20:58:34 +00:00
if r.Method == "POST" {
r.ParseForm()
2023-07-20 08:21:51 +00:00
data := &SendCodeData{
WebBaseAddress: config.WebAddress,
}
2020-02-14 20:58:34 +00:00
2023-07-20 08:21:51 +00:00
// modify_request := ldap.NewModifyRequest(login.UserEntry.DN, nil)
// // choice := strings.Join(r.Form["choice"], "")
// // sendto := strings.Join(r.Form["sendto"], "")
code, code_id, code_pw := genCode()
log.Printf(fmt.Sprintf("272: %v %v %v", code, code_id, code_pw))
// // Create invitation object in database
// modify_request.Add("carLicense", []string{fmt.Sprintf("%s,%s,%s",code, code_id, code_pw)})
// err := login.conn.Modify(modify_request)
// if err != nil {
2023-07-25 19:35:22 +00:00
// data.Common.ErrorMessage = err.Error()
2023-07-20 08:21:51 +00:00
// // return
// } else {
2023-07-25 19:35:22 +00:00
// data.Common.Success = true
2023-07-20 08:21:51 +00:00
// data.CodeDisplay = code
// }
log.Printf(fmt.Sprintf("279: %v %v %v", code, code_id, code_pw))
2023-07-20 11:46:32 +00:00
addReq := ldap.NewAddRequest("documentIdentifier="+code_id+","+config.InvitationBaseDN, nil)
2023-07-20 08:21:51 +00:00
addReq.Attribute("objectClass", []string{"top", "document", "simpleSecurityObject"})
addReq.Attribute("cn", []string{code})
addReq.Attribute("userPassword", []string{code_pw})
addReq.Attribute("documentIdentifier", []string{code_id})
log.Printf(fmt.Sprintf("285: %v %v %v", code, code_id, code_pw))
log.Printf(fmt.Sprintf("286: %v", addReq))
err := login.conn.Add(addReq)
if err != nil {
2023-07-25 19:35:22 +00:00
data.Common.ErrorMessage = err.Error()
2023-07-20 08:21:51 +00:00
// return
} else {
2023-07-25 19:35:22 +00:00
data.Common.Success = true
2023-07-20 08:21:51 +00:00
data.CodeDisplay = code
2020-02-14 21:40:44 +00:00
}
2023-07-25 19:35:22 +00:00
data.Common.CanAdmin = login.Common.CanAdmin
2023-07-20 08:21:51 +00:00
templateInviteSendCode.Execute(w, data)
// if choice == "display" || choice == "send" {
// log.Printf(fmt.Sprintf("260: %v %v %v %v", login, choice, sendto, data))
// trySendCode(login, choice, sendto, data)
// }
2020-02-14 20:58:34 +00:00
}
}
func trySendCode(login *LoginStatus, choice string, sendto string, data *SendCodeData) {
2023-07-20 08:21:51 +00:00
log.Printf(fmt.Sprintf("269: %v %v %v %v", login, choice, sendto, data))
2020-02-14 20:58:34 +00:00
// Generate code
code, code_id, code_pw := genCode()
2023-07-20 08:21:51 +00:00
log.Printf(fmt.Sprintf("272: %v %v %v", code, code_id, code_pw))
2020-02-14 20:58:34 +00:00
// Create invitation object in database
2023-07-20 08:21:51 +00:00
// len_base_dn := len(strings.Split(config.BaseDN, ","))
// dn_split := strings.Split(super_dn, ",")
// for i := len_base_dn + 1; i <= len(dn_split); i++ {
// path = append(path, PathItem{
// DN: strings.Join(dn_split[len(dn_split)-i:len(dn_split)], ","),
// Identifier: dn_split[len(dn_split)-i],
// })
// }
// data := &SendCodeData{
// WebBaseAddress: config.WebAddress,
// }
// // Handle data
// data := &CreateData{
// SuperDN: super_dn,
// Path: path,
// }
// data.IdType = config.UserNameAttr
// data.StructuralObjectClass = "inetOrgPerson"
// data.ObjectClass = "inetOrgPerson\norganizationalPerson\nperson\ntop"
// data.IdValue = strings.TrimSpace(strings.Join(r.Form["idvalue"], ""))
// data.DisplayName = strings.TrimSpace(strings.Join(r.Form["displayname"], ""))
// data.GivenName = strings.TrimSpace(strings.Join(r.Form["givenname"], ""))
// data.Mail = strings.TrimSpace(strings.Join(r.Form["mail"], ""))
// data.Member = strings.TrimSpace(strings.Join(r.Form["member"], ""))
// data.Description = strings.TrimSpace(strings.Join(r.Form["description"], ""))
// data.SN = strings.TrimSpace(strings.Join(r.Form["sn"], ""))
// object_class := []string{}
// for _, oc := range strings.Split(data.ObjectClass, "\n") {
// x := strings.TrimSpace(oc)
// if x != "" {
// object_class = append(object_class, x)
// }
// }
// dn := data.IdType + "=" + data.IdValue + "," + super_dn
// req := ldap.NewAddRequest(dn, nil)
// req.Attribute("objectclass", object_class)
// // req.Attribute("mail", []string{data.IdValue})
2023-07-20 11:46:32 +00:00
// /*
2023-07-20 08:21:51 +00:00
// if data.StructuralObjectClass != "" {
// req.Attribute("structuralobjectclass", []string{data.StructuralObjectClass})
// }
2023-07-20 11:46:32 +00:00
// */
2023-07-20 08:21:51 +00:00
// if data.DisplayName != "" {
// req.Attribute("displayname", []string{data.DisplayName})
// }
// if data.GivenName != "" {
// req.Attribute("givenname", []string{data.GivenName})
// }
// if data.Mail != "" {
// req.Attribute("mail", []string{data.Mail})
// }
// if data.Member != "" {
// req.Attribute("member", []string{data.Member})
// }
// if data.SN != "" {
// req.Attribute("sn", []string{data.SN})
// }
// if data.Description != "" {
// req.Attribute("description", []string{data.Description})
// }
// err := login.conn.Add(req)
2023-07-20 11:46:32 +00:00
// // log.Printf(fmt.Sprintf("899: %v",err))
// // log.Printf(fmt.Sprintf("899: %v",req))
// // log.Printf(fmt.Sprintf("899: %v",data))
2023-07-20 08:21:51 +00:00
// if err != nil {
2023-07-25 19:35:22 +00:00
// data.Common.Error = err.Error()
2023-07-20 08:21:51 +00:00
// } else {
// if template == "ml" {
// http.Redirect(w, r, "/admin/mailing/"+data.IdValue, http.StatusFound)
// } else {
// http.Redirect(w, r, "/admin/ldap/"+dn, http.StatusFound)
// }
// }
// inviteDn := config.InvitationNameAttr + "=" + code_id + "," + config.InvitationBaseDN
// req := ldap.NewAddRequest(inviteDn, nil)
// pw, err := SSHAEncode(code_pw)
// if err != nil {
2023-07-25 19:35:22 +00:00
// data.Common.ErrorMessage = err.Error()
2023-07-20 08:21:51 +00:00
// return
// }
// req.Attribute("employeeNumber", []string{pw})
// req.Attribute("objectclass", []string{"top", "invitationCode"})
// err = login.conn.Add(req)
// if err != nil {
// log.Printf(fmt.Sprintf("286: %v", req))
2023-07-25 19:35:22 +00:00
// data.Common.ErrorMessage = err.Error()
2023-07-20 08:21:51 +00:00
// return
// }
2020-02-14 20:58:34 +00:00
// If we want to display it, do so
if choice == "display" {
2023-07-25 19:35:22 +00:00
data.Common.Success = true
2020-02-14 20:58:34 +00:00
data.CodeDisplay = code
return
}
// Otherwise, we are sending a mail
if !EMAIL_REGEXP.MatchString(sendto) {
data.ErrorInvalidEmail = true
return
}
2022-12-01 22:05:59 +00:00
templateMail := template.Must(template.ParseFiles(templatePath + "/invite_mail.txt"))
2020-02-14 20:58:34 +00:00
buf := bytes.NewBuffer([]byte{})
templateMail.Execute(buf, &CodeMailFields{
To: sendto,
From: config.MailFrom,
InviteFrom: login.WelcomeName(),
Code: code,
WebBaseAddress: config.WebAddress,
})
log.Printf("Sending mail to: %s", sendto)
2023-07-20 08:21:51 +00:00
// var auth sasl.Client = nil
// if config.SMTPUsername != "" {
// auth = sasl.NewPlainClient("", config.SMTPUsername, config.SMTPPassword)
// }
// err = smtp.SendMail(config.SMTPServer, auth, config.MailFrom, []string{sendto}, buf)
// if err != nil {
2023-07-25 19:35:22 +00:00
// data.Common.ErrorMessage = err.Error()
2023-07-20 08:21:51 +00:00
// return
// }
// log.Printf("Mail sent.")
2020-02-14 20:58:34 +00:00
2023-07-25 19:35:22 +00:00
data.Common.Success = true
2020-02-14 20:58:34 +00:00
data.CodeSentTo = sendto
}
func genCode() (code string, code_id string, code_pw string) {
random := make([]byte, 32)
n, err := rand.Read(random)
if err != nil || n != 32 {
log.Fatalf("Could not generate random bytes: %s", err)
}
a := binary.BigEndian.Uint32(random[0:4])
b := binary.BigEndian.Uint32(random[4:8])
c := binary.BigEndian.Uint32(random[8:12])
code = fmt.Sprintf("%03d-%03d-%03d", a%1000, b%1000, c%1000)
code_id, code_pw = readCode(code)
2023-07-20 08:21:51 +00:00
log.Printf(fmt.Sprintf("342: %v %v %v", code, code_id, code_pw))
return code, code_id, code_pw
2020-02-14 20:58:34 +00:00
}
func readCode(code string) (code_id string, code_pw string) {
// Strip everything that is not a digit
code_digits := ""
for _, c := range code {
if c >= '0' && c <= '9' {
code_digits = code_digits + string(c)
}
}
2020-02-15 09:29:46 +00:00
id_hash := argon2.IDKey([]byte(code_digits), []byte("Guichet ID"), 2, 64*1024, 4, 32)
pw_hash := argon2.IDKey([]byte(code_digits), []byte("Guichet PW"), 2, 64*1024, 4, 32)
2020-02-14 20:58:34 +00:00
code_id = hex.EncodeToString(id_hash[:8])
code_pw = hex.EncodeToString(pw_hash[:16])
2023-07-20 08:21:51 +00:00
return code_id, code_pw
2020-02-14 17:57:25 +00:00
}