aboutsummaryrefslogtreecommitdiff
path: root/internal/user/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/user/user.go')
-rw-r--r--internal/user/user.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/internal/user/user.go b/internal/user/user.go
new file mode 100644
index 00000000..4415632e
--- /dev/null
+++ b/internal/user/user.go
@@ -0,0 +1,18 @@
+// Copyright 2014 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package user
+
+import (
+ "os"
+)
+
+func CurrentUsername() string {
+ curUserName := os.Getenv("USER")
+ if len(curUserName) > 0 {
+ return curUserName
+ }
+
+ return os.Getenv("USERNAME")
+}