|
const fs = require('fs'); |
|
const { google } = require('googleapis'); |
|
require('dotenv').config(); |
|
|
|
|
|
const { oAuth2Client } = require('../config/googleOAuth'); |
|
|
|
|
|
const redirectToGoogleOAuth = (req, res) => { |
|
const authUrl = oAuth2Client.generateAuthUrl({ |
|
access_type: 'offline', |
|
scope: ['https://www.googleapis.com/auth/gmail.send', 'https://www.googleapis.com/auth/calendar'], |
|
}); |
|
res.redirect(authUrl); |
|
console.log('Redirecting for OAuth consent...'); |
|
}; |
|
|
|
|
|
const handleOAuthCallback = async (req, res) => { |
|
const code = req.query.code; |
|
|
|
try { |
|
const { tokens } = await oAuth2Client.getToken(code); |
|
console.log('Received tokens:', tokens); |
|
|
|
|
|
oAuth2Client.setCredentials(tokens); |
|
|
|
|
|
saveTokensToEnv(tokens); |
|
|
|
res.send('Authorization successful! You can now send emails.'); |
|
} catch (error) { |
|
console.error('Error during OAuth callback:', error); |
|
res.status(500).send('Failed to authenticate with Google'); |
|
} |
|
}; |
|
|
|
|
|
const saveTokensToEnv = (tokens) => { |
|
const envVariables = ` |
|
ACCESS_TOKEN=${tokens.access_token} |
|
REFRESH_TOKEN=${tokens.refresh_token || 'No refresh token available'} |
|
`; |
|
|
|
|
|
fs.appendFileSync('.env', envVariables, 'utf8'); |
|
console.log('Tokens saved to .env file.'); |
|
}; |
|
|
|
module.exports = { redirectToGoogleOAuth, handleOAuthCallback }; |