File size: 1,788 Bytes
8b105ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
const fs = require('fs');
const { google } = require('googleapis');
require('dotenv').config();

// import the OAuth2 client
const { oAuth2Client } = require('../config/googleOAuth');

// Controller function for /auth route
const redirectToGoogleOAuth = (req, res) => {
    const authUrl = oAuth2Client.generateAuthUrl({
        access_type: 'offline', // Request offline access for refresh token
        scope: ['https://www.googleapis.com/auth/gmail.send', 'https://www.googleapis.com/auth/calendar'], // Scopes
    });
    res.redirect(authUrl); // Redirect to Google's OAuth consent page
    console.log('Redirecting for OAuth consent...');
};

// Controller function to handle OAuth callback
const handleOAuthCallback = async (req, res) => {
    const code = req.query.code;

    try {
        const { tokens } = await oAuth2Client.getToken(code); // Exchange code for tokens
        console.log('Received tokens:', tokens); // Log tokens for debugging

        // Set tokens to the OAuth2 client
        oAuth2Client.setCredentials(tokens);

        // Save tokens to the .env file
        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');
    }
};

// Helper function to save tokens to .env file
const saveTokensToEnv = (tokens) => {
    const envVariables = `
ACCESS_TOKEN=${tokens.access_token}
REFRESH_TOKEN=${tokens.refresh_token || 'No refresh token available'}
    `;

    // Append tokens to the .env file
    fs.appendFileSync('.env', envVariables, 'utf8');
    console.log('Tokens saved to .env file.');
};

module.exports = { redirectToGoogleOAuth, handleOAuthCallback };