ソースを参照

Use ip instead of remoteAddress for logging

production
Jack Foltz 5年前
コミット
f1437f16a9
署名者: foltik <jack@foltz.io> GPGキーID: D1F0331758D1F29A
2個のファイルの変更3行の追加3行の削除
  1. +2
    -2
      app/routes/api/auth.js
  2. +1
    -1
      app/util/auth.js

+ 2
- 2
app/routes/api/auth.js ファイルの表示

@@ -36,7 +36,7 @@ const validateInvite = wrap(async (req, res, next) => {


if (!invite) { if (!invite) {
// Log failure // Log failure
await fs.appendFile('auth.log', `${new Date().toISOString()} register ${req.connection.remoteAddress}\n`);
await fs.appendFile('auth.log', `${new Date().toISOString()} register ${req.ip}\n`);
return res.status(422).json({message: 'Invalid invite code.'}); return res.status(422).json({message: 'Invalid invite code.'});
} }


@@ -98,7 +98,7 @@ router.post('/login', bodyVerifier(loginProps), canonicalizeRequest, wrap(async
const user = await authenticate(req, res, next); const user = await authenticate(req, res, next);
if (!user) { if (!user) {
// Log failure // Log failure
await fs.appendFile('auth.log', `${new Date().toISOString()} login ${req.connection.remoteAddress}\n`);
await fs.appendFile('auth.log', `${new Date().toISOString()} login ${req.ip}\n`);
return res.status(401).json({'message': 'Unauthorized.'}); return res.status(401).json({'message': 'Unauthorized.'});
} }




+ 1
- 1
app/util/auth.js ファイルの表示

@@ -33,7 +33,7 @@ const checkKey = async (req, scope, status) => {
} }
} else { } else {
// Log failure // Log failure
await fs.appendFile('auth.log', `${new Date().toISOString()} key ${req.connection.remoteAddress}\n`);
await fs.appendFile('auth.log', `${new Date().toISOString()} key ${req.ip}\n`);
} }
} }
}; };


読み込み中…
キャンセル
保存