// // MCONNTPSession.h // mailcore2 // // Created by Robert Widmann on 8/13/14. // Copyright (c) 2014 MailCore. All rights reserved. // #import #ifndef MAILCORE_MCONNTPSESSION_H #define MAILCORE_MCONNTPSESSION_H #import #import @class MCONNTPFetchArticlesOperation; @class MCONNTPFetchHeaderOperation; @class MCONNTPFetchArticleOperation; @class MCONNTPListNewsgroupsOperation; @class MCONNTPOperation; /** This class implements asynchronous access to the NNTP protocol.*/ @interface MCONNTPSession : NSObject /** This is the hostname of the NNTP server to connect to.*/ @property (nonatomic, copy) NSString * hostname; /** This is the port of the NNTP server to connect to.*/ @property (nonatomic, assign) unsigned int port; /** This is the username of the account.*/ @property (nonatomic, copy) NSString * username; /** This is the password of the account.*/ @property (nonatomic, copy) NSString * password; /** This is the encryption type to use. See MCOConnectionType for more information.*/ @property (nonatomic, assign) MCOConnectionType connectionType; /** This is the timeout of the connection.*/ @property (nonatomic, assign) NSTimeInterval timeout; /** When set to YES, the connection will fail if the certificate is incorrect.*/ @property (nonatomic, assign, getter=isCheckCertificateEnabled) BOOL checkCertificateEnabled; /** Sets logger callback. The network traffic will be sent to this block. [session setConnectionLogger:^(void * connectionID, MCOConnectionLogType type, NSData * data) { ... }]; */ @property (nonatomic, copy) MCOConnectionLogger connectionLogger; /** This property provides some hints to MCONNTPSession about where it's called from. It will make MCONNTPSession safe. It will also set all the callbacks of operations to run on this given queue. Defaults to the main queue. This property should be used only if there's performance issue using MCONNTPSession in the main thread. */ @property (nonatomic, assign) dispatch_queue_t dispatchQueue; /** @name Operations */ /** Returns an operation that will fetch the list of article numbers. MCONNTPFetchArticlesOperation * op = [session fetchAllArticlesOperation]; [op start:^(NSError * error, MCOIndexSet * articles) { }]; */ - (MCONNTPFetchArticlesOperation *) fetchAllArticlesOperation:(NSString *)group; /** Returns an operation that will fetch the header of the given message. MCONNTPFetchHeaderOperation * op = [session fetchHeaderOperationWithIndex:idx inGroup:@"Group"]; [op start:^(NSError * error, MCOMessageHeader * header) { // header is the parsed header of the message. }]; */ - (MCONNTPFetchHeaderOperation *) fetchHeaderOperationWithIndex:(unsigned int)index inGroup:(NSString *)group; /** Returns an operation that will fetch the content of the given message. MCONNTPFetchArticleOperation * op = [session fetchArticleOperationWithIndex:idx inGroup:@"Group"]; [op start:^(NSError * error, NSData * messageData) { // messageData is the RFC 822 formatted message data. }]; */ - (MCONNTPFetchArticleOperation *) fetchArticleOperationWithIndex:(unsigned int)index inGroup:(NSString *)group; /** Returns an operation that will list all available newsgroups. MCONNTPListNewsgroupsOperation * op = [session listAllNewsgroupsOperation]; [op start:^(NSError * error, NSArray * subscribedGroups) { }]; */ - (MCONNTPListNewsgroupsOperation *) listAllNewsgroupsOperation; /** Returns an operation that will list all newsgroups subscribed to by the user. MCONNTPListNewsgroupsOperation * op = [session listSubscribedNewsgroupsOperation]; [op start:^(NSError * error, NSArray * subscribedGroups) { }]; */ - (MCONNTPListNewsgroupsOperation *) listSubscribedNewsgroupsOperation; /** Returns an operation that will disconnect the session. MCONNTPOperation * op = [session disconnectOperation]; [op start:^(NSError * error) { ... }]; */ - (MCONNTPOperation *) disconnectOperation; /** Returns an operation that will check whether the NNTP account is valid. MCONNTPOperation * op = [session checkAccountOperation]; [op start:^(NSError * error) { ... }]; */ - (MCONNTPOperation *) checkAccountOperation; @end #endif