123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- // _____ _
- // |_ _| |_ _ _ ___ ___ _ __ __ _
- // | | | ' \| '_/ -_) -_) ' \/ _` |_
- // |_| |_||_|_| \___\___|_|_|_\__,_(_)
- //
- // Threema iOS Client
- // Copyright (c) 2014-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 "MWPhoto.h"
- //
- // MediaBrowserPhoto.m
- // Threema
- //
- // Copyright (c) 2014 Threema GmbH. All rights reserved.
- //
- #import "MediaBrowserPhoto.h"
- #import "ImageMessageLoader.h"
- #import "NSString+Hex.m"
- @interface MediaBrowserPhoto ()
- @property NSURL *photoURL;
- @property BOOL thumbnail;
- @end
- @implementation MediaBrowserPhoto
- @synthesize underlyingImage = _underlyingImage; // synth property from protocol
- + (instancetype)photoWithImageMessage:(ImageMessage *)imageMessage thumbnail:(BOOL)thumbnail {
- return [[MediaBrowserPhoto alloc] initWithImageMessage:imageMessage thumbnail:thumbnail];
- }
- - (id)initWithImageMessage:(ImageMessage *)imageMessage thumbnail:(BOOL)thumbnail {
- if ((self = [super init])) {
- _imageMessage = imageMessage;
- _thumbnail = thumbnail;
- _isUtiPreview = false;
- }
- return self;
- }
- -(id)sourceReference {
- return _imageMessage;
- }
- #pragma mark - MWPhoto Protocol Methods
- - (UIImage *)underlyingImage {
- return _underlyingImage;
- }
- - (void)loadUnderlyingImageAndNotify {
- [self performLoadUnderlyingImageAndNotify];
- }
- // Set the underlyingImage
- - (void)performLoadUnderlyingImageAndNotify {
- if (_thumbnail) {
- _underlyingImage = _imageMessage.thumbnail.uiImage;
- }
- else {
- _underlyingImage = _imageMessage.image != nil ? _imageMessage.image.uiImage : _imageMessage.thumbnail.uiImage;
- }
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:MWPHOTO_LOADING_DID_END_NOTIFICATION object:self];
- });
- }
- - (void)unloadUnderlyingImage {
- _underlyingImage = nil;
- }
- - (BOOL)showControls {
- return NO;
- }
- -(BOOL)canScaleImage {
- return YES;
- }
- -(NSURL *)urlForExportData:(NSString *)tmpFileName {
- NSString *fileName = [self.imageMessage getFilename];
- if (fileName == nil) {
- fileName = tmpFileName;
- }
- _photoURL = [[[NSURL fileURLWithPath:NSTemporaryDirectory() isDirectory:YES] URLByAppendingPathComponent:fileName] URLByAppendingPathExtension:MEDIA_EXTENSION_IMAGE];
- NSData *imageData = _imageMessage.image.data;
- if (![imageData writeToURL:_photoURL atomically:NO]) {
- return nil;
- }
-
- return _photoURL;
- }
- - (void)cancelAnyLoading {
-
- }
- - (NSString *)accessibilityLabelForContent {
- NSString *date = [DateFormatter accessibilityDateTime:_imageMessage.remoteSentDate];
- return [NSString stringWithFormat:@"%@. %@", NSLocalizedString(@"image", nil), date];
- }
- @end
|