blob: 475dfb7d2ac91e2c7241654534115f0c2e55a087 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#import "CMISFolder.h"
#import "CMISObjectConverter.h"
#import "CMISConstants.h"
#import "CMISErrors.h"
#import "CMISPagedResult.h"
#import "CMISOperationContext.h"
#import "CMISObjectList.h"
#import "CMISSession.h"
#import "CMISRequest.h"
#import "CMISLog.h"
@interface CMISFolder ()
@property (nonatomic, strong, readwrite) NSString *path;
@property (nonatomic, strong, readwrite) CMISCollection *children;
@end
@implementation CMISFolder
- (id)initWithObjectData:(CMISObjectData *)objectData session:(CMISSession *)session
{
self = [super initWithObjectData:objectData session:session];
if (self){
self.path = [[objectData.properties propertyForId:kCMISPropertyPath] firstValue];
}
return self;
}
- (CMISRequest*)retrieveChildrenWithCompletionBlock:(void (^)(CMISPagedResult *result, NSError *error))completionBlock
{
return [self retrieveChildrenWithOperationContext:[CMISOperationContext defaultOperationContext] completionBlock:completionBlock];
}
- (BOOL)isRootFolder
{
return [self.identifier isEqualToString:self.session.repositoryInfo.rootFolderId];
}
- (CMISRequest*)retrieveFolderParentWithCompletionBlock:(void (^)(CMISFolder *folder, NSError *error))completionBlock
{
if ([self isRootFolder])
{
completionBlock(nil, nil);
return nil;
} else {
return [self retrieveParentsWithCompletionBlock:^(NSArray *parentFolders, NSError *error) {
if (parentFolders.count > 0) {
completionBlock([parentFolders objectAtIndex:0], error);
} else {
completionBlock(nil, error);
}
}];
}
}
- (CMISRequest*)retrieveChildrenWithOperationContext:(CMISOperationContext *)operationContext completionBlock:(void (^)(CMISPagedResult *result, NSError *error))completionBlock
{
CMISRequest *request = [[CMISRequest alloc] init];
CMISFetchNextPageBlock fetchNextPageBlock = ^(int skipCount, int maxItems, CMISFetchNextPageBlockCompletionBlock pageBlockCompletionBlock)
{
// Fetch results through navigationService
CMISRequest * childrenRequest = [self.binding.navigationService retrieveChildren:self.identifier
orderBy:operationContext.orderBy
filter:operationContext.filterString
relationships:operationContext.relationships
renditionFilter:operationContext.renditionFilterString
includeAllowableActions:operationContext.includeAllowableActions
includePathSegment:operationContext.includePathSegments
skipCount:[NSNumber numberWithInt:skipCount]
maxItems:[NSNumber numberWithInt:maxItems]
completionBlock:^(CMISObjectList *objectList, NSError *error) {
if (error) {
pageBlockCompletionBlock(nil, [CMISErrors cmisError:error cmisErrorCode:kCMISErrorCodeConnection]);
} else {
CMISFetchNextPageBlockResult *result = [[CMISFetchNextPageBlockResult alloc] init];
result.hasMoreItems = objectList.hasMoreItems;
result.numItems = objectList.numItems;
[self.session.objectConverter convertObjects:objectList.objects
completionBlock:^(NSArray *objects, NSError *error) {
result.resultArray = objects;
pageBlockCompletionBlock(result, error);
}];
}
}];
// set the underlying request object on the object returned to the original caller
request.httpRequest = childrenRequest.httpRequest;
};
[CMISPagedResult pagedResultUsingFetchBlock:fetchNextPageBlock
limitToMaxItems:operationContext.maxItemsPerPage
startFromSkipCount:operationContext.skipCount
completionBlock:^(CMISPagedResult *result, NSError *error) {
if (error) {
completionBlock(nil, [CMISErrors cmisError:error cmisErrorCode:kCMISErrorCodeRuntime]);
} else {
completionBlock(result, nil);
}
}];
return request;
}
- (CMISRequest*)createFolder:(NSDictionary *)properties completionBlock:(void (^)(NSString *objectId, NSError *error))completionBlock
{
CMISRequest *request = [[CMISRequest alloc] init];
[self.session.objectConverter convertProperties:properties
forObjectTypeId:[properties objectForKey:kCMISPropertyObjectTypeId]
completionBlock:^(CMISProperties *properties, NSError *error) {
if (error) {
completionBlock(nil, [CMISErrors cmisError:error cmisErrorCode:kCMISErrorCodeRuntime]);
} else {
CMISRequest *createRequest = [self.binding.objectService createFolderInParentFolder:self.identifier
properties:properties
completionBlock:^(NSString *objectId, NSError *error) {
completionBlock(objectId, error);
}];
// set the underlying request object on the object returned to the original caller
request.httpRequest = createRequest.httpRequest;
}
}];
return request;
}
- (CMISRequest*)createDocumentFromFilePath:(NSString *)filePath
mimeType:(NSString *)mimeType
properties:(NSDictionary *)properties
completionBlock:(void (^)(NSString *objectId, NSError *error))completionBlock
progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
{
CMISRequest *request = [[CMISRequest alloc] init];
[self.session.objectConverter convertProperties:properties
forObjectTypeId:[properties objectForKey:kCMISPropertyObjectTypeId]
completionBlock:^(CMISProperties *convertedProperties, NSError *error) {
if (error) {
CMISLogError(@"Could not convert properties: %@", error.description);
if (completionBlock) {
completionBlock(nil, [CMISErrors cmisError:error cmisErrorCode:kCMISErrorCodeRuntime]);
}
} else {
CMISRequest *createRequest = [self.binding.objectService createDocumentFromFilePath:filePath
mimeType:mimeType
properties:convertedProperties
inFolder:self.identifier
completionBlock:completionBlock
progressBlock:progressBlock];
// set the underlying request object on the object returned to the original caller
request.httpRequest = createRequest.httpRequest;
}
}];
return request;
}
- (CMISRequest*)createDocumentFromInputStream:(NSInputStream *)inputStream
mimeType:(NSString *)mimeType
properties:(NSDictionary *)properties
bytesExpected:(unsigned long long)bytesExpected
completionBlock:(void (^)(NSString *objectId, NSError *error))completionBlock
progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
{
CMISRequest *request = [[CMISRequest alloc] init];
[self.session.objectConverter convertProperties:properties forObjectTypeId:kCMISPropertyObjectTypeIdValueDocument completionBlock:^(CMISProperties *convertedProperties, NSError *error){
if (nil == convertedProperties){
CMISLogError(@"Could not convert properties: %@", error.description);
if (completionBlock) {
completionBlock(nil, [CMISErrors cmisError:error cmisErrorCode:kCMISErrorCodeRuntime]);
}
} else {
CMISRequest *createRequest = [self.binding.objectService createDocumentFromInputStream:inputStream
mimeType:mimeType
properties:convertedProperties
inFolder:self.identifier
bytesExpected:bytesExpected
completionBlock:completionBlock
progressBlock:progressBlock];
// set the underlying request object on the object returned to the original caller
request.httpRequest = createRequest.httpRequest;
}
}];
return request;
}
- (CMISRequest*)deleteTreeWithDeleteAllVersions:(BOOL)deleteAllversions
unfileObjects:(CMISUnfileObject)unfileObjects
continueOnFailure:(BOOL)continueOnFailure
completionBlock:(void (^)(NSArray *failedObjects, NSError *error))completionBlock
{
return [self.binding.objectService deleteTree:self.identifier allVersion:deleteAllversions
unfileObjects:unfileObjects continueOnFailure:continueOnFailure completionBlock:completionBlock];
}
@end