mirror of https://github.com/oxen-io/session-ios
mirror of https://github.com/oxen-io/session-ios
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
3.0 KiB
75 lines
3.0 KiB
// |
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved. |
|
// |
|
|
|
#import "OWSError.h" |
|
#import <SessionProtocolKit/SessionProtocolKit.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
NSString *const OWSSignalServiceKitErrorDomain = @"OWSSignalServiceKitErrorDomain"; |
|
NSString *const OWSErrorRecipientIdentifierKey = @"OWSErrorKeyRecipientIdentifier"; |
|
|
|
NSError *OWSErrorWithCodeDescription(OWSErrorCode code, NSString *description) |
|
{ |
|
return [NSError errorWithDomain:OWSSignalServiceKitErrorDomain |
|
code:code |
|
userInfo:@{ NSLocalizedDescriptionKey: description }]; |
|
} |
|
|
|
NSError *OWSErrorMakeUnableToProcessServerResponseError() |
|
{ |
|
return OWSErrorWithCodeDescription(OWSErrorCodeUnableToProcessServerResponse, |
|
NSLocalizedString(@"ERROR_DESCRIPTION_SERVER_FAILURE", @"Generic server error")); |
|
} |
|
|
|
NSError *OWSErrorMakeFailedToSendOutgoingMessageError() |
|
{ |
|
return OWSErrorWithCodeDescription(OWSErrorCodeFailedToSendOutgoingMessage, |
|
NSLocalizedString(@"ERROR_DESCRIPTION_CLIENT_SENDING_FAILURE", @"Generic notice when message failed to send.")); |
|
} |
|
|
|
NSError *OWSErrorMakeNoSuchSignalRecipientError() |
|
{ |
|
return OWSErrorWithCodeDescription(OWSErrorCodeNoSuchSignalRecipient, |
|
NSLocalizedString( |
|
@"ERROR_DESCRIPTION_UNREGISTERED_RECIPIENT", @"Error message when attempting to send message")); |
|
} |
|
|
|
NSError *OWSErrorMakeAssertionError(NSString *description) |
|
{ |
|
OWSCFailDebug(@"Assertion failed: %@", description); |
|
return OWSErrorWithCodeDescription(OWSErrorCodeAssertionFailure, |
|
NSLocalizedString(@"ERROR_DESCRIPTION_UNKNOWN_ERROR", @"Worst case generic error message")); |
|
} |
|
|
|
NSError *OWSErrorMakeUntrustedIdentityError(NSString *description, NSString *recipientId) |
|
{ |
|
return [NSError |
|
errorWithDomain:OWSSignalServiceKitErrorDomain |
|
code:OWSErrorCodeUntrustedIdentity |
|
userInfo:@{ NSLocalizedDescriptionKey : description, OWSErrorRecipientIdentifierKey : recipientId }]; |
|
} |
|
|
|
NSError *OWSErrorMakeMessageSendDisabledDueToPreKeyUpdateFailuresError() |
|
{ |
|
return OWSErrorWithCodeDescription(OWSErrorCodeMessageSendDisabledDueToPreKeyUpdateFailures, |
|
NSLocalizedString(@"ERROR_DESCRIPTION_MESSAGE_SEND_DISABLED_PREKEY_UPDATE_FAILURES", |
|
@"Error message indicating that message send is disabled due to prekey update failures")); |
|
} |
|
|
|
NSError *OWSErrorMakeMessageSendFailedDueToBlockListError() |
|
{ |
|
return OWSErrorWithCodeDescription(OWSErrorCodeMessageSendFailedToBlockList, |
|
NSLocalizedString(@"ERROR_DESCRIPTION_MESSAGE_SEND_FAILED_DUE_TO_BLOCK_LIST", |
|
@"Error message indicating that message send failed due to block list")); |
|
} |
|
|
|
NSError *OWSErrorMakeWriteAttachmentDataError() |
|
{ |
|
return OWSErrorWithCodeDescription(OWSErrorCodeCouldNotWriteAttachmentData, |
|
NSLocalizedString(@"ERROR_DESCRIPTION_MESSAGE_SEND_FAILED_DUE_TO_FAILED_ATTACHMENT_WRITE", |
|
@"Error message indicating that message send failed due to failed attachment write")); |
|
} |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|