| 
									
										
										
										
											2014-11-13 14:36:09 -08:00
										 |  |  | /* vim: ts=4:sw=4:expandtab | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-07-22 21:24:17 -10:00
										 |  |  | (function () { | 
					
						
							| 
									
										
										
										
											2014-12-02 15:47:28 -08:00
										 |  |  |     'use strict'; | 
					
						
							| 
									
										
										
										
											2014-11-16 15:30:40 -08:00
										 |  |  |     window.Whisper = window.Whisper || {}; | 
					
						
							| 
									
										
										
										
											2015-03-16 17:40:31 -07:00
										 |  |  |     emoji.init_colons(); | 
					
						
							| 
									
										
										
										
											2014-07-22 21:24:17 -10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-05 15:25:49 -08:00
										 |  |  |     Whisper.ConversationView = Whisper.View.extend({ | 
					
						
							| 
									
										
										
										
											2015-01-15 22:22:24 -10:00
										 |  |  |         className: function() { | 
					
						
							|  |  |  |             return [ 'conversation', this.model.get('type') ].join(' '); | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-03-05 15:25:49 -08:00
										 |  |  |         template: $('#conversation').html(), | 
					
						
							| 
									
										
										
										
											2015-03-06 17:05:36 -08:00
										 |  |  |         render_attributes: function() { | 
					
						
							| 
									
										
										
										
											2015-05-22 15:41:30 -07:00
										 |  |  |             return { | 
					
						
							|  |  |  |                 group: this.model.get('type') === 'group', | 
					
						
							|  |  |  |                 title: this.model.getTitle() | 
					
						
							|  |  |  |             }; | 
					
						
							| 
									
										
										
										
											2015-03-05 15:25:49 -08:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-05-21 14:35:44 -07:00
										 |  |  |         initialize: function(options) { | 
					
						
							| 
									
										
										
										
											2015-03-05 15:25:49 -08:00
										 |  |  |             this.listenTo(this.model, 'destroy', this.stopListening); | 
					
						
							| 
									
										
										
										
											2015-06-03 17:23:55 -07:00
										 |  |  |             this.listenTo(this.model, 'change:name', this.updateTitle); | 
					
						
							| 
									
										
										
										
											2015-01-15 22:22:24 -10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-05 15:25:49 -08:00
										 |  |  |             this.render(); | 
					
						
							| 
									
										
										
										
											2014-07-22 22:52:59 -10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 17:58:22 -07:00
										 |  |  |             this.appWindow = options.appWindow; | 
					
						
							|  |  |  |             new Whisper.WindowControlsView({ | 
					
						
							|  |  |  |                 appWindow: this.appWindow | 
					
						
							| 
									
										
										
										
											2015-05-22 15:41:30 -07:00
										 |  |  |             }).$el.insertAfter(this.$('.menu')); | 
					
						
							| 
									
										
										
										
											2015-05-21 17:58:22 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             this.fileInput = new Whisper.FileInputView({ | 
					
						
							| 
									
										
										
										
											2015-05-21 17:58:22 -07:00
										 |  |  |                 el: this.$('.attachments'), | 
					
						
							|  |  |  |                 window: this.appWindow.contentWindow | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             }); | 
					
						
							| 
									
										
										
										
											2014-10-24 14:03:34 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             this.view = new Whisper.MessageListView({ | 
					
						
							| 
									
										
										
										
											2015-05-28 11:50:31 -07:00
										 |  |  |                 collection: this.model.messageCollection, | 
					
						
							|  |  |  |                 window: this.appWindow.contentWindow | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             }); | 
					
						
							| 
									
										
										
										
											2015-03-27 18:47:58 -07:00
										 |  |  |             this.$('.discussion-container').append(this.view.el); | 
					
						
							| 
									
										
										
										
											2015-02-11 23:39:57 -08:00
										 |  |  |             this.view.render(); | 
					
						
							| 
									
										
										
										
											2015-01-21 18:27:42 -10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-23 22:43:22 +02:00
										 |  |  |             this.$messageField = this.$('.send-message'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             var onResize = this.forceUpdateMessageFieldSize.bind(this); | 
					
						
							|  |  |  |             this.appWindow.contentWindow.addEventListener('resize', onResize); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-26 11:53:00 -07:00
										 |  |  |             var onfocus = this.markRead.bind(this); | 
					
						
							|  |  |  |             this.appWindow.contentWindow.addEventListener('focus', onfocus); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-23 22:43:22 +02:00
										 |  |  |             this.appWindow.onClosed.addListener(function () { | 
					
						
							|  |  |  |                 this.appWindow.contentWindow.removeEventListener('resize', onResize); | 
					
						
							| 
									
										
										
										
											2015-06-26 11:53:00 -07:00
										 |  |  |                 this.appWindow.contentWindow.removeEventListener('focus', onfocus); | 
					
						
							| 
									
										
										
										
											2015-06-23 22:43:22 +02:00
										 |  |  |                 window.autosize.destroy(this.$messageField); | 
					
						
							|  |  |  |                 this.remove(); | 
					
						
							|  |  |  |             }.bind(this)); | 
					
						
							| 
									
										
										
										
											2015-06-19 22:43:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 11:30:41 -08:00
										 |  |  |             setTimeout(function() { | 
					
						
							|  |  |  |                 this.view.scrollToBottom(); | 
					
						
							| 
									
										
										
										
											2015-02-18 16:54:43 -08:00
										 |  |  |             }.bind(this), 10); | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-07-22 21:24:17 -10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |         events: { | 
					
						
							|  |  |  |             'submit .send': 'sendMessage', | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  |             'input .send-message': 'updateMessageFieldSize', | 
					
						
							|  |  |  |             'keydown .send-message': 'updateMessageFieldSize', | 
					
						
							| 
									
										
										
										
											2015-01-13 13:27:18 -10:00
										 |  |  |             'click .destroy': 'destroyMessages', | 
					
						
							| 
									
										
										
										
											2015-02-12 20:36:44 -08:00
										 |  |  |             'click .end-session': 'endSession', | 
					
						
							|  |  |  |             'click .leave-group': 'leaveGroup', | 
					
						
							| 
									
										
										
										
											2015-01-21 18:27:42 -10:00
										 |  |  |             'click .new-group-update': 'newGroupUpdate', | 
					
						
							| 
									
										
										
										
											2015-02-26 18:10:04 -08:00
										 |  |  |             'click .verify-identity': 'verifyIdentity', | 
					
						
							| 
									
										
										
										
											2015-02-19 11:48:56 -08:00
										 |  |  |             'click .hamburger': 'toggleMenu', | 
					
						
							| 
									
										
										
										
											2015-06-02 14:56:58 -07:00
										 |  |  |             'click .openInbox' : 'openInbox', | 
					
						
							| 
									
										
										
										
											2015-03-11 12:06:19 -07:00
										 |  |  |             'click' : 'onClick', | 
					
						
							| 
									
										
										
										
											2015-02-23 13:17:50 -08:00
										 |  |  |             'select .entry': 'messageDetail' | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-02 14:56:58 -07:00
										 |  |  |         openInbox: function() { | 
					
						
							|  |  |  |             openInbox(); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-11 12:06:19 -07:00
										 |  |  |         onClick: function(e) { | 
					
						
							|  |  |  |             this.closeMenu(e); | 
					
						
							|  |  |  |             this.markRead(e); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         markRead: function(e) { | 
					
						
							|  |  |  |             this.model.markRead(); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-26 18:10:04 -08:00
										 |  |  |         verifyIdentity: function() { | 
					
						
							|  |  |  |             if (this.model.isPrivate()) { | 
					
						
							| 
									
										
										
										
											2015-05-26 17:08:14 -07:00
										 |  |  |                 var their_number = this.model.id; | 
					
						
							|  |  |  |                 var our_number = textsecure.storage.user.getNumber(); | 
					
						
							|  |  |  |                 textsecure.storage.axolotl.getIdentityKey(their_number).then(function(their_key) { | 
					
						
							|  |  |  |                     textsecure.storage.axolotl.getIdentityKey(our_number).then(function(our_key) { | 
					
						
							|  |  |  |                         var view = new Whisper.KeyVerificationView({ | 
					
						
							|  |  |  |                             model: { their_key: their_key, your_key: our_key } | 
					
						
							|  |  |  |                         }); | 
					
						
							|  |  |  |                         this.$el.hide(); | 
					
						
							|  |  |  |                         view.render().$el.insertAfter(this.el); | 
					
						
							|  |  |  |                         this.listenTo(view, 'back', function() { | 
					
						
							|  |  |  |                             view.remove(); | 
					
						
							|  |  |  |                             this.$el.show(); | 
					
						
							|  |  |  |                         }.bind(this)); | 
					
						
							|  |  |  |                     }.bind(this)); | 
					
						
							|  |  |  |                 }.bind(this)); | 
					
						
							| 
									
										
										
										
											2015-02-26 18:10:04 -08:00
										 |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-23 13:17:50 -08:00
										 |  |  |         messageDetail: function(e, data) { | 
					
						
							| 
									
										
										
										
											2015-03-05 16:30:59 -08:00
										 |  |  |             var view = new Whisper.MessageDetailView({ | 
					
						
							|  |  |  |                 model: data.message, | 
					
						
							|  |  |  |                 conversation: this.model | 
					
						
							|  |  |  |             }); | 
					
						
							| 
									
										
										
										
											2015-02-23 13:17:50 -08:00
										 |  |  |             view.$el.insertAfter(this.$el); | 
					
						
							|  |  |  |             this.$el.hide(); | 
					
						
							|  |  |  |             view.render(); | 
					
						
							| 
									
										
										
										
											2015-03-12 11:40:55 -07:00
										 |  |  |             this.listenBack(view); | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         listenBack: function(view) { | 
					
						
							| 
									
										
										
										
											2015-02-23 13:17:50 -08:00
										 |  |  |             this.listenTo(view, 'back', function() { | 
					
						
							|  |  |  |                 view.remove(); | 
					
						
							|  |  |  |                 this.$el.show(); | 
					
						
							| 
									
										
										
										
											2015-02-17 18:03:05 -08:00
										 |  |  |             }); | 
					
						
							| 
									
										
										
										
											2015-02-19 11:48:56 -08:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         closeMenu: function(e) { | 
					
						
							|  |  |  |             if (e && !$(e.target).hasClass('hamburger')) { | 
					
						
							| 
									
										
										
										
											2015-03-27 18:47:58 -07:00
										 |  |  |                 this.$('.menu-list').hide(); | 
					
						
							| 
									
										
										
										
											2015-02-19 11:48:56 -08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-26 10:37:13 -10:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-12 20:36:44 -08:00
										 |  |  |         endSession: function() { | 
					
						
							|  |  |  |             this.model.endSession(); | 
					
						
							| 
									
										
										
										
											2015-03-27 18:47:58 -07:00
										 |  |  |             this.$('.menu-list').hide(); | 
					
						
							| 
									
										
										
										
											2015-02-12 20:36:44 -08:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         leaveGroup: function() { | 
					
						
							|  |  |  |             this.model.leaveGroup(); | 
					
						
							| 
									
										
										
										
											2015-03-27 18:47:58 -07:00
										 |  |  |             this.$('.menu-list').hide(); | 
					
						
							| 
									
										
										
										
											2015-02-12 20:36:44 -08:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-26 10:37:13 -10:00
										 |  |  |         toggleMenu: function() { | 
					
						
							| 
									
										
										
										
											2015-03-27 18:47:58 -07:00
										 |  |  |             this.$('.menu-list').toggle(); | 
					
						
							| 
									
										
										
										
											2015-01-13 13:27:18 -10:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         newGroupUpdate: function() { | 
					
						
							| 
									
										
										
										
											2015-03-12 11:40:55 -07:00
										 |  |  |             this.newGroupUpdateView = new Whisper.NewGroupUpdateView({ | 
					
						
							| 
									
										
										
										
											2015-06-04 13:29:01 -07:00
										 |  |  |                 model: this.model, | 
					
						
							|  |  |  |                 window: this.appWindow.contentWindow | 
					
						
							| 
									
										
										
										
											2015-03-12 11:40:55 -07:00
										 |  |  |             }); | 
					
						
							|  |  |  |             this.newGroupUpdateView.$el.insertAfter(this.el); | 
					
						
							|  |  |  |             this.$el.hide(); | 
					
						
							|  |  |  |             this.listenBack(this.newGroupUpdateView); | 
					
						
							| 
									
										
										
										
											2014-12-02 15:47:28 -08:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         destroyMessages: function(e) { | 
					
						
							| 
									
										
										
										
											2015-05-26 16:54:21 -07:00
										 |  |  |             this.confirm("Permanently delete this conversation?").then(function() { | 
					
						
							| 
									
										
										
										
											2014-12-02 15:47:28 -08:00
										 |  |  |                 this.model.destroyMessages(); | 
					
						
							| 
									
										
										
										
											2015-05-26 16:54:21 -07:00
										 |  |  |             }.bind(this)); | 
					
						
							| 
									
										
										
										
											2015-03-27 18:47:58 -07:00
										 |  |  |             this.$('.menu-list').hide(); | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-10-24 18:44:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |         sendMessage: function(e) { | 
					
						
							|  |  |  |             e.preventDefault(); | 
					
						
							| 
									
										
										
										
											2015-06-23 22:43:22 +02:00
										 |  |  |             var input = this.$messageField; | 
					
						
							| 
									
										
										
										
											2015-07-03 21:53:45 +02:00
										 |  |  |             var message = this.replace_colons(input.val()).trim(); | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             var convo = this.model; | 
					
						
							| 
									
										
										
										
											2014-07-23 10:06:37 -10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             if (message.length > 0 || this.fileInput.hasFiles()) { | 
					
						
							|  |  |  |                 this.fileInput.getFiles().then(function(attachments) { | 
					
						
							|  |  |  |                     convo.sendMessage(message, attachments); | 
					
						
							|  |  |  |                 }); | 
					
						
							|  |  |  |                 input.val(""); | 
					
						
							| 
									
										
										
										
											2015-06-19 22:43:24 +02:00
										 |  |  |                 this.forceUpdateMessageFieldSize(e); | 
					
						
							| 
									
										
										
										
											2015-02-10 01:20:21 -08:00
										 |  |  |                 this.fileInput.deleteFiles(); | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:40 -07:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:40 -07:00
										 |  |  |         replace_colons: function(str) { | 
					
						
							|  |  |  |             return str.replace(emoji.rx_colons, function(m){ | 
					
						
							|  |  |  |                 var idx = m.substr(1, m.length-2); | 
					
						
							|  |  |  |                 var val = emoji.map.colons[idx]; | 
					
						
							| 
									
										
										
										
											2015-03-12 11:03:11 -07:00
										 |  |  |                 if (val) { | 
					
						
							|  |  |  |                     return emoji.data[val][0][0]; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     return m; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:40 -07:00
										 |  |  |             }); | 
					
						
							| 
									
										
										
										
											2015-06-03 17:23:55 -07:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         updateTitle: function() { | 
					
						
							|  |  |  |             this.$('.conversation-title').text(this.model.getTitle()); | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         updateMessageFieldSize: function (event) { | 
					
						
							|  |  |  |             var keyCode = event.which || event.keyCode; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-03 13:49:01 +02:00
										 |  |  |             if (keyCode === 13 && !event.altKey && !event.shiftKey && !event.ctrlKey) { | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  |                 // enter pressed - submit the form now
 | 
					
						
							| 
									
										
										
										
											2015-06-17 23:06:19 +02:00
										 |  |  |                 event.preventDefault(); | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  |                 return this.$('.bottom-bar form').submit(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-14 23:11:11 +02:00
										 |  |  |             this.view.measureScrollPosition(); | 
					
						
							|  |  |  |             window.autosize(this.$messageField); | 
					
						
							| 
									
										
										
										
											2015-07-08 21:45:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-14 23:11:11 +02:00
										 |  |  |             var $discussionContainer = this.$('.discussion-container'), | 
					
						
							|  |  |  |                 $bottomBar = this.$('.bottom-bar'); | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-23 22:43:22 +02:00
										 |  |  |             $bottomBar.outerHeight(this.$messageField.outerHeight() + 1); | 
					
						
							| 
									
										
										
										
											2015-06-16 22:43:40 +02:00
										 |  |  |             var $bottomBarNewHeight = $bottomBar.outerHeight(); | 
					
						
							| 
									
										
										
										
											2015-06-24 12:10:53 -07:00
										 |  |  |             $discussionContainer.outerHeight(this.$el.outerHeight() - $bottomBarNewHeight - this.$('#header').outerHeight()); | 
					
						
							| 
									
										
										
										
											2015-07-08 21:45:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-14 23:11:11 +02:00
										 |  |  |             this.view.scrollToBottomIfNeeded(); | 
					
						
							| 
									
										
										
										
											2015-06-19 22:43:24 +02:00
										 |  |  |         }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         forceUpdateMessageFieldSize: function (event) { | 
					
						
							| 
									
										
										
										
											2015-07-14 23:11:11 +02:00
										 |  |  |             this.view.scrollToBottomIfNeeded(); | 
					
						
							| 
									
										
										
										
											2015-06-23 22:43:22 +02:00
										 |  |  |             window.autosize.update(this.$messageField); | 
					
						
							| 
									
										
										
										
											2015-06-19 22:43:24 +02:00
										 |  |  |             this.updateMessageFieldSize(event); | 
					
						
							| 
									
										
										
										
											2014-11-16 13:19:51 -08:00
										 |  |  |         } | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2014-07-22 21:24:17 -10:00
										 |  |  | })(); |