guichet/utils.go

42 lines
1,012 B
Go
Raw Normal View History

2023-07-20 09:20:46 +00:00
package main
import (
2023-07-23 11:02:09 +00:00
"crypto/tls"
"net"
2023-07-20 09:56:11 +00:00
2023-07-20 18:02:54 +00:00
"math/rand"
2023-07-21 04:23:03 +00:00
"github.com/go-ldap/ldap/v3"
// "golang.org/x/text/encoding/unicode"
2023-07-20 09:20:46 +00:00
)
2023-07-23 11:02:09 +00:00
func openLdap(config *ConfigFile) (*ldap.Conn, error) {
if config.LdapTLS {
tlsConf := &tls.Config{
ServerName: config.LdapServerAddr,
InsecureSkipVerify: true,
}
return ldap.DialTLS("tcp", net.JoinHostPort(config.LdapServerAddr, "636"), tlsConf)
2023-07-20 09:56:11 +00:00
} else {
2023-07-23 11:02:09 +00:00
return ldap.DialURL("ldap://" + config.LdapServerAddr)
2023-07-20 09:56:11 +00:00
}
2023-07-23 11:02:09 +00:00
// l, err := ldap.DialURL(config.LdapServerAddr)
// if err != nil {
// log.Printf(fmt.Sprint("Erreur connect LDAP %v", err))
// log.Printf(fmt.Sprint("Erreur connect LDAP %v", config.LdapServerAddr))
// return nil
// } else {
// return l
// }
2023-07-20 09:20:46 +00:00
}
2023-07-20 17:55:00 +00:00
func suggestPassword() string {
2023-07-20 18:02:54 +00:00
password := ""
chars := "abcdfghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%&*+_-="
for i := 0; i < 12; i++ {
password += string([]rune(chars)[rand.Intn(len(chars))])
2023-07-20 17:55:00 +00:00
}
2023-07-20 18:02:54 +00:00
return password
2023-07-20 15:52:16 +00:00
}