mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
129 lines
4.3 KiB
Objective-C
129 lines
4.3 KiB
Objective-C
/*
|
|
* Author: Stephan Diederich
|
|
*
|
|
* Copyright (c) 2013 HockeyApp, Bit Stadium GmbH.
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use,
|
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following
|
|
* conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "BITHTTPOperation.h" //needed for typedef
|
|
|
|
@interface BITHockeyAppClient : NSObject
|
|
|
|
/**
|
|
* designated initializer
|
|
*
|
|
* @param baseURL the baseURL of the HockeyApp instance
|
|
*/
|
|
- (instancetype) initWithBaseURL:(NSURL*) baseURL;
|
|
|
|
/**
|
|
* baseURL to which relative paths are appended
|
|
*/
|
|
@property (nonatomic, strong) NSURL *baseURL;
|
|
|
|
/**
|
|
* creates an NRURLRequest for the given method and path by using
|
|
* the internally stored baseURL.
|
|
*
|
|
* @param method the HTTPMethod to check, must not be nil
|
|
* @param params parameters for the request (only supported for GET and POST for now)
|
|
* @param path path to append to baseURL. can be nil in which case "/" is appended
|
|
*
|
|
* @return an NSMutableURLRequest for further configuration
|
|
*/
|
|
- (NSMutableURLRequest *) requestWithMethod:(NSString*) method
|
|
path:(NSString *) path
|
|
parameters:(NSDictionary *) params;
|
|
/**
|
|
* Creates an operation for the given NSURLRequest
|
|
*
|
|
* @param request the request that should be handled
|
|
* @param completion completionBlock that is called once the operation finished
|
|
*
|
|
* @return operation, which can be queued via enqueueHTTPOperation:
|
|
*/
|
|
- (BITHTTPOperation*) operationWithURLRequest:(NSURLRequest*) request
|
|
completion:(BITNetworkCompletionBlock) completion;
|
|
|
|
/**
|
|
* Creates an operation for the given path, and enqueues it
|
|
*
|
|
* @param path the request path to check
|
|
* @param params parameters for the request
|
|
* @param completion completionBlock that is called once the operation finished
|
|
*
|
|
*/
|
|
- (void) getPath:(NSString*) path
|
|
parameters:(NSDictionary *) params
|
|
completion:(BITNetworkCompletionBlock) completion;
|
|
|
|
/**
|
|
* Creates an operation for the given path, and enqueues it
|
|
*
|
|
* @param path the request path to check
|
|
* @param params parameters for the request
|
|
* @param completion completionBlock that is called once the operation finished
|
|
*
|
|
*/
|
|
- (void) postPath:(NSString*) path
|
|
parameters:(NSDictionary *) params
|
|
completion:(BITNetworkCompletionBlock) completion;
|
|
/**
|
|
* adds the given operation to the internal queue
|
|
*
|
|
* @param operation operation to add
|
|
*/
|
|
- (void) enqeueHTTPOperation:(BITHTTPOperation *) operation;
|
|
|
|
/**
|
|
* cancels the specified operations
|
|
*
|
|
* @param path the path which operation should be cancelled. Can be nil to match all
|
|
* @param method the method which operations to cancel. Can be nil to match all
|
|
* @return number of operations cancelled
|
|
*/
|
|
- (NSUInteger) cancelOperationsWithPath:(NSString*) path
|
|
method:(NSString*) method;
|
|
|
|
/**
|
|
* Access to the internal operation queue
|
|
*/
|
|
@property (nonatomic, strong) NSOperationQueue *operationQueue;
|
|
|
|
#pragma mark - Helpers
|
|
/**
|
|
* create a post body from the given value, key and boundary
|
|
* c/p from HockeyBaseManager
|
|
*
|
|
* @param value -
|
|
* @param key -
|
|
* @param boundary -
|
|
*
|
|
* @return NSData instance configured to be attached on a (post) URLRequest
|
|
*/
|
|
+ (NSData *)dataWithPostValue:(NSString *)value forKey:(NSString *)key boundary:(NSString *) boundary;
|
|
@end
|