Без опису

Georg Lukas 47dd07cd18 Use async translation for clipboard 9 місяців тому
assets 5617b399af Add graphics 2 роки тому
lang c90c0a0fac Proper support for rendering ?register links 9 місяців тому
scripts 47dd07cd18 Use async translation for clipboard 9 місяців тому
stylesheets 06c2960e5d Add UI for easily creating new links from a JID or URI 9 місяців тому
.gitignore eed5dd62dd Autodiscover preferred browser language, enhances #4 3 роки тому
LICENSE eff90ea151 Licensed under MIT 4 роки тому
README.md 9e69d95099 README: fix xmpp.link address, thx Axel 9 місяців тому
clients_Android.json 35072cf842 Fix Xabber URL 2 роки тому
clients_Linux.json 3422715e31 Add Converse aans Psi 2 роки тому
clients_OSX.json 4dd12c3061 Add list of apps for Mac 2 роки тому
clients_Tizen.json 8d085752cd Add list of apps for Tizen 2 роки тому
clients_Windows.json a76b2b7172 Add list of apps for Windows 2 роки тому
clients_iOS.json 7c62fd0ead Add Siskin IM and Jitsi Meet 2 роки тому
config.js.dist b3fe8e5f63 Update config.js.dist 2 роки тому
index.html 06c2960e5d Add UI for easily creating new links from a JID or URI 9 місяців тому

README.md

Easy XMPP Invitation Landing Page

This is an XMPP invitation landing page that client developers or XMPP server admins can host on their servers. It allows users to send XMPP invitations (contacts or chat rooms) to people who do not have an XMPP client yet. This is part of the Easy XMPP initiative to improve the "first contact" experience.

For the JID romeo@montague.lit, it will create the following page (live example):

Romeo has invited you to chat

Add Romeo to your contact list by clicking the following link:

[ Add Romeo ]

If this link does not work, you need to install and configure an XMPP client, and visit this page again afterwards.

[snipped client list and disclaimer]

The project's official hosted landing page is at xmpp.link.

Principal operation

  • Romeo clicks on his XMPP client's "Create Invitation" button
    • The XMPP client creates a link according to RFC 5122, e.g., xmpp:romeo@montague.lit?otr=23
    • The client automatically transforms the link into a landing page link by removing xmpp: and adding the address as a URI fragment to the hosted landing page, e.g., https://www.xmpp.example/i/#romeo@montague.lit?otr=23
  • Romeo sends the resulting invitation link via email, text message, QR code, RFC 1149 or any other means to the user Juliet
  • Juliet opens the link in a web browser and the displayed page contains an "Add" or "Join" button with the xmpp: URI
    • If Juliet has an XMPP client, it will handle the button click and open the "Add to roster" dialog
    • If Juliet does not have an XMPP client, the link won't work. Juliet must install a client and return to the link later

Design decisions

  • The (privacy-sensitive) JID and the parameters are put in the URI fragment which is not transmitted to the hosting server
  • The fragment is parsed by the receiving client, this requires JavaScript
  • I18N and client suggestions are performed dynamically
  • MUCs get a special treatment in the UI to show they are a chat room and not a contact, based on the presence of ?join in the address

Setup

The following steps are needed to get started:

  1. Create a copy of config.js.dist in the same directory, rename it to config.js and adjust it to your needs
  2. Open index.html in your web browser
  3. Append # and the JID you want to create the invitation for to the URL

TODO

  • I18N / Translation
    • Drop-down / language list for manual override
    • More languages
  • Platform specific client recommendations:
    • Option to switch platform dynamically
  • "Edit" mode to manually create invitation links

Inspiration

This project was inspired by mod_invite and Conversations' contact sharing page.

License

This code is licensed under the MIT License.