UNPKG

strophe.js

Version:

Strophe.js is an XMPP library for JavaScript

41 lines (36 loc) 1.06 kB
/** * @typedef {import("./connection.js").default} Connection */ import SASLMechanism from './sasl.js'; import utils from './utils'; class SASLOAuthBearer extends SASLMechanism { /** * SASL OAuth Bearer authentication. */ constructor(mechname = 'OAUTHBEARER', isClientFirst = true, priority = 40) { super(mechname, isClientFirst, priority); } /** * @param {Connection} connection */ test(connection) { return connection.pass !== null; } /** * @param {Connection} connection */ onChallenge(connection) { let auth_str = 'n,'; if (connection.authcid !== null) { auth_str = auth_str + 'a=' + connection.authzid; } auth_str = auth_str + ','; auth_str = auth_str + '\u0001'; auth_str = auth_str + 'auth=Bearer '; auth_str = auth_str + connection.pass; auth_str = auth_str + '\u0001'; auth_str = auth_str + '\u0001'; return utils.utf16to8(auth_str); } } export default SASLOAuthBearer;