| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /**
- * This file is part of Threema Web.
- *
- * Threema Web is free software: you can redistribute it and/or modify it
- * under the terms of the GNU Affero 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 Affero
- * General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with Threema Web. If not, see <http://www.gnu.org/licenses/>.
- */
- import {isContactReceiver} from '../typeguards';
- import {ReceiverService} from './receiver';
- export class MessageAccess {
- public quote = false;
- public ack = false;
- public dec = false;
- public delete = false;
- public download = false;
- public copy = false;
- }
- export class MessageService {
- // Angular services
- private $log: ng.ILogService;
- private $timeout: ng.ITimeoutService;
- // Own services
- private receiverService: ReceiverService;
- // Other
- private timeoutDelaySeconds = 30;
- public static $inject = ['$log', '$timeout', 'ReceiverService'];
- constructor($log: ng.ILogService, $timeout: ng.ITimeoutService, receiverService: ReceiverService) {
- this.$log = $log;
- this.$timeout = $timeout;
- this.receiverService = receiverService;
- }
- public getAccess(message: threema.Message, receiver: threema.Receiver): MessageAccess {
- const access = new MessageAccess();
- if (message !== undefined) {
- access.quote = (message.type === 'text')
- || (message.type === 'location')
- || (message.caption !== undefined && message.caption !== null && message.caption.length > 0);
- access.copy = access.quote;
- if (receiver !== undefined && message.temporaryId === undefined) {
- if (message.isOutbox === false
- && isContactReceiver(receiver)
- && message.type !== 'voipStatus') {
- access.ack = message.state !== 'user-ack';
- access.dec = message.state !== 'user-dec';
- }
- switch (message.type) {
- case 'image':
- case 'video':
- case 'audio':
- case 'file':
- access.download = true;
- break;
- default:
- access.download = false;
- }
- access.delete = true;
- }
- }
- return access;
- }
- /**
- * Return the quotable text in this message, or null.
- */
- public getQuoteText(message: threema.Message): string | null {
- let quoteText = null;
- if (message !== null && message !== undefined) {
- switch (message.type) {
- case 'text':
- quoteText = message.body;
- break;
- case 'location':
- quoteText = message.location.description;
- break;
- case 'file':
- case 'image':
- quoteText = message.caption;
- break;
- default:
- // Ignore (handled below)
- }
- }
- return quoteText;
- }
- public showStatusIcon(message: threema.Message, receiver: threema.Receiver): boolean {
- if (message !== null && receiver !== null) {
- const messageState = message.state;
- // group message/distribution list message icons only on pending or failing states
- switch (receiver.type) {
- case 'group':
- if (message.isOutbox && (message.temporaryId === undefined || message.temporaryId === null)) {
- return messageState === 'send-failed'
- || messageState === 'sending'
- || (messageState === 'pending' && message.type !== 'ballot');
- }
- return false;
- case 'distributionList':
- return false;
- case 'contact':
- if (!message.isOutbox) {
- return messageState === 'user-ack'
- || messageState === 'user-dec';
- } else if (this.receiverService.isBusinessContact(receiver)) {
- // move this into a service
- return messageState === 'send-failed'
- || messageState === 'sending'
- || messageState === 'pending';
- }
- return true;
- default:
- return false;
- }
- }
- return false;
- }
- /**
- * Create a message object with a temporaryId
- */
- public createTemporary(receiver: threema.Receiver, msgType: string,
- messageData: threema.MessageData): threema.Message {
- const now = new Date();
- const message = {
- temporaryId: receiver.type + receiver.id + Math.random(),
- type: msgType,
- isOutbox: true,
- state: 'pending',
- id: undefined,
- body: undefined,
- date: Math.floor(Date.now() / 1000),
- partnerId: receiver.id,
- isStatus: false,
- quote: undefined,
- caption: msgType === 'file' ? (messageData as threema.FileMessageData).caption : null,
- } as threema.Message;
- if (msgType === 'text') {
- message.body = (messageData as threema.TextMessageData).text;
- message.quote = (messageData as threema.TextMessageData).quote;
- }
- // Add delay for timeout checking
- this.$timeout(() => {
- // Set the state to timeout if it is still pending.
- // Note: If sending the message worked, by now the message object
- // will have been replaced by a new one and the state change would
- // have no effect anyways...
- if (message.state === 'pending') {
- message.state = 'timeout';
- }
- }, this.timeoutDelaySeconds * 1000);
- return message;
- }
- }
|