Mercurial > prosody-modules
view mod_invites_page/static/invite.js @ 5787:e79f9dec35c0
mod_c2s_conn_throttle: Reduce log level from error->info
Our general policy is that "error" should never be triggerable by remote
entities, and that it is always about something that requires admin
intervention. This satisfies neither condition.
The "warn" level can be used for unexpected events/behaviour triggered by
remote entities, and this could qualify. However I don't think failed auth
attempts are unexpected enough.
I selected "info" because it is what is also used for other notable session
lifecycle events.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 07 Dec 2023 15:46:50 +0000 |
parents | ef3aa6901a93 |
children |
line wrap: on
line source
(function () { // If QR lib loaded ok, show QR button on desktop devices if(window.QRCode) { new QRCode(document.getElementById("qr-invite-page"), document.location.href); document.getElementById('qr-button-container').classList.add("d-md-block"); } // Detect current platform and show/hide appropriate clients if(window.platform) { let platform_friendly = null; let platform_classname = null; switch(platform.os.family) { case "Ubuntu": case "Linux": case "Fedora": case "Red Hat": case "SuSE": platform_friendly = platform.os.family + " (Linux)"; platform_classname = "linux"; break; case "Linux aarch64": platform_friendly = "Linux mobile"; platform_classname = "linux"; break; case "Haiku R1": platform_friendly = "Haiku"; platform_classname = "haiku"; break; case "Windows Phone": platform_friendly = "Windows Phone"; platform_classname = "windows-phone"; break; default: if(platform.os.family.startsWith("Windows")) { platform_friendly = "Windows"; platform_classname = "windows"; } else { platform_friendly = platform.os.family; platform_classname = platform_friendly.toLowerCase(); } } if(platform_friendly && platform_classname) { if(document.querySelectorAll('.client-card .client-platform-badge-'+platform_classname).length == 0) { // No clients recognised for this platform, do nothing return; } // Hide clients not for this platform const client_cards = document.getElementsByClassName('client-card'); for (let card of client_cards) { if (card.classList.contains('app-platform-'+platform_classname)) card.classList.add('supported-platform'); else if (!card.classList.contains('app-platform-web')) card.hidden = true; const badges = card.querySelectorAll('.client-platform-badge'); for (let badge of badges) { if (badge.classList.contains('client-platform-badge-'+platform_classname)) { badge.classList.add("badge-success"); badge.classList.remove("badge-info"); } else { badge.classList.add("badge-secondary"); badge.classList.remove("badge-info"); } } } const show_all_clients_button_container = document.getElementById('show-all-clients-button-container'); show_all_clients_button_container.querySelector('.platform-name').innerHTML = platform_friendly; show_all_clients_button_container.classList.remove("d-none"); document.getElementById('show-all-clients-button').addEventListener('click', function (e) { for (let card of client_cards) card.hidden = false; show_all_clients_button_container.hidden = true; e.preventDefault(); }); } } })();