mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
17
internal/api/api_request.go
Normal file
17
internal/api/api_request.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package api
|
||||
|
||||
import (
|
||||
"github.com/gin-gonic/gin"
|
||||
|
||||
"github.com/photoprism/photoprism/pkg/header"
|
||||
)
|
||||
|
||||
// ClientIP returns the client IP address from the request context or a placeholder if it is unknown.
|
||||
func ClientIP(c *gin.Context) (ip string) {
|
||||
return header.ClientIP(c)
|
||||
}
|
||||
|
||||
// UserAgent returns the user agent from the request context or an empty string if it is unknown.
|
||||
func UserAgent(c *gin.Context) string {
|
||||
return header.UserAgent(c)
|
||||
}
|
||||
Reference in New Issue
Block a user