pgweb/vendor/github.com/lib/pq/user_posix.go

25 lines
409 B
Go
Raw Normal View History

2014-10-28 16:07:33 -07:00
// Package pq is a pure Go Postgres driver for the database/sql package.
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris rumprun
2014-10-28 16:07:33 -07:00
package pq
2015-01-09 21:43:53 -06:00
import (
"os"
"os/user"
)
2014-10-28 16:07:33 -07:00
func userCurrent() (string, error) {
u, err := user.Current()
2015-01-09 21:43:53 -06:00
if err == nil {
return u.Username, nil
2014-10-28 16:07:33 -07:00
}
2015-01-09 21:43:53 -06:00
name := os.Getenv("USER")
if name != "" {
return name, nil
}
return "", ErrCouldNotDetectUsername
2014-10-28 16:07:33 -07:00
}