You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/Signal/src/network/http/HttpRequestUtil.m

47 lines
2.8 KiB
Matlab

11 years ago
#import "HttpRequestUtil.h"
#import "Constraints.h"
#import "PreferencesUtil.h"
#import "Util.h"
@implementation HttpRequest (HttpRequestUtil)
+(HttpRequest*)httpRequestWithBasicAuthenticationAndMethod:(NSString*)method
andLocation:(NSString*)location {
return [HttpRequest httpRequestWithBasicAuthenticationAndMethod:method
andLocation:location
andOptionalBody:nil];
}
+(HttpRequest*)httpRequestWithBasicAuthenticationAndMethod:(NSString*)method
andLocation:(NSString*)location
andOptionalBody:(NSString*)optionalBody {
return [HttpRequest httpRequestWithBasicAuthenticationAndMethod:method
andLocation:location
andOptionalBody:optionalBody
andLocalNumber:[[[Environment getCurrent] preferences] forceGetLocalNumber]
andPassword:[[[Environment getCurrent] preferences] getOrGenerateSavedPassword]];
11 years ago
}
+(HttpRequest*)httpRequestWithOtpAuthenticationAndMethod:(NSString*)method
andLocation:(NSString*)location {
return [HttpRequest httpRequestWithOtpAuthenticationAndMethod:method
andLocation:location
andOptionalBody:nil];
}
+(HttpRequest*)httpRequestWithOtpAuthenticationAndMethod:(NSString*)method
andLocation:(NSString*)location
andOptionalBody:(NSString*)optionalBody {
return [HttpRequest httpRequestWithOtpAuthenticationAndMethod:method
andLocation:location
andOptionalBody:optionalBody
andLocalNumber:[[[Environment getCurrent] preferences] forceGetLocalNumber]
andPassword:[[[Environment getCurrent] preferences] getOrGenerateSavedPassword]
11 years ago
andCounter:[[[Environment getCurrent] preferences] getAndIncrementOneTimeCounter]];
}
+(HttpRequest*)httpRequestUnauthenticatedWithMethod:(NSString*)method
andLocation:(NSString*)location {
return [HttpRequest httpRequestUnauthenticatedWithMethod:method
andLocation:location
andOptionalBody:nil];
}
@end