1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package mailer
- //go:generate mkdir -p mocks
- //go:generate rm -rf ./mocks/*_minimock.go
- //go:generate minimock -i git.dmitriygnatenko.ru/dima/dmitriygnatenko-v2/internal/interfaces.Mailer -o ./mocks/ -s "_minimock.go"
- import (
- "fmt"
- "net/smtp"
- "strings"
- "git.dmitriygnatenko.ru/dima/dmitriygnatenko-v2/internal/interfaces"
- )
- type mailer struct {
- isEnabled bool
- host string
- port string
- user string
- password string
- }
- type mailerAuth struct {
- username string
- password string
- }
- func Init(env interfaces.Env) (interfaces.Mailer, error) {
- host := strings.TrimSpace(env.GetSMTPHost())
- port := strings.TrimSpace(env.GetSMTPPort())
- user := strings.TrimSpace(env.GetSMTPUser())
- password := strings.TrimSpace(env.GetSMTPPassword())
- if host == "" || port == "" || user == "" || password == "" {
- return &mailer{}, nil
- }
- return &mailer{
- isEnabled: true,
- host: host,
- port: port,
- user: user,
- password: password,
- }, nil
- }
- func (m mailer) Send(recipient string, subject string, text string) error {
- if !m.isEnabled {
- return nil
- }
- msg := []byte("To: " + recipient + "\r\n" +
- "From: " + m.user + "\r\n" +
- "Subject: " + subject + "\r\n" +
- "Content-Type: text/plain; charset=\"UTF-8\"" + "\n\r\n" +
- text + "\r\n")
- to := []string{recipient}
- auth := m.GetMailerAuth(m.user, m.password)
- return smtp.SendMail(m.host+":"+m.port, auth, m.user, to, msg)
- }
- func (m mailer) GetMailerAuth(username, password string) smtp.Auth {
- return &mailerAuth{username, password}
- }
- func (a *mailerAuth) Start(_ *smtp.ServerInfo) (string, []byte, error) {
- return "LOGIN", nil, nil
- }
- func (a *mailerAuth) Next(fromServer []byte, more bool) ([]byte, error) {
- command := string(fromServer)
- command = strings.TrimSpace(command)
- command = strings.TrimSuffix(command, ":")
- command = strings.ToLower(command)
- if more {
- if command == "username" {
- return []byte(fmt.Sprintf("%s", a.username)), nil
- }
- if command == "password" {
- return []byte(fmt.Sprintf("%s", a.password)), nil
- }
- return nil, fmt.Errorf("unexpected server challenge: %s", command)
- }
- return nil, nil
- }
|