1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/updates.go

71 lines
1.7 KiB
Go
Raw Normal View History

2018-08-27 12:08:10 +02:00
package gui
2020-11-21 09:58:55 +02:00
import (
"fmt"
"github.com/jesseduffield/gocui"
)
2018-08-27 12:08:10 +02:00
func (gui *Gui) showUpdatePrompt(newVersion string) error {
2020-08-15 08:38:16 +02:00
return gui.ask(askOpts{
title: "New version available!",
2020-11-21 09:58:55 +02:00
prompt: fmt.Sprintf("Download version %s? (enter/esc)", newVersion),
2020-08-15 08:36:39 +02:00
handleConfirm: func() error {
gui.startUpdating(newVersion)
return nil
},
})
2018-08-27 12:08:10 +02:00
}
func (gui *Gui) onUserUpdateCheckFinish(newVersion string, err error) error {
if err != nil {
2020-03-28 02:47:54 +02:00
return gui.surfaceError(err)
2018-08-27 12:08:10 +02:00
}
if newVersion == "" {
2020-03-28 02:47:54 +02:00
return gui.createErrorPanel("New version not found")
2018-08-27 12:08:10 +02:00
}
return gui.showUpdatePrompt(newVersion)
}
func (gui *Gui) onBackgroundUpdateCheckFinish(newVersion string, err error) error {
if err != nil {
// ignoring the error for now so that I'm not annoying users
gui.Log.Error(err.Error())
return nil
}
if newVersion == "" {
return nil
}
2021-12-29 02:50:20 +02:00
if gui.UserConfig.Update.Method == "background" {
2018-08-27 12:08:10 +02:00
gui.startUpdating(newVersion)
return nil
}
return gui.showUpdatePrompt(newVersion)
}
func (gui *Gui) startUpdating(newVersion string) {
gui.State.Updating = true
2020-11-18 00:08:32 +02:00
statusId := gui.statusManager.addWaitingStatus("updating")
gui.Updater.Update(newVersion, func(err error) error { return gui.onUpdateFinish(statusId, err) })
2018-08-27 12:08:10 +02:00
}
2020-11-18 00:08:32 +02:00
func (gui *Gui) onUpdateFinish(statusId int, err error) error {
2018-08-27 12:08:10 +02:00
gui.State.Updating = false
2020-11-18 00:08:32 +02:00
gui.statusManager.removeStatus(statusId)
2021-04-04 16:31:52 +02:00
gui.renderString(gui.Views.AppStatus, "")
2018-08-27 12:08:10 +02:00
if err != nil {
2020-03-28 02:47:54 +02:00
return gui.createErrorPanel("Update failed: " + err.Error())
2018-08-27 12:08:10 +02:00
}
return nil
}
2020-08-15 09:23:16 +02:00
func (gui *Gui) createUpdateQuitConfirmation() error {
2020-08-15 08:38:16 +02:00
return gui.ask(askOpts{
title: "Currently Updating",
prompt: "An update is in progress. Are you sure you want to quit?",
2020-08-15 08:36:39 +02:00
handleConfirm: func() error {
return gocui.ErrQuit
},
})
}