Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[backend] Add ENABLE_EMAIL_NOTIFICATIONS flag to env var #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ _*For quick start, copy the `template.env` file to `.env`. The values given in `
| MAILER_SENDER_EMAIL | Email address for sending emails |
| MAILER_SENDER_PASS | Password for authenticating with SMTP Host |
| MAILER_HOST | SMTP Host supporting TLS which will send our emails |
| DEBUG | Enable debugging mode - disables some features and enables debugging features (dev only) |
| ENABLE_EMAIL_NOTIFICATIONS | Set this flag to enable emails to be sent, if set to false emails will not be sent,default true|


### Cors and Cookies
Expand Down
35 changes: 22 additions & 13 deletions server/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ import { RegisterResponseDto } from './dto/register-response.dto';
import { saltRounds } from './constants';
import { SignInResponseDto } from './dto/sign-in-response.dto';
import { MailerService } from 'src/mailer/mailer.service';
import { appConfig } from 'src/config';

@Injectable()
export class AuthService {
constructor(
private usersService: UsersService,
private jwtService: JwtService,
private mailer: MailerService,
) {}
) { }

async login(email: string, password: string): Promise<SignInResponseDto> {
const user = await this.usersService.findOneByEmail(email);
Expand All @@ -28,12 +29,16 @@ export class AuthService {
throw new UnauthorizedException();
}

await this.mailer.sendTemplateMail({
templateType: 'login',
recipients: [email],
subject: 'Flux@Codegasms New Login Detected',
username: user.fullName,
});
if (appConfig.enableMail) {
await this.mailer.sendTemplateMail({
templateType: 'login',
recipients: [email],
subject: 'Flux@Codegasms New Login Detected',
username: user.fullName,
});
} else {
console.log(`Simulating sending login mail to ${email}!`)
}

return {
access_token: await this.generateJwtToken(email),
Expand All @@ -48,12 +53,16 @@ export class AuthService {
hashedPassword: hashedPassword,
});

await this.mailer.sendTemplateMail({
templateType: 'register',
recipients: [user.email],
subject: 'Welcome to Flux@Codegasms',
username: user.fullName,
});
if (appConfig.enableMail) {
await this.mailer.sendTemplateMail({
templateType: 'register',
recipients: [user.email],
subject: 'Welcome to Flux@Codegasms',
username: user.fullName,
});
} else {
console.log(`Simulating sending registration mail to ${user.email}!`)
}

return {
access_token: await this.generateJwtToken(user.email),
Expand Down
1 change: 1 addition & 0 deletions server/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const appConfig = {
},

debug: fromEnv('DEBUG', 'false').toLowerCase() === 'true',
enableMail: fromEnv('ENABLE_EMAIL_NOTIFICATIONS', 'true').toLowerCase() === 'true',
};

console.log(appConfig);
8 changes: 7 additions & 1 deletion server/template.env
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ CORS_ALLOWED_ORIGINS=http://localhost:5501/,http://localhost:8000/,http://127.0.

[email protected]
MAILER_SENDER_PASS=
MAILER_HOST=smtppro.zoho.in
MAILER_HOST=smtppro.zoho.in

REDIS_HOST=localhost
REDIS_PORT=6379

DEBUG=True
ENABLE_EMAIL_NOTIFICATIONS=False