mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
The intention is to keep to repo root clean while the list of packages is slowly growing. Additionally, a bunch of small (~30 LoC) files in the repo root is merged into a single maddy.go file, for the same reason. Most of the internal code is moved into the internal/ directory. Go toolchain will make it impossible to import these packages from external applications. Some packages are renamed and moved into the pkg/ directory in the root. According to https://github.com/golang-standards/project-layout this is the de-facto standard to place "library code that's ok to use by external applications" in. To clearly define the purpose of top-level directories, README.md files are added to each.
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package external
|
|
|
|
import (
|
|
"io"
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/foxcpp/maddy/internal/log"
|
|
)
|
|
|
|
func AuthUsingHelper(l log.Logger, binaryPath, accountName, password string) bool {
|
|
cmd := exec.Command(binaryPath)
|
|
stdin, err := cmd.StdinPipe()
|
|
if err != nil {
|
|
l.Println("failed to obtain stdin pipe for helper process:", err)
|
|
return false
|
|
}
|
|
if err := cmd.Start(); err != nil {
|
|
l.Println("failed to start helper process:", err)
|
|
return false
|
|
}
|
|
if _, err := io.WriteString(stdin, accountName+"\n"); err != nil {
|
|
l.Println("failed to write stdin of helper process:", err)
|
|
return false
|
|
}
|
|
if _, err := io.WriteString(stdin, password+"\n"); err != nil {
|
|
l.Println("failed to write stdin of helper process:", err)
|
|
return false
|
|
}
|
|
if err := cmd.Wait(); err != nil {
|
|
l.Debugln(err)
|
|
if exitErr, ok := err.(*exec.ExitError); ok {
|
|
// Exit code 1 is for authentication failure.
|
|
// Exit code 2 is for other errors.
|
|
if exitErr.ExitCode() == 2 {
|
|
l.Println(strings.TrimSpace(string(exitErr.Stderr)))
|
|
}
|
|
} else {
|
|
l.Println("failed to wait for helper process:", err)
|
|
}
|
|
return false
|
|
}
|
|
return true
|
|
}
|