forked from golang/glog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from golang/master
glog: avoid calling user.Current() on windows (golang#69)
- Loading branch information
Showing
3 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//go:build !windows | ||
|
||
package glog | ||
|
||
import "os/user" | ||
|
||
func lookupUser() string { | ||
if current, err := user.Current(); err == nil { | ||
return current.Username | ||
} | ||
return "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
//go:build windows | ||
|
||
package glog | ||
|
||
import ( | ||
"syscall" | ||
) | ||
|
||
// This follows the logic in the standard library's user.Current() function, except | ||
// that it leaves out the potentially expensive calls required to look up the user's | ||
// display name in Active Directory. | ||
func lookupUser() string { | ||
token, err := syscall.OpenCurrentProcessToken() | ||
if err != nil { | ||
return "" | ||
} | ||
defer token.Close() | ||
tokenUser, err := token.GetTokenUser() | ||
if err != nil { | ||
return "" | ||
} | ||
username, _, accountType, err := tokenUser.User.Sid.LookupAccount("") | ||
if err != nil { | ||
return "" | ||
} | ||
if accountType != syscall.SidTypeUser { | ||
return "" | ||
} | ||
return username | ||
} |