mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00

git-subtree-dir: submodules/HockeySDK-iOS git-subtree-mainline: 085acd26c4432939403765234266e3c1be0f3dd9 git-subtree-split: c7d0c7026303253e2ac576c02655691e5d314fe2
96 lines
3.1 KiB
Objective-C
96 lines
3.1 KiB
Objective-C
/*
|
|
* Author: Stephan Diederich
|
|
*
|
|
* Copyright (c) 2013-2014 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>
|
|
|
|
extern NSString * const kBITHockeyAppClientBoundary;
|
|
|
|
/**
|
|
* Generic Hockey API client
|
|
*/
|
|
@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;
|
|
|
|
/**
|
|
* 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. This is a convenience call to
|
|
* dataWithPostValue:forKey:contentType:boundary and aimed at NSString-content.
|
|
*
|
|
* @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;
|
|
|
|
/**
|
|
* create a post body from the given value, key and boundary and content type.
|
|
*
|
|
* @param value -
|
|
* @param key -
|
|
*@param contentType -
|
|
* @param boundary -
|
|
* @param filename -
|
|
*
|
|
* @return NSData instance configured to be attached on a (post) URLRequest
|
|
*/
|
|
+ (NSData *)dataWithPostValue:(NSData *)value forKey:(NSString *)key contentType:(NSString *)contentType boundary:(NSString *) boundary filename:(NSString *)filename;
|
|
|
|
@end
|