import debug from 'debug'; import { IAuthentication } from '../../types/Authentication'; import { IPacket, IPacketHandler, IPacketHandlerResult, PacketResponseCode, } from '../../types/PacketHandler'; const log = debug('radius:user-pwd'); export class UserPasswordPacketHandler implements IPacketHandler { constructor(private authentication: IAuthentication) {} async handlePacket(packet: IPacket): Promise { const username = packet.attributes['User-Name']; const password = packet.attributes['User-Password']; if (!username || !password) { // params missing, this handler cannot continue... return {}; } log('username', username, username.toString()); log('token', password, password.toString()); const authenticated = await this.authentication.authenticate( username.toString(), password.toString() ); if (authenticated) { // success return { code: PacketResponseCode.AccessAccept, attributes: [['User-Name', username]], }; } // Failed return { code: PacketResponseCode.AccessReject, }; } }