@@ -23,9 +23,13 @@ import (
23
23
"io"
24
24
"net/http"
25
25
"os"
26
+ "os/exec"
26
27
"path/filepath"
27
28
"runtime"
28
29
"strings"
30
+ "syscall"
31
+
32
+ "golang.org/x/sys/windows"
29
33
30
34
log "github.com/sirupsen/logrus"
31
35
)
@@ -83,9 +87,11 @@ func fetch(url string) (io.ReadCloser, error) {
83
87
84
88
// addTempSuffixToPath adds the "-temp" suffix to the path to an executable file (a ".exe" extension is replaced with "-temp.exe")
85
89
func addTempSuffixToPath (path string ) string {
86
- if filepath .Ext (path ) == "exe" {
90
+ if filepath .Ext (path ) == ".exe" {
91
+ // Windows
87
92
path = strings .Replace (path , ".exe" , "-temp.exe" , - 1 )
88
93
} else {
94
+ // Unix
89
95
path = path + "-temp"
90
96
}
91
97
@@ -110,3 +116,51 @@ func copyExe(from, to string) error {
110
116
}
111
117
return nil
112
118
}
119
+
120
+ // requestElevation requests this program to rerun as administrator, for when we don't have permission over the update files
121
+ func requestElevation () {
122
+ log .Println ("Permission denied. Requesting elevated privileges..." )
123
+ var err error
124
+ if runtime .GOOS == "windows" {
125
+ err = elevateWindows ()
126
+ } else {
127
+ err = elevateUnix ()
128
+ }
129
+
130
+ if err != nil {
131
+ log .Println ("Failed to request elevation:" , err )
132
+ return
133
+ }
134
+ }
135
+
136
+ func elevateWindows () error {
137
+ verb := "runas"
138
+ exe , _ := os .Executable ()
139
+ cwd , _ := os .Getwd ()
140
+ args := strings .Join (os .Args [1 :], " " )
141
+
142
+ verbPtr , err := syscall .UTF16PtrFromString (verb )
143
+ if err != nil {
144
+ return err
145
+ }
146
+ exePtr , err := syscall .UTF16PtrFromString (exe )
147
+ if err != nil {
148
+ return err
149
+ }
150
+ cwdPtr , err := syscall .UTF16PtrFromString (cwd )
151
+ if err != nil {
152
+ return err
153
+ }
154
+ argPtr , _ := syscall .UTF16PtrFromString (args )
155
+ var showCmd int32 = 1
156
+ return windows .ShellExecute (0 , verbPtr , exePtr , argPtr , cwdPtr , showCmd )
157
+ }
158
+
159
+ func elevateUnix () error {
160
+ args := append ([]string {os .Args [0 ]}, os .Args [1 :]... )
161
+ cmd := exec .Command ("sudo" , args ... )
162
+ cmd .Stdin = os .Stdin
163
+ cmd .Stdout = os .Stdout
164
+ cmd .Stderr = os .Stderr
165
+ return cmd .Run ()
166
+ }
0 commit comments