user.go 344 B

12345678910111213141516171819
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package user
  5. import (
  6. "os"
  7. )
  8. func CurrentUsername() string {
  9. curUserName := os.Getenv("USER")
  10. if len(curUserName) > 0 {
  11. return curUserName
  12. }
  13. return os.Getenv("USERNAME")
  14. }