fix: gpg encrypted key not detected correctly

This commit is contained in:
Yiyang Kang 2025-03-23 20:30:19 +09:00
parent 0f558b3314
commit 668627c467
Signed by: kkyy
GPG Key ID: 80FD317ECAF06CC3
2 changed files with 6 additions and 10 deletions

View File

@ -5,7 +5,6 @@ import (
"os"
"path/filepath"
"github.com/bitfield/script"
"github.com/go-errors/errors"
"golang.org/x/text/cases"
"golang.org/x/text/language"
@ -104,17 +103,14 @@ func ReadCredentialFile(uuid string, dirs []string) (string, error) {
return string(keyText), nil
}
// This has to be refactored at some point...
func isPgpEncrypted(path string) (bool, error) {
output, err := RunCommand("file", nil, path)
if err != nil {
return false, errors.Wrap(err, 0)
}
l, err := script.Echo(string(output)).Match("PGP").Match("encrypted").CountLines()
return l > 0, err
_, err := RunCommand("gpg2", nil, "--list-only", "--list-packets", path)
return err == nil, nil
}
func readPgpEncryptedFile(path string) ([]byte, error) {
output, err := RunCommand("gpg", nil, "--decrypt", path)
output, err := RunCommand("gpg2", nil, "--decrypt", path)
if err != nil {
return nil, errors.WrapPrefix(err, fmt.Sprintf("failed to read pgp encrypted file %q", path), 0)
}

View File

@ -75,10 +75,10 @@ func (d *Dataset) loadPermissions() error {
return errors.WrapPrefix(err, fmt.Sprintf("cannot obtain permission list for zfs dataset %s", d.Name), 0)
}
pattern := regexp.MustCompile(`^\s*user ` + currentUser.Username + ` ([\w-]+(,[\w-]+)*)$`)
script.Echo(string(output)).FilterLine(func(line string) string {
_ = script.Echo(string(output)).FilterLine(func(line string) string {
match := pattern.FindStringSubmatch(line)
if match != nil {
for _, perm := range strings.Split(match[1], ",") {
for perm := range strings.SplitSeq(match[1], ",") {
switch perm {
case "mount":
permissions.Mount = true