Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

strophejs-plugin-rsm

Package Overview
Dependencies
Maintainers
4
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

strophejs-plugin-rsm

A strophe.js plugin for XEP-0059 Result Set Management

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

strophe.rsm.js

Plugin for strophe.js providing Result Set Management (RSM) XEP-0059.

Install

npm install strophejs-plugin-rsm

ES6

import 'strophejs-plugin-rsm';

Browser

<script src="strophe.min.js"></script>
<script src="strophe.rsm.js"></script>

Usage

Make sure Strophe is installed and the plugin is imported into your app. With RSM is available to do paged stanza requests like so:

require('strophejs-plugin-rsm');

var connection = new Strophe.Connection('wss://...');

var options = {
  before: '',
  isGroup: false,
  max: 50,
};

var messages = [];

var queryid = connection.getUniqueId();
var stanza = $iq({ type: 'set' }).c('query', { xmlns: Strophe.NS.MAM, queryid });

var node = new Strophe.RSM(options);

stanza.cnode(node.toXML());

connection.addHandler((message: any) => {
  var fin = getElementByTagName(message, 'fin', Strophe.NS.MAM);
  var result = getElementByTagName(message, 'result', Strophe.NS.MAM);

  if (fin && queryid === fin.getAttribute('queryid')) {
    var paging = new Strophe.RSM({ xml: fin });

    // `paging` is now our paged RSM object with the following attributes:
    //    paging.next()
    //    paging.previous()
    //    paging.toXML()
    //    paging.fromXMLElement()

    return false;
  } else if (result && queryid === result.getAttribute('queryid')) {
    messages.push(message);
  }

  return true;
}, Strophe.NS.MAM);

connection.sendIQ(stanza, null, null);

Keywords

FAQs

Package last updated on 14 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc