mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-22 11:17:56 +11:00
Update user.js
This commit is contained in:
parent
a30ddb8fe3
commit
ac1e9536e3
1 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,7 @@ router.post("/login", async (req, res, next) => {
|
|||
const ua = UAParser(req.headers["user-agent"])
|
||||
let ip = {}
|
||||
await axios
|
||||
.get("http://ip-api.com/json/ " + req.header("x-real-ip") || req.ip)
|
||||
.get("http://ip-api.com/json/ " + req.ip)
|
||||
.then((res) => {
|
||||
ip = res.data
|
||||
})
|
||||
|
@ -71,7 +71,7 @@ router.post("/login", async (req, res, next) => {
|
|||
session: "COLUBRINA-" + cryptoRandomString({ length: 128 }),
|
||||
expiredAt: new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * 30),
|
||||
other: {
|
||||
ip: req.header("x-real-ip") || req.ip,
|
||||
ip: req.ip,
|
||||
location: ip.country
|
||||
? `${ip.city} - ${ip.regionName} - ${ip.country}`
|
||||
: null,
|
||||
|
@ -150,7 +150,7 @@ router.post("/register", async (req, res, next) => {
|
|||
const ua = UAParser(req.headers["user-agent"])
|
||||
let ip = {}
|
||||
await axios
|
||||
.get("http://ip-api.com/json/ " + req.header("x-real-ip") || req.ip)
|
||||
.get("http://ip-api.com/json/ " + req.ip)
|
||||
.then((res) => {
|
||||
ip = res.data
|
||||
})
|
||||
|
@ -160,7 +160,7 @@ router.post("/register", async (req, res, next) => {
|
|||
session: "COLUBRINA-" + cryptoRandomString({ length: 128 }),
|
||||
expiredAt: new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * 30),
|
||||
other: {
|
||||
ip: req.header("x-real-ip") || req.ip,
|
||||
ip: req.ip,
|
||||
location: ip.country
|
||||
? `${ip.city} - ${ip.regionName} - ${ip.country}`
|
||||
: null,
|
||||
|
|
Loading…
Reference in a new issue