1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- // _____ _
- // |_ _| |_ _ _ ___ ___ _ __ __ _
- // | | | ' \| '_/ -_) -_) ' \/ _` |_
- // |_| |_||_|_| \___\___|_|_|_\__,_(_)
- //
- // Threema iOS Client
- // Copyright (c) 2016-2020 Threema GmbH
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License, version 3,
- // as published by the Free Software Foundation.
- //
- // 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 this program. If not, see <https://www.gnu.org/licenses/>.
- #import "MessageDraftStore.h"
- #import "Contact.h"
- #import "Conversation.h"
- #import "NSString+Hex.h"
- #import "AppGroup.h"
- @implementation MessageDraftStore
- + (void)saveDraft:(NSString*)draft forConversation:(Conversation*)conversation {
- NSString *storeKey = [MessageDraftStore storeKeyForConversation:conversation];
- if (storeKey == nil)
- return;
-
- NSDictionary *messageDrafts = [[AppGroup userDefaults] dictionaryForKey:@"MessageDrafts"];
- if (messageDrafts == nil) {
- messageDrafts = [NSDictionary dictionary];
- }
-
- NSMutableDictionary *newMessageDrafts = [NSMutableDictionary dictionaryWithDictionary:messageDrafts];
- if (draft.length == 0) {
- [newMessageDrafts removeObjectForKey:storeKey];
- } else {
- [newMessageDrafts setObject:draft forKey:storeKey];
- }
-
- [[AppGroup userDefaults] setObject:newMessageDrafts forKey:@"MessageDrafts"];
- [[AppGroup userDefaults] synchronize];
-
- if (SYSTEM_IS_IPAD)
- [[NSNotificationCenter defaultCenter] postNotificationName:kNotificationUpdateDraftForCell object:nil];
- }
- + (void)deleteDraftForConversation:(Conversation *)conversation {
- NSString *storeKey = [MessageDraftStore storeKeyForConversation:conversation];
- if (storeKey == nil)
- return;
-
- NSDictionary *messageDrafts = [[AppGroup userDefaults] dictionaryForKey:@"MessageDrafts"];
- if (messageDrafts == nil || [messageDrafts objectForKey:storeKey] == nil) {
- return;
- }
-
- NSMutableDictionary *newMessageDrafts = [NSMutableDictionary dictionaryWithDictionary:messageDrafts];
- [newMessageDrafts removeObjectForKey:storeKey];
- [[AppGroup userDefaults] setObject:newMessageDrafts forKey:@"MessageDrafts"];
- [[AppGroup userDefaults] synchronize];
- }
- + (NSString *)loadDraftForConversation:(Conversation *)conversation {
- NSString *storeKey = [MessageDraftStore storeKeyForConversation:conversation];
- if (storeKey == nil)
- return nil;
-
- NSDictionary *messageDrafts = [[AppGroup userDefaults] dictionaryForKey:@"MessageDrafts"];
- return [messageDrafts objectForKey:storeKey];
- }
- + (NSString*)storeKeyForConversation:(Conversation*)conversation {
- if ([conversation isGroup]) {
- NSString *creator = conversation.contact.identity;
- if (creator == nil)
- creator = @"*";
- return [NSString stringWithFormat:@"%@-%@", creator, [NSString stringWithHexData:conversation.groupId]];
- } else {
- return conversation.contact.identity;
- }
- }
- @end
|