Anton Shestakov <av6@dwimlabs.net>, Sun, 27 Mar 2016 23:55:56 +0800
getVersion: check delay is just not null
Also parens in function calls.
coffee/index.coffee
Permissions: -rw-r--r--
Strophe.addNamespace('VCARD_UPDATE', 'vcard-temp:x:update') window.contacts ?= new Tram.Contacts() window.contactsApp ?= new Tram.ContactsApp(el: $('[data-app="contacts"]'), collection: contacts) window.messages ?= new Tram.Messages() window.logApp ?= new Tram.LogApp(el: $('[data-app="log"]'), collection: messages) window.favstate ?= new Tram.FavState() window.faviconApp ?= new Tram.FaviconApp(model: favstate) contacts.on 'change:show', (model) -> if model.get('type') is 'self' favstate.set('show', model.get('show')) X.conn.addHandler(onPresence, null, 'presence') X.conn.addHandler(onProfileUpdate, Strophe.NS.VCARD_UPDATE, 'presence') X.conn.addHandler(onGetVersion, Strophe.NS.VERSION, 'iq', 'get') X.conn.send($pres().c('priority').t('1').up().c('status').t('Online').tree()) favstate.set('show', 'offline') if el.childNodes.length is 0 and el.nodeType is Strophe.ElementType.TEXT for node in el.childNodes if node.nodeType is Strophe.ElementType.TEXT iq = $iq(type: 'get', id: X.conn.getUniqueId('version'), to: Tram.config.domain).c('query', xmlns: Strophe.NS.VERSION) name = getText(stanza.getElementsByTagName('name')[0]) version = getText(stanza.getElementsByTagName('version')[0]) os = getText(stanza.getElementsByTagName('os')[0]) delay = stanza.getElementsByTagName('delay')[0] stamp = if delay? then new Date(delay.getAttribute('stamp')) else new Date() id: stanza.getAttribute('id') type: stanza.getAttribute('type') from: stanza.getAttribute('from') text: "connected to #{ name } #{ version } on #{ os }" console.error("couldn't get version", stanza?.innerHTML) X.conn.sendIQ(iq.tree(), okcb, failcb, 5000) onGetVersion = (stanza) -> id = stanza.getAttribute('id') from = stanza.getAttribute('from') iq = $iq(to: from, type: 'result', id: id) .c('query', xmlns: Strophe.NS.VERSION) .c('name').t(Tram.info.client).up() .c('version').t(Tram.info.version) contact = contacts.get(from) self = from is X.conn.jid model.set('type', 'contact') bjid: Strophe.getBareJidFromJid(from) type: if self then 'self' else 'contact' contact.on 'authorize', -> X.conn.roster.authorize(contact.get('bjid')) contact.on 'unauthorize', -> X.conn.roster.unauthorize(contact.get('bjid')) X.conn.roster.remove contact.get('bjid'), -> getContactProfile(contact) getContactProfile = (contact) -> vcard = stanza.getElementsByTagName('vCard')[0] console.warn("no vcard in response", stanza) nickname: getText(vcard.querySelector('NICKNAME')) fullname: getText(vcard.querySelector('FN')) firstname: getText(vcard.querySelector('N > GIVEN')) lastname: getText(vcard.querySelector('N > FAMILY')) mime = getText(vcard.querySelector('PHOTO > TYPE')) data = getText(vcard.querySelector('PHOTO > BINVAL')) contact.set('avatar', mime: mime, data: data) console.warn("couldn't get vcard", stanza) bjid = contact.get('bjid') if bjid is Strophe.getBareJidFromJid(X.conn.jid) X.conn.vcard.get(okcb, bjid, failcb) type = stanza.getAttribute('type') ? 'available' when 'subscribed', 'unsubscribe', 'unsubscribed' console.warn("""not handling <presence type="#{ type }">""", stanza) console.error('got <presence type="error">', stanza) from = stanza.getAttribute('from') contact = getContact(from) show = getText(stanza.getElementsByTagName('show')[0]) status = getText(stanza.getElementsByTagName('status')[0]) priority = getText(stanza.getElementsByTagName('priority')[0]) if type in ['available', 'unavailable'] and contact.get('type') isnt 'self' delay = stanza.getElementsByTagName('delay')[0] stamp = if delay? then new Date(delay.getAttribute('stamp')) else new Date() id: stanza.getAttribute('id') text: status ? "is now #{ show }" onProfileUpdate = (stanza) -> from = stanza.getAttribute('from') contact = getContact(from) getContactProfile(contact) window.X = new Tram.XMPPInterface() connData.unset('auth-errors') connData.set('auth-errors', ['Invalid username or password.']) $('[data-step="login"]').removeClass('uk-hidden') $('[data-step="main"]').addClass('uk-hidden') X.on 'connected attached', -> $('[data-step="login"]').addClass('uk-hidden') $('[data-step="main"]').removeClass('uk-hidden') $('button[data-disconnect]').on 'click', -> X.disconnect('Logged out') $(window).on 'beforeunload unload', -> X.disconnect('Window closed') class ConnectionData extends Backbone.Model validate: (attrs, options) -> @unset('username-errors') @unset('password-errors') if (attrs.username ? '').trim() is '' @set('username-errors', ['This field is required.']) if (attrs.password ? '') is '' @set('password-errors', ['This field is required.']) return @has('username-errors') or @has('password-errors') window.connData = new ConnectionData() X.connect(connData.get('username').trim(), connData.get('password')) $form = $('[data-form="connect"]') window.connRivet = rivets.bind($form.get(0), data: connData, connect: connectfn) $form.find('input').on 'keydown', (e) -> if (not @required or @value isnt '') and e.keyCode is 13 index = $form.find('input').index(@) $next = $form.find('input').eq(index + 1) $form.find('button').trigger('click') $('[data-add-button]').on 'click', -> jid = $('#new-contact').val().trim() jid = "#{ jid }@#{ Tram.config.domain }" $('#new-contact').val('') X.conn.roster.add jid, null, [], -> X.conn.roster.subscribe(jid, 'I want to chat', null) $('#new-contact').on 'keypress', (e) -> $('[data-add-button]').trigger('click') $('time[datetime]').each -> $this.text(moment($this.attr('datetime')).fromNow())