File size: 5,678 Bytes
057576a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | const express = require('express');
const http = require('http');
const socketIo = require('socket.io');
const mongoose = require('mongoose');
const cors = require('cors');
const bcrypt = require('bcryptjs');
const jwt = require('jsonwebtoken');
const path = require('path');
require('dotenv').config();
const app = express();
const server = http.createServer(app);
// Fix CORS configuration
const io = socketIo(server, {
cors: {
origin: "http://localhost:3000",
methods: ["GET", "POST", "PUT", "DELETE"],
credentials: false
}
});
// CORS middleware - fix this part
app.use(cors({
origin: "http://localhost:3000",
credentials: false,
methods: ["GET", "POST", "PUT", "DELETE"],
allowedHeaders: ["Content-Type", "Authorization"]
}));
app.use(express.json());
app.use('/uploads', express.static(path.join(__dirname, 'uploads')));
// Simple User Model (in-memory for now)
const users = [];
// Auth Routes
app.post('/api/auth/register', async (req, res) => {
try {
const { username, email, password, displayName } = req.body;
console.log('Registration attempt:', { username, email, displayName });
// Validation
if (!username || !email || !password || !displayName) {
return res.status(400).json({ error: 'All fields are required' });
}
// Check if user exists
const existingUser = users.find(u => u.email === email || u.username === username);
if (existingUser) {
return res.status(400).json({ error: 'User already exists' });
}
// Hash password
const hashedPassword = await bcrypt.hash(password, 12);
// Create user
const user = {
id: Date.now().toString(),
username,
email,
displayName,
password: hashedPassword,
avatar: null,
status: 'online',
lastSeen: new Date(),
createdAt: new Date()
};
users.push(user);
// Generate token
const token = jwt.sign({ userId: user.id }, process.env.JWT_SECRET || 'fallback-secret', { expiresIn: '30d' });
// Remove password from response
const { password: _, ...userWithoutPassword } = user;
console.log('User registered successfully:', userWithoutPassword.username);
res.status(201).json({
message: 'User registered successfully',
user: userWithoutPassword,
token
});
} catch (error) {
console.error('Registration error:', error);
res.status(500).json({ error: 'Server error during registration' });
}
});
app.post('/api/auth/login', async (req, res) => {
try {
const { email, password } = req.body;
console.log('Login attempt:', { email });
if (!email || !password) {
return res.status(400).json({ error: 'Email and password are required' });
}
// Find user
const user = users.find(u => u.email === email);
if (!user) {
return res.status(401).json({ error: 'Invalid credentials' });
}
// Check password
const isPasswordValid = await bcrypt.compare(password, user.password);
if (!isPasswordValid) {
return res.status(401).json({ error: 'Invalid credentials' });
}
// Update user status
user.status = 'online';
user.lastSeen = new Date();
// Generate token
const token = jwt.sign({ userId: user.id }, process.env.JWT_SECRET || 'fallback-secret', { expiresIn: '30d' });
// Remove password from response
const { password: _, ...userWithoutPassword } = user;
console.log('User logged in:', userWithoutPassword.username);
res.json({
message: 'Login successful',
user: userWithoutPassword,
token
});
} catch (error) {
console.error('Login error:', error);
res.status(500).json({ error: 'Server error during login' });
}
});
app.get('/api/auth/me', (req, res) => {
const token = req.headers.authorization?.split(' ')[1];
if (!token) {
return res.status(401).json({ error: 'No token provided' });
}
try {
const decoded = jwt.verify(token, process.env.JWT_SECRET || 'fallback-secret');
const user = users.find(u => u.id === decoded.userId);
if (!user) {
return res.status(404).json({ error: 'User not found' });
}
const { password: _, ...userWithoutPassword } = user;
res.json({ user: userWithoutPassword });
} catch (error) {
res.status(401).json({ error: 'Invalid token' });
}
});
// Health check
app.get('/api/health', (req, res) => {
res.json({
status: 'OK',
message: 'YSNRFD Messenger Backend is running!',
usersCount: users.length,
timestamp: new Date().toISOString()
});
});
// Test route to verify CORS is working
app.get('/api/test-cors', (req, res) => {
res.json({
message: 'CORS is working!',
corsConfig: {
origin: 'http://localhost:3000',
credentials: false
}
});
});
// Socket.io connection
io.on('connection', (socket) => {
console.log('User connected:', socket.id);
socket.on('disconnect', () => {
console.log('User disconnected:', socket.id);
});
});
const PORT = process.env.PORT || 5000;
server.listen(PORT, () => {
console.log(`π YSNRFD Messenger backend running on port ${PORT}`);
console.log(`π§ Environment: ${process.env.NODE_ENV || 'development'}`);
console.log(`π Frontend URL: http://localhost:3000`);
console.log(`π Health check: http://localhost:${PORT}/api/health`);
console.log(`π CORS test: http://localhost:${PORT}/api/test-cors`);
console.log(`π₯ Registered users: ${users.length}`);
}); |