session-ios/Signal/src/textsecure/Messages/Attachements/TSAttachmentStream.m
Frederic Jacobs 9569a9b9c6 Multiple visual enhancements and repo cleanup.
- Revising iconography to stick to v2.0 design.
- Multiple bug fixes based on testers feedback
- Integration with system addressbook
- Removing unused assets.
2015-02-18 18:20:02 +01:00

104 lines
3.4 KiB
Objective-C

//
// TSattachmentStream.m
// Signal
//
// Created by Frederic Jacobs on 17/12/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import "TSAttachmentStream.h"
#import <AVFoundation/AVFoundation.h>
#import "MIMETypeUtil.h"
NSString * const TSAttachementFileRelationshipEdge = @"TSAttachementFileEdge";
@implementation TSAttachmentStream
- (instancetype)initWithIdentifier:(NSString*)identifier
data:(NSData*)data
key:(NSData*)key
contentType:(NSString*)contentType {
self = [super initWithIdentifier:identifier encryptionKey:key contentType:contentType];
[[NSFileManager defaultManager] createFileAtPath:self.filePath contents:data attributes:nil];
_isDownloaded = YES;
return self;
}
- (NSArray *)yapDatabaseRelationshipEdges {
YapDatabaseRelationshipEdge *attachmentFileEdge = [YapDatabaseRelationshipEdge edgeWithName:TSAttachementFileRelationshipEdge
destinationFilePath:[self filePath]
nodeDeleteRules:YDB_DeleteDestinationIfSourceDeleted];
return @[attachmentFileEdge];
}
+ (NSString*)attachmentsFolder {
NSFileManager* fileManager = [NSFileManager defaultManager];
NSURL *fileURL = [[fileManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
NSString *path = [fileURL path];
NSString *attachmentFolder = [path stringByAppendingFormat:@"/Attachments"];
NSError * error = nil;
[[NSFileManager defaultManager] createDirectoryAtPath:attachmentFolder
withIntermediateDirectories:YES
attributes:nil
error:&error];
if (error != nil) {
DDLogError(@"Failed to create attachments directory: %@", error.description);
}
return attachmentFolder;
}
- (NSString*)filePath {
return [MIMETypeUtil filePathForAttachment:self.uniqueId ofMIMEType:self.contentType inFolder:[[self class] attachmentsFolder]];
}
-(NSURL*) mediaURL {
return [NSURL fileURLWithPath:[self filePath]];
}
- (BOOL)isImage {
return [MIMETypeUtil isImage:self.contentType];
}
- (BOOL)isVideo {
return [MIMETypeUtil isVideo:self.contentType];
}
-(BOOL)isAudio {
return [MIMETypeUtil isAudio:self.contentType];
}
- (UIImage*)image {
if (![self isImage]) {
return [self videoThumbnail];
}
return [UIImage imageWithContentsOfFile:self.filePath];
}
- (UIImage*)videoThumbnail {
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:self.filePath] options:nil];
AVAssetImageGenerator *generate = [[AVAssetImageGenerator alloc] initWithAsset:asset];
generate.appliesPreferredTrackTransform = YES;
NSError *err = NULL;
CMTime time = CMTimeMake(1, 60);
CGImageRef imgRef = [generate copyCGImageAtTime:time actualTime:NULL error:&err];
return [[UIImage alloc] initWithCGImage:imgRef];
}
+ (void)deleteAttachments {
NSFileManager *fm = [NSFileManager defaultManager];
NSError *error;
[fm removeItemAtPath:[self attachmentsFolder] error:&error];
if (error) {
DDLogError(@"Failed to delete attachment folder with error: %@", error.debugDescription);
}
}
@end