_WKAttachment.mm   [plain text]


/*
 * Copyright (C) 2017 Apple Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
 */

#import "config.h"
#import "_WKAttachment.h"

#if WK_API_ENABLED

#import "APIAttachment.h"
#import "WKErrorPrivate.h"
#import "_WKAttachmentInternal.h"
#import <WebCore/AttachmentTypes.h>
#import <WebCore/SharedBuffer.h>
#import <wtf/BlockPtr.h>

using namespace WebKit;

@implementation _WKAttachmentDisplayOptions : NSObject

- (instancetype)init
{
    if (self = [super init])
        _mode = _WKAttachmentDisplayModeAuto;

    return self;
}

- (WebCore::AttachmentDisplayOptions)coreDisplayOptions
{
    WebCore::AttachmentDisplayMode mode;
    switch (self.mode) {
    case _WKAttachmentDisplayModeAuto:
        mode = WebCore::AttachmentDisplayMode::Auto;
        break;
    case _WKAttachmentDisplayModeAsIcon:
        mode = WebCore::AttachmentDisplayMode::AsIcon;
        break;
    case _WKAttachmentDisplayModeInPlace:
        mode = WebCore::AttachmentDisplayMode::InPlace;
        break;
    default:
        ASSERT_NOT_REACHED();
        mode = WebCore::AttachmentDisplayMode::Auto;
    }
    return { mode };
}

@end

@implementation _WKAttachmentInfo {
    RetainPtr<NSData> _data;
    RetainPtr<NSString> _name;
    RetainPtr<NSString> _filePath;
    RetainPtr<NSString> _contentType;
    RetainPtr<NSError> _fileLoadingError;
}

- (instancetype)initWithInfo:(const WebCore::AttachmentInfo&)info
{
    if (!(self = [super init]))
        return nil;

    _data = info.data ? info.data->createNSData() : nil;
    _contentType = adoptNS([(NSString *)info.contentType ?: @"" copy]);
    _name = adoptNS([(NSString *)info.name ?: @"" copy]);
    _filePath = adoptNS([(NSString *)info.filePath ?: @"" copy]);
    _fileLoadingError = nil;

    if (!_data && [_filePath length]) {
        NSError *error = nil;
        _data = [NSData dataWithContentsOfFile:_filePath.get() options:NSDataReadingMappedIfSafe error:&error];
        _fileLoadingError = error;
    }

    return self;
}

- (NSData *)data
{
    return _data.get();
}

- (NSString *)name
{
    return _name.get();
}

- (NSString *)filePath
{
    return _filePath.get();
}

- (NSString *)contentType
{
    return _contentType.get();
}

- (NSError *)fileLoadingError
{
    return _fileLoadingError.get();
}

@end

@implementation _WKAttachment

- (API::Object&)_apiObject
{
    return *_attachment;
}

- (BOOL)isEqual:(id)object
{
    return [object isKindOfClass:[_WKAttachment class]] && [self.uniqueIdentifier isEqual:[(_WKAttachment *)object uniqueIdentifier]];
}

- (void)requestInfo:(void(^)(_WKAttachmentInfo *, NSError *))completionHandler
{
    _attachment->requestInfo([capturedBlock = makeBlockPtr(completionHandler)] (const WebCore::AttachmentInfo& info, CallbackBase::Error error) {
        if (!capturedBlock)
            return;

        if (error != CallbackBase::Error::None) {
            capturedBlock(nil, [NSError errorWithDomain:WKErrorDomain code:WKErrorWebViewInvalidated userInfo:nil]);
            return;
        }

        auto attachmentInfo = adoptNS([[_WKAttachmentInfo alloc] initWithInfo:info]);
        if (NSError *fileLoadingError = [attachmentInfo fileLoadingError]) {
            capturedBlock(nil, [NSError errorWithDomain:WKErrorDomain code:WKErrorUnknown userInfo:@{ NSUnderlyingErrorKey : fileLoadingError }]);
            return;
        }

        capturedBlock(attachmentInfo.get(), nil);
    });
}

- (void)requestData:(void(^)(NSData *, NSError *))completionHandler
{
    [self requestInfo:[protectedBlock = makeBlockPtr(completionHandler)] (_WKAttachmentInfo *info, NSError *error) {
        protectedBlock(info.data, error);
    }];
}

- (void)setDisplayOptions:(_WKAttachmentDisplayOptions *)options completion:(void(^)(NSError *))completionHandler
{
    auto coreOptions = options ? options.coreDisplayOptions : WebCore::AttachmentDisplayOptions { };
    _attachment->setDisplayOptions(coreOptions, [capturedBlock = makeBlockPtr(completionHandler)] (CallbackBase::Error error) {
        if (!capturedBlock)
            return;

        if (error == CallbackBase::Error::None)
            capturedBlock(nil);
        else
            capturedBlock([NSError errorWithDomain:WKErrorDomain code:1 userInfo:nil]);
    });
}

- (void)setData:(NSData *)data newContentType:(NSString *)newContentType newFilename:(NSString *)newFilename completion:(void(^)(NSError *))completionHandler
{
    auto buffer = WebCore::SharedBuffer::create(data);
    _attachment->setDataAndContentType(buffer.get(), newContentType, newFilename, [capturedBlock = makeBlockPtr(completionHandler), capturedBuffer = buffer.copyRef()] (CallbackBase::Error error) {
        if (!capturedBlock)
            return;

        if (error == CallbackBase::Error::None)
            capturedBlock(nil);
        else
            capturedBlock([NSError errorWithDomain:WKErrorDomain code:1 userInfo:nil]);
    });
}

- (NSString *)uniqueIdentifier
{
    return _attachment->identifier();
}

- (NSUInteger)hash
{
    return [self.uniqueIdentifier hash];
}

- (NSString *)description
{
    return [NSString stringWithFormat:@"<%@ id='%@'>", [self class], self.uniqueIdentifier];
}

@end

#endif // WK_API_ENABLED