feat: send auth status

This commit is contained in:
karishmas6
2024-10-26 05:29:41 +05:30
parent 2eaaca7939
commit 3531b30b98

View File

@@ -108,10 +108,14 @@ router.get('/config', requireSignIn, async (req: AuthenticatedRequest, res: Resp
return res.status(404).json({ message: 'User not found' }); return res.status(404).json({ message: 'User not found' });
} }
const decryptedProxyUrl = user.proxy_url ? decrypt(user.proxy_url) : null;
const decryptedProxyUsername = user.proxy_username ? decrypt(user.proxy_username) : null;
const decryptedProxyPassword = user.proxy_password ? decrypt(user.proxy_password) : null;
res.status(200).json({ res.status(200).json({
proxy_url, proxy_url: decryptedProxyUrl,
proxy_username, proxy_username: decryptedProxyUsername,
proxy_password, proxy_password: decryptedProxyPassword,
}); });
}); });
@@ -127,12 +131,11 @@ export const getDecryptedProxyConfig = async (userId: string) => {
} }
const decryptedProxyUrl = user.proxy_url ? decrypt(user.proxy_url) : null; const decryptedProxyUrl = user.proxy_url ? decrypt(user.proxy_url) : null;
const decryptedProxyUsername = user.proxy_username ? decrypt(user.proxy_username) : null;
const decryptedProxyPassword = user.proxy_password ? decrypt(user.proxy_password) : null; const auth = user.proxy_username && user.proxy_password ? true : false;
return { return {
proxy_url: decryptedProxyUrl, proxy_url: decryptedProxyUrl,
proxy_username: decryptedProxyUsername, auth: auth,
proxy_password: decryptedProxyPassword,
}; };
}; };