1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/gui/controllers/helpers/gpg_helper.go

63 lines
1.7 KiB
Go
Raw Normal View History

2022-02-22 12:16:00 +02:00
package helpers
import (
"fmt"
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
"github.com/jesseduffield/lazygit/pkg/gui/types"
)
type GpgHelper struct {
2023-03-23 03:53:18 +02:00
c *HelperCommon
2022-02-22 12:16:00 +02:00
}
2023-03-23 03:53:18 +02:00
func NewGpgHelper(c *HelperCommon) *GpgHelper {
2022-02-22 12:16:00 +02:00
return &GpgHelper{
2023-03-23 03:53:18 +02:00
c: c,
2022-02-22 12:16:00 +02:00
}
}
// Currently there is a bug where if we switch to a subprocess from within
// WithWaitingStatus we get stuck there and can't return to lazygit. We could
// fix this bug, or just stop running subprocesses from within there, given that
// we don't need to see a loading status if we're in a subprocess.
func (self *GpgHelper) WithGpgHandling(cmdObj oscommands.ICmdObj, waitingStatus string, onSuccess func() error) error {
2023-03-23 03:53:18 +02:00
useSubprocess := self.c.Git().Config.UsingGpg()
2022-02-22 12:16:00 +02:00
if useSubprocess {
success, err := self.c.RunSubprocess(cmdObj)
2022-02-22 12:16:00 +02:00
if success && onSuccess != nil {
if err := onSuccess(); err != nil {
return err
}
}
if err := self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC}); err != nil {
return err
}
return err
} else {
return self.runAndStream(cmdObj, waitingStatus, onSuccess)
}
}
func (self *GpgHelper) runAndStream(cmdObj oscommands.ICmdObj, waitingStatus string, onSuccess func() error) error {
return self.c.WithWaitingStatus(waitingStatus, func() error {
if err := cmdObj.StreamOutput().Run(); err != nil {
_ = self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC})
return self.c.Error(
fmt.Errorf(
self.c.Tr.GitCommandFailed, self.c.UserConfig.Keybinding.Universal.ExtrasMenu,
),
)
}
if onSuccess != nil {
if err := onSuccess(); err != nil {
return err
}
}
return self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC})
})
}