File size: 5,696 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 201 202 203 204 205 206 207 208 |
const User = require('../models/User');
const jwt = require('jsonwebtoken');
const validator = require('validator');
const generateToken = (userId) => {
return jwt.sign({ userId }, process.env.JWT_SECRET, { expiresIn: process.env.JWT_EXPIRES_IN || '30d' });
};
exports.register = async (req, res) => {
try {
const { username, email, password, displayName } = req.body;
// Validation
if (!username || !email || !password || !displayName) {
return res.status(400).json({ error: 'All fields are required' });
}
if (!validator.isEmail(email)) {
return res.status(400).json({ error: 'Invalid email format' });
}
if (password.length < 6) {
return res.status(400).json({ error: 'Password must be at least 6 characters' });
}
if (username.length < 3 || username.length > 30) {
return res.status(400).json({ error: 'Username must be between 3 and 30 characters' });
}
// Check if user exists
const existingUser = await User.findOne({
$or: [{ email }, { username }]
});
if (existingUser) {
const field = existingUser.email === email ? 'email' : 'username';
return res.status(400).json({ error: `User already exists with this ${field}` });
}
// Create user
const user = await User.create({
username,
email,
password,
displayName
});
// Generate token
const token = generateToken(user._id);
// Set cookie
res.cookie('token', token, {
httpOnly: true,
secure: process.env.NODE_ENV === 'production',
sameSite: 'strict',
maxAge: 30 * 24 * 60 * 60 * 1000 // 30 days
});
res.status(201).json({
message: 'User registered successfully',
user: {
id: user._id,
username: user.username,
email: user.email,
displayName: user.displayName,
avatar: user.avatar,
status: user.status,
bio: user.bio
},
token
});
} catch (error) {
console.error('Registration error:', error);
res.status(500).json({ error: 'Server error during registration' });
}
};
exports.login = async (req, res) => {
try {
const { email, password } = req.body;
if (!email || !password) {
return res.status(400).json({ error: 'Email and password are required' });
}
// Find user and include password for comparison
const user = await User.findOne({ email }).select('+password');
if (!user) {
return res.status(401).json({ error: 'Invalid credentials' });
}
// Check password
const isPasswordValid = await user.comparePassword(password);
if (!isPasswordValid) {
return res.status(401).json({ error: 'Invalid credentials' });
}
// Update status to online
user.status = 'online';
user.lastSeen = new Date();
await user.save();
const token = generateToken(user._id);
res.cookie('token', token, {
httpOnly: true,
secure: process.env.NODE_ENV === 'production',
sameSite: 'strict',
maxAge: 30 * 24 * 60 * 60 * 1000
});
res.json({
message: 'Login successful',
user: {
id: user._id,
username: user.username,
email: user.email,
displayName: user.displayName,
avatar: user.avatar,
status: user.status,
bio: user.bio,
lastSeen: user.lastSeen
},
token
});
} catch (error) {
console.error('Login error:', error);
res.status(500).json({ error: 'Server error during login' });
}
};
exports.logout = async (req, res) => {
try {
// Update user status to offline
if (req.user) {
await User.findByIdAndUpdate(req.user.userId, {
status: 'offline',
lastSeen: new Date()
});
}
res.clearCookie('token');
res.json({ message: 'Logged out successfully' });
} catch (error) {
console.error('Logout error:', error);
res.status(500).json({ error: 'Server error during logout' });
}
};
exports.getMe = async (req, res) => {
try {
const user = await User.findById(req.user.userId);
if (!user) {
return res.status(404).json({ error: 'User not found' });
}
res.json({
user: {
id: user._id,
username: user.username,
email: user.email,
displayName: user.displayName,
avatar: user.avatar,
status: user.status,
bio: user.bio,
lastSeen: user.lastSeen,
settings: user.settings
}
});
} catch (error) {
console.error('Get me error:', error);
res.status(500).json({ error: 'Server error' });
}
};
exports.updateProfile = async (req, res) => {
try {
const { displayName, bio, status } = req.body;
const updateData = {};
if (displayName) updateData.displayName = displayName;
if (bio !== undefined) updateData.bio = bio;
if (status) updateData.status = status;
const user = await User.findByIdAndUpdate(
req.user.userId,
updateData,
{ new: true, runValidators: true }
);
res.json({
message: 'Profile updated successfully',
user: {
id: user._id,
username: user.username,
email: user.email,
displayName: user.displayName,
avatar: user.avatar,
status: user.status,
bio: user.bio
}
});
} catch (error) {
console.error('Update profile error:', error);
res.status(500).json({ error: 'Server error during profile update' });
}
}; |