Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1908413bd2 | |||
| 3c790f51c7 | |||
| 44e19154ab | |||
| fd0c40d444 | |||
| d3e90f7d5d | |||
| 98887eecce | |||
| 95e6bd178e | |||
| ac7c8d04ed | |||
| fd44712e37 |
@@ -4,7 +4,7 @@ WEB_RESET_ADDRESS=localhost/reset
|
|||||||
WEB_PORT=3200
|
WEB_PORT=3200
|
||||||
WEB_ORIGIN=http://localhost:3001
|
WEB_ORIGIN=http://localhost:3001
|
||||||
|
|
||||||
DB_HOSTNAME=database
|
DB_HOSTNAME=localhost
|
||||||
DB_DATABASE=auth
|
DB_DATABASE=auth
|
||||||
DB_USERNAME=auth
|
DB_USERNAME=auth
|
||||||
DB_PASSWORD=charizard
|
DB_PASSWORD=charizard
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
FROM node:18-bullseye-slim
|
FROM node:21-bookworm-slim
|
||||||
WORKDIR "/app"
|
WORKDIR "/app"
|
||||||
COPY package*.json ./
|
COPY package*.json /app
|
||||||
RUN npm install --production
|
RUN npm install --production
|
||||||
COPY . /app
|
COPY . /app
|
||||||
EXPOSE 3200
|
EXPOSE 3200
|
||||||
|
|||||||
+3
-4
@@ -55,8 +55,7 @@ const question = (prompt, def = null) => {
|
|||||||
|
|
||||||
//generate the files
|
//generate the files
|
||||||
const ymlfile = `
|
const ymlfile = `
|
||||||
version: '3'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
${appName}:
|
${appName}:
|
||||||
build:
|
build:
|
||||||
@@ -108,7 +107,7 @@ services:
|
|||||||
- ./startup.sql:/docker-entrypoint-initdb.d/startup.sql:ro
|
- ./startup.sql:/docker-entrypoint-initdb.d/startup.sql:ro
|
||||||
traefik_${appName}:
|
traefik_${appName}:
|
||||||
container_name: ${appName}_traefik
|
container_name: ${appName}_traefik
|
||||||
image: "traefik:v2.4"
|
image: "traefik:v2.10"
|
||||||
container_name: "traefik"
|
container_name: "traefik"
|
||||||
command:
|
command:
|
||||||
- "--log.level=ERROR"
|
- "--log.level=ERROR"
|
||||||
@@ -133,7 +132,7 @@ networks:
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const dockerfile = `
|
const dockerfile = `
|
||||||
FROM node:18-bullseye-slim
|
FROM node:21-bookworm-slim
|
||||||
WORKDIR "/app"
|
WORKDIR "/app"
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
RUN npm install --production
|
RUN npm install --production
|
||||||
|
|||||||
Generated
+3134
-137
File diff suppressed because it is too large
Load Diff
+10
-9
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "auth-server",
|
"name": "auth-server",
|
||||||
"version": "1.7.6",
|
"version": "1.8.0",
|
||||||
"description": "An API centric auth server. Uses Sequelize and mariaDB by default.",
|
"description": "An API centric auth server. Uses Sequelize and mariaDB by default.",
|
||||||
"main": "server/server.js",
|
"main": "server/server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -22,16 +22,17 @@
|
|||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
"cookie-parser": "^1.4.6",
|
"cookie-parser": "^1.4.6",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.3.1",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"jsonwebtoken": "^9.0.0",
|
"jsonwebtoken": "^9.0.2",
|
||||||
"mariadb": "^3.1.1",
|
"mariadb": "^3.2.3",
|
||||||
"node-cron": "^3.0.2",
|
"node-cron": "^3.0.3",
|
||||||
"node-fetch": "^2.6.9",
|
"node-fetch": "^2.7.0",
|
||||||
"nodemailer": "^6.9.1",
|
"nodemailer": "^6.9.7",
|
||||||
"sequelize": "^6.31.1"
|
"npm": "^9.9.2",
|
||||||
|
"sequelize": "^6.35.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"nodemon": "^2.0.22"
|
"nodemon": "^3.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ const route = async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//generate the JWTs
|
//generate the JWTs
|
||||||
const { accessToken, refreshToken } = tokenGenerateRefresh(account.index, account.email, account.username, account.type, account.admin, account.mod);
|
const { accessToken, refreshToken } = await tokenGenerateRefresh(account.index, account.email, account.username, account.type, account.admin, account.mod);
|
||||||
|
|
||||||
//set the cookie
|
//set the cookie
|
||||||
res.cookie('refreshToken', refreshToken, { path: '/', httpOnly: true, secure: true, sameSite: 'none', maxAge: 60 * 60 * 24 * 30 * 1000 }); //30 days
|
res.cookie('refreshToken', refreshToken, { path: '/', httpOnly: true, secure: true, sameSite: 'none', maxAge: 60 * 60 * 24 * 30 * 1000 }); //30 days
|
||||||
|
|||||||
+16
-2
@@ -22,7 +22,7 @@ const route = async (req, res) => {
|
|||||||
//script throttle
|
//script throttle
|
||||||
const throttle = await checkThrottle(req.body.email);
|
const throttle = await checkThrottle(req.body.email);
|
||||||
if (throttle) {
|
if (throttle) {
|
||||||
console.warn(`Spam attack detected: ${req.body.email} (${req.body.username})`);
|
console.warn(`Spam Throttled\t${req.body.email} (${req.body.username})`);
|
||||||
return res.status(401).send(throttle);
|
return res.status(401).send(throttle);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,7 +121,21 @@ const checkThrottle = async (email) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const registerPendingSignup = async (body, hash, token) => {
|
const registerPendingSignup = async (body, hash, token) => {
|
||||||
const record = await pendingSignups.upsert({
|
//BUGFIX: delete existing pending signups that clash
|
||||||
|
await pendingSignups.destroy({
|
||||||
|
where: {
|
||||||
|
email: body.email
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
await pendingSignups.destroy({
|
||||||
|
where: {
|
||||||
|
username: body.username
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//record it
|
||||||
|
const record = await pendingSignups.create({
|
||||||
email: body.email,
|
email: body.email,
|
||||||
username: body.username,
|
username: body.username,
|
||||||
hash: hash,
|
hash: hash,
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
const jwt = require('jsonwebtoken');
|
|
||||||
|
|
||||||
const tokenRefresh = require('../utilities/token-refresh');
|
const tokenRefresh = require('../utilities/token-refresh');
|
||||||
|
|
||||||
//auth/token
|
//auth/token
|
||||||
module.exports = async (req, res) => {
|
module.exports = async (req, res) => {
|
||||||
return tokenRefresh(req.cookies.refreshToken || '', (err, accessToken, refreshToken) => {
|
return await tokenRefresh(req.cookies.refreshToken || '', (err, accessToken, refreshToken) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
return res.status(err).end();
|
return res.status(err).end();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ const route = async (req, res) => {
|
|||||||
hooks = JSON.parse(process.env.HOOK_POST_VALIDATION_ARRAY);
|
hooks = JSON.parse(process.env.HOOK_POST_VALIDATION_ARRAY);
|
||||||
|
|
||||||
if (!Array.isArray(hooks)) {
|
if (!Array.isArray(hooks)) {
|
||||||
throw 'isArray() check failed';
|
throw 'post validation hook isArray() check failed';
|
||||||
}
|
}
|
||||||
|
|
||||||
//authenticate the hooks
|
//authenticate the hooks
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
const Sequelize = require('sequelize');
|
const Sequelize = require('sequelize');
|
||||||
const sequelize = require('..');
|
const sequelize = require('..');
|
||||||
|
|
||||||
|
//DOCS: this isn't set by anything - it's a stub for now
|
||||||
|
|
||||||
module.exports = sequelize.define('bannedIPAddresses', {
|
module.exports = sequelize.define('bannedIPAddresses', {
|
||||||
content: {
|
content: {
|
||||||
type: 'varchar(320)',
|
type: 'varchar(320)',
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@ app.use(cookieParser());
|
|||||||
const database = require('./database');
|
const database = require('./database');
|
||||||
|
|
||||||
//ip-based management
|
//ip-based management
|
||||||
app.use(require('./utilities/banned-up-addresses-middleware'));
|
app.use(require('./utilities/banned-ip-addresses-middleware'));
|
||||||
|
|
||||||
//access the admin
|
//access the admin
|
||||||
app.use('/admin', require('./admin'));
|
app.use('/admin', require('./admin'));
|
||||||
|
|||||||
+10
-2
@@ -10,16 +10,24 @@ module.exports = async (req, res, next) => {
|
|||||||
content: address,
|
content: address,
|
||||||
|
|
||||||
expiry: {
|
expiry: {
|
||||||
[Op.gt]: Date.now()
|
[Op.or]: {
|
||||||
|
//future or forever
|
||||||
|
[Op.gt]: Date.now(),
|
||||||
|
[Op.eq]: null,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//log the access timestamp
|
||||||
|
const date = new Date();
|
||||||
|
|
||||||
if (!!record) {
|
if (!!record) {
|
||||||
|
console.log(`IP blocked\t${address}\t\t\t${date.toTimeString()}`);
|
||||||
return res.status(403).send("IP address banned");
|
return res.status(403).send("IP address banned");
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`IP ${address}`);
|
// console.log(`IP allowed\t${address}\t\t\t${date.toTimeString()}`);
|
||||||
|
|
||||||
return next();
|
return next();
|
||||||
};
|
};
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
const { tokens } = require('../database/models');
|
const { tokens } = require('../database/models');
|
||||||
|
|
||||||
module.exports = (refreshToken) => {
|
module.exports = async (refreshToken) => {
|
||||||
tokens.destroy({
|
await tokens.destroy({
|
||||||
where: {
|
where: {
|
||||||
token: refreshToken || ''
|
token: refreshToken || ''
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ const jwt = require('jsonwebtoken');
|
|||||||
const { tokens } = require('../database/models');
|
const { tokens } = require('../database/models');
|
||||||
|
|
||||||
//generates a JWT token based on the given arguments
|
//generates a JWT token based on the given arguments
|
||||||
module.exports = (index, email, username, type, admin, mod) => {
|
module.exports = async (index, email, username, type, admin, mod) => {
|
||||||
const content = {
|
const content = {
|
||||||
index,
|
index,
|
||||||
email,
|
email,
|
||||||
@@ -16,7 +16,7 @@ module.exports = (index, email, username, type, admin, mod) => {
|
|||||||
const accessToken = jwt.sign(content, process.env.SECRET_ACCESS, { expiresIn: '10m', issuer: 'auth' });
|
const accessToken = jwt.sign(content, process.env.SECRET_ACCESS, { expiresIn: '10m', issuer: 'auth' });
|
||||||
const refreshToken = jwt.sign(content, process.env.SECRET_REFRESH, { expiresIn: '30d', issuer: 'auth' });
|
const refreshToken = jwt.sign(content, process.env.SECRET_REFRESH, { expiresIn: '30d', issuer: 'auth' });
|
||||||
|
|
||||||
tokens.create({ token: refreshToken, email: email });
|
await tokens.create({ token: refreshToken, email: email });
|
||||||
|
|
||||||
return { accessToken, refreshToken };
|
return { accessToken, refreshToken };
|
||||||
};
|
};
|
||||||
@@ -19,15 +19,15 @@ module.exports = async (oldRefreshToken, callback) => {
|
|||||||
return callback(403);
|
return callback(403);
|
||||||
}
|
}
|
||||||
|
|
||||||
jwt.verify(oldRefreshToken, process.env.SECRET_REFRESH, (err, user) => {
|
jwt.verify(oldRefreshToken, process.env.SECRET_REFRESH, async (err, user) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
return callback(403);
|
return callback(403);
|
||||||
}
|
}
|
||||||
|
|
||||||
const { accessToken, refreshToken } = generate(user.index, user.email, user.username, user.type, user.admin, user.mod);
|
await destroy(oldRefreshToken);
|
||||||
|
|
||||||
destroy(oldRefreshToken);
|
const { accessToken, refreshToken } = await generate(user.index, user.email, user.username, user.type, user.admin, user.mod);
|
||||||
|
|
||||||
return callback(null, accessToken, refreshToken);
|
return await callback(null, accessToken, refreshToken);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -1 +0,0 @@
|
|||||||
ALTER TABLE `accounts` CHANGE `id` `index` INT( 11 ) NOT NULL AUTO_INCREMENT;
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
DROP TABLE tokens;
|
|
||||||
@@ -25,11 +25,6 @@ const TokenProvider = props => {
|
|||||||
localStorage.setItem("accessToken", accessToken);
|
localStorage.setItem("accessToken", accessToken);
|
||||||
}, [accessToken]);
|
}, [accessToken]);
|
||||||
|
|
||||||
//force a logout if refresh token is too old
|
|
||||||
if (accessToken && (new Date(Date.now() - 60 * 60 * 24 * 30 * 1000).getTime() > decode(accessToken).exp * 1000)) {
|
|
||||||
forceLogout();
|
|
||||||
}
|
|
||||||
|
|
||||||
//wrap the default fetch function
|
//wrap the default fetch function
|
||||||
const tokenFetch = async (url, options) => {
|
const tokenFetch = async (url, options) => {
|
||||||
//use this?
|
//use this?
|
||||||
|
|||||||
Reference in New Issue
Block a user