react-native-fs/RNFSManager.m

317 lines
10 KiB
Mathematica
Raw Normal View History

2015-05-08 17:05:37 +00:00
//
// RNFSManager.m
// RNFSManager
//
// Created by Johannes Lumpe on 08/05/15.
// Copyright (c) 2015 Johannes Lumpe. All rights reserved.
//
#import "RNFSManager.h"
#import "RCTBridge.h"
#import "NSArray+Map.h"
#import "Downloader.h"
2015-11-20 00:16:13 +00:00
#import "RCTEventDispatcher.h"
2015-05-08 17:05:37 +00:00
@interface RNFSManager()
@property (retain) NSMutableDictionary* downloaders;
@end
2015-05-08 17:05:37 +00:00
@implementation RNFSManager
2015-11-20 00:16:13 +00:00
@synthesize bridge = _bridge;
2015-05-08 17:05:37 +00:00
RCT_EXPORT_MODULE();
- (dispatch_queue_t)methodQueue
{
return dispatch_queue_create("pe.lum.rnfs", DISPATCH_QUEUE_SERIAL);
}
2015-05-08 17:05:37 +00:00
RCT_EXPORT_METHOD(readDir:(NSString *)dirPath
callback:(RCTResponseSenderBlock)callback)
{
2015-05-08 17:05:37 +00:00
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error = nil;
2015-05-08 17:05:37 +00:00
NSArray *contents = [fileManager contentsOfDirectoryAtPath:dirPath error:&error];
contents = [contents rnfs_mapObjectsUsingBlock:^id(NSString *obj, NSUInteger idx) {
2015-10-20 22:31:29 +00:00
NSString *path = [dirPath stringByAppendingPathComponent:obj];
NSDictionary *attributes = [fileManager attributesOfItemAtPath:path error:nil];
2015-05-08 17:05:37 +00:00
return @{
@"name": obj,
2015-10-20 22:31:29 +00:00
@"path": path,
@"size": [attributes objectForKey:NSFileSize],
@"type": [attributes objectForKey:NSFileType]
2015-05-08 17:05:37 +00:00
};
}];
2015-05-08 17:05:37 +00:00
if (error) {
return callback([self makeErrorPayload:error]);
}
2015-05-08 17:05:37 +00:00
callback(@[[NSNull null], contents]);
}
2016-01-28 18:20:02 +00:00
RCT_EXPORT_METHOD(exists:(NSString *)filepath
2016-01-28 13:36:31 +00:00
callback:(RCTResponseSenderBlock)callback)
{
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:filepath];
callback(@[[NSNull null], [NSNumber numberWithBool:fileExists]]);
}
RCT_EXPORT_METHOD(stat:(NSString *)filepath
callback:(RCTResponseSenderBlock)callback)
{
NSError *error = nil;
2015-05-08 17:05:37 +00:00
NSDictionary *attributes = [[NSFileManager defaultManager] attributesOfItemAtPath:filepath error:&error];
2015-05-08 17:05:37 +00:00
if (error) {
return callback([self makeErrorPayload:error]);
}
2015-05-08 17:05:37 +00:00
attributes = @{
@"ctime": [self dateToTimeIntervalNumber:(NSDate *)[attributes objectForKey:NSFileCreationDate]],
@"mtime": [self dateToTimeIntervalNumber:(NSDate *)[attributes objectForKey:NSFileModificationDate]],
@"size": [attributes objectForKey:NSFileSize],
@"type": [attributes objectForKey:NSFileType],
@"mode": @([[NSString stringWithFormat:@"%ld", (long)[(NSNumber *)[attributes objectForKey:NSFilePosixPermissions] integerValue]] integerValue])
};
2015-05-08 17:05:37 +00:00
callback(@[[NSNull null], attributes]);
}
RCT_EXPORT_METHOD(writeFile:(NSString *)filepath
contents:(NSString *)base64Content
attributes:(NSDictionary *)attributes
callback:(RCTResponseSenderBlock)callback)
{
NSData *data = [[NSData alloc] initWithBase64EncodedString:base64Content options:NSDataBase64DecodingIgnoreUnknownCharacters];
BOOL success = [[NSFileManager defaultManager] createFileAtPath:filepath contents:data attributes:attributes];
if (!success) {
return callback(@[[NSString stringWithFormat:@"Could not write file at path %@", filepath]]);
}
callback(@[[NSNull null], [NSNumber numberWithBool:success], filepath]);
}
RCT_EXPORT_METHOD(unlink:(NSString*)filepath
callback:(RCTResponseSenderBlock)callback)
{
2015-05-08 21:17:10 +00:00
NSFileManager *manager = [NSFileManager defaultManager];
BOOL exists = [manager fileExistsAtPath:filepath isDirectory:false];
if (!exists) {
return callback(@[[NSString stringWithFormat:@"File at path %@ does not exist", filepath]]);
}
NSError *error = nil;
2015-05-08 21:17:10 +00:00
BOOL success = [manager removeItemAtPath:filepath error:&error];
if (!success) {
return callback([self makeErrorPayload:error]);
}
callback(@[[NSNull null], [NSNumber numberWithBool:success], filepath]);
}
2015-10-20 22:31:29 +00:00
RCT_EXPORT_METHOD(mkdir:(NSString*)filepath
excludeFromBackup:(BOOL)excludeFromBackup
2015-10-20 22:31:29 +00:00
callback:(RCTResponseSenderBlock)callback)
{
NSFileManager *manager = [NSFileManager defaultManager];
NSError *error = nil;
BOOL success = [manager createDirectoryAtPath:filepath withIntermediateDirectories:YES attributes:nil error:&error];
if (!success) {
return callback([self makeErrorPayload:error]);
}
NSURL *url = [NSURL fileURLWithPath:filepath];
success = [url setResourceValue: [NSNumber numberWithBool: excludeFromBackup] forKey: NSURLIsExcludedFromBackupKey error: &error];
if (!success) {
return callback([self makeErrorPayload:error]);
}
2015-10-20 22:31:29 +00:00
callback(@[[NSNull null], [NSNumber numberWithBool:success], filepath]);
}
RCT_EXPORT_METHOD(readFile:(NSString *)filepath
callback:(RCTResponseSenderBlock)callback)
{
2015-05-08 17:05:37 +00:00
NSData *content = [[NSFileManager defaultManager] contentsAtPath:filepath];
NSString *base64Content = [content base64EncodedStringWithOptions:NSDataBase64EncodingEndLineWithLineFeed];
2015-05-08 21:17:10 +00:00
2015-05-08 17:05:37 +00:00
if (!base64Content) {
return callback(@[[NSString stringWithFormat:@"Could not read file at path %@", filepath]]);
}
2015-05-08 17:05:37 +00:00
callback(@[[NSNull null], base64Content]);
}
2016-01-16 18:52:56 +00:00
RCT_EXPORT_METHOD(moveFile:(NSString *)filepath
2016-01-27 16:52:56 +00:00
destPath:(NSString *)destPath
2016-01-16 18:52:56 +00:00
callback:(RCTResponseSenderBlock)callback)
{
NSFileManager *manager = [NSFileManager defaultManager];
2016-04-07 19:29:36 +00:00
2016-01-16 18:52:56 +00:00
NSError *error = nil;
2016-01-27 16:52:56 +00:00
BOOL success = [manager moveItemAtPath:filepath toPath:destPath error:&error];
2016-04-07 19:29:36 +00:00
2016-01-16 18:52:56 +00:00
if (!success) {
return callback([self makeErrorPayload:error]);
}
2016-04-07 19:29:36 +00:00
2016-01-27 16:52:56 +00:00
callback(@[[NSNull null], [NSNumber numberWithBool:success], destPath]);
2016-01-16 18:52:56 +00:00
}
2015-10-20 23:17:03 +00:00
RCT_EXPORT_METHOD(downloadFile:(NSString *)urlStr
filepath:(NSString *)filepath
2015-11-20 00:16:13 +00:00
jobId:(nonnull NSNumber *)jobId
2015-10-20 23:17:03 +00:00
callback:(RCTResponseSenderBlock)callback)
{
2016-04-07 19:29:36 +00:00
DownloadParams* params = [DownloadParams alloc];
2016-04-07 19:29:36 +00:00
params.fromUrl = urlStr;
params.toFile = filepath;
params.callback = ^(NSNumber* statusCode, NSNumber* bytesWritten) {
NSMutableDictionary* result = [[NSMutableDictionary alloc] initWithDictionary: @{@"jobId": jobId,
@"statusCode": statusCode}];
if (bytesWritten) {
[result setObject:bytesWritten forKey: @"bytesWritten"];
}
return callback(@[[NSNull null], result]);
};
2015-10-22 23:13:12 +00:00
2015-11-23 17:08:52 +00:00
params.errorCallback = ^(NSError* error) {
2015-10-22 23:13:12 +00:00
return callback([self makeErrorPayload:error]);
};
2016-04-07 19:29:36 +00:00
params.beginCallback = ^(NSNumber* statusCode, NSNumber* contentLength, NSDictionary* headers) {
[self.bridge.eventDispatcher sendAppEventWithName:[NSString stringWithFormat:@"DownloadBegin-%@", jobId]
body:@{@"jobId": jobId,
@"statusCode": statusCode,
2015-11-20 00:16:13 +00:00
@"contentLength": contentLength,
@"headers": headers}];
};
2016-04-07 19:29:36 +00:00
params.progressCallback = ^(NSNumber* contentLength, NSNumber* bytesWritten) {
[self.bridge.eventDispatcher sendAppEventWithName:[NSString stringWithFormat:@"DownloadProgress-%@", jobId]
2016-04-07 19:29:36 +00:00
body:@{@"jobId": jobId,
@"contentLength": contentLength,
2015-11-20 00:16:13 +00:00
@"bytesWritten": bytesWritten}];
};
2015-10-20 23:17:03 +00:00
2015-11-23 17:08:52 +00:00
if (!self.downloaders) self.downloaders = [[NSMutableDictionary alloc] init];
2016-04-07 19:29:36 +00:00
Downloader* downloader = [Downloader alloc];
[downloader downloadFile:params];
2016-04-07 19:29:36 +00:00
[self.downloaders setValue:downloader forKey:[jobId stringValue]];
}
2015-11-23 17:08:52 +00:00
RCT_EXPORT_METHOD(stopDownload:(nonnull NSNumber *)jobId)
{
Downloader* downloader = [self.downloaders objectForKey:[jobId stringValue]];
2016-04-07 19:29:36 +00:00
if (downloader != nil) {
[downloader stopDownload];
}
2015-10-20 23:17:03 +00:00
}
RCT_EXPORT_METHOD(pathForBundle:(NSString *)bundleNamed
callback:(RCTResponseSenderBlock)callback)
{
NSString *path = [[NSBundle mainBundle].bundlePath stringByAppendingFormat:@"/%@.bundle", bundleNamed];
NSBundle *bundle = [NSBundle bundleWithPath:path];
if (!bundle) {
bundle = [NSBundle bundleForClass:NSClassFromString(bundleNamed)];
2015-08-27 17:36:03 +00:00
path = bundle.bundlePath;
}
2015-10-20 22:31:29 +00:00
if (!bundle.isLoaded) {
[bundle load];
}
2015-08-27 17:42:16 +00:00
if (path) {
callback(@[[NSNull null], path]);
} else {
callback(@[[NSError errorWithDomain:NSPOSIXErrorDomain
code:NSFileNoSuchFileError
userInfo:nil].localizedDescription,
[NSNull null]]);
}
}
2016-03-18 17:53:00 +00:00
RCT_EXPORT_METHOD(getFSInfo:(RCTResponseSenderBlock)callback)
{
unsigned long long totalSpace = 0;
unsigned long long totalFreeSpace = 0;
2016-03-18 17:53:00 +00:00
__autoreleasing NSError *error = nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error];
2016-03-18 17:53:00 +00:00
if (dictionary) {
NSNumber *fileSystemSizeInBytes = [dictionary objectForKey: NSFileSystemSize];
NSNumber *freeFileSystemSizeInBytes = [dictionary objectForKey:NSFileSystemFreeSize];
totalSpace = [fileSystemSizeInBytes unsignedLongLongValue];
totalFreeSpace = [freeFileSystemSizeInBytes unsignedLongLongValue];
2016-03-18 17:53:00 +00:00
callback(@[[NSNull null],
@{
@"totalSpace": [NSNumber numberWithUnsignedLongLong:totalSpace],
@"freeSpace": [NSNumber numberWithUnsignedLongLong:totalFreeSpace]
}
]);
} else {
callback(@[error, [NSNull null]]);
}
}
- (NSNumber *)dateToTimeIntervalNumber:(NSDate *)date
{
return @([date timeIntervalSince1970]);
2015-05-08 17:05:37 +00:00
}
- (NSArray *)makeErrorPayload:(NSError *)error
{
2015-05-08 17:05:37 +00:00
return @[@{
@"description": error.localizedDescription,
@"code": @(error.code)
2015-05-08 17:05:37 +00:00
}];
}
- (NSString *)getPathForDirectory:(int)directory
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(directory, NSUserDomainMask, YES);
return [paths firstObject];
}
2015-05-08 17:05:37 +00:00
- (NSDictionary *)constantsToExport
{
return @{
2015-10-22 23:13:12 +00:00
@"MainBundlePath": [[NSBundle mainBundle] bundlePath],
@"NSCachesDirectoryPath": [self getPathForDirectory:NSCachesDirectory],
@"NSDocumentDirectoryPath": [self getPathForDirectory:NSDocumentDirectory],
@"NSExternalDirectoryPath": [NSNull null],
2016-05-14 21:41:01 +00:00
@"NSTemporaryDirectoryPatg": NSTemporaryDirectory(),
2015-12-02 02:04:09 +00:00
@"NSLibraryDirectoryPath": [self getPathForDirectory:NSLibraryDirectory],
2015-05-08 17:05:37 +00:00
@"NSFileTypeRegular": NSFileTypeRegular,
@"NSFileTypeDirectory": NSFileTypeDirectory
};
}
@end