161 lines
7.7 KiB
Objective-C
Executable File
161 lines
7.7 KiB
Objective-C
Executable File
// PFConstants.h
|
|
// Copyright 2011 Parse, Inc. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
@class PFObject;
|
|
@class PFUser;
|
|
|
|
// Version
|
|
#define PARSE_VERSION @"1.2.13"
|
|
|
|
extern NSInteger const PARSE_API_VERSION;
|
|
|
|
// Platform
|
|
#define PARSE_IOS_ONLY (TARGET_OS_IPHONE)
|
|
#define PARSE_OSX_ONLY (TARGET_OS_MAC && !(TARGET_OS_IPHONE))
|
|
|
|
extern NSString *const kPFDeviceType;
|
|
|
|
#if PARSE_IOS_ONLY
|
|
#import <UIKit/UIKit.h>
|
|
#else
|
|
#import <Cocoa/Cocoa.h>
|
|
@compatibility_alias UIImage NSImage;
|
|
@compatibility_alias UIColor NSColor;
|
|
@compatibility_alias UIView NSView;
|
|
#endif
|
|
|
|
// Server
|
|
extern NSString *const kPFParseServer;
|
|
|
|
// Cache policies
|
|
typedef enum {
|
|
kPFCachePolicyIgnoreCache = 0,
|
|
kPFCachePolicyCacheOnly,
|
|
kPFCachePolicyNetworkOnly,
|
|
kPFCachePolicyCacheElseNetwork,
|
|
kPFCachePolicyNetworkElseCache,
|
|
kPFCachePolicyCacheThenNetwork
|
|
} PFCachePolicy;
|
|
|
|
// Errors
|
|
|
|
/*! @abstract 1: Internal server error. No information available. */
|
|
extern NSInteger const kPFErrorInternalServer;
|
|
|
|
/*! @abstract 100: The connection to the Parse servers failed. */
|
|
extern NSInteger const kPFErrorConnectionFailed;
|
|
/*! @abstract 101: Object doesn't exist, or has an incorrect password. */
|
|
extern NSInteger const kPFErrorObjectNotFound;
|
|
/*! @abstract 102: You tried to find values matching a datatype that doesn't support exact database matching, like an array or a dictionary. */
|
|
extern NSInteger const kPFErrorInvalidQuery;
|
|
/*! @abstract 103: Missing or invalid classname. Classnames are case-sensitive. They must start with a letter, and a-zA-Z0-9_ are the only valid characters. */
|
|
extern NSInteger const kPFErrorInvalidClassName;
|
|
/*! @abstract 104: Missing object id. */
|
|
extern NSInteger const kPFErrorMissingObjectId;
|
|
/*! @abstract 105: Invalid key name. Keys are case-sensitive. They must start with a letter, and a-zA-Z0-9_ are the only valid characters. */
|
|
extern NSInteger const kPFErrorInvalidKeyName;
|
|
/*! @abstract 106: Malformed pointer. Pointers must be arrays of a classname and an object id. */
|
|
extern NSInteger const kPFErrorInvalidPointer;
|
|
/*! @abstract 107: Malformed json object. A json dictionary is expected. */
|
|
extern NSInteger const kPFErrorInvalidJSON;
|
|
/*! @abstract 108: Tried to access a feature only available internally. */
|
|
extern NSInteger const kPFErrorCommandUnavailable;
|
|
/*! @abstract 111: Field set to incorrect type. */
|
|
extern NSInteger const kPFErrorIncorrectType;
|
|
/*! @abstract 112: Invalid channel name. A channel name is either an empty string (the broadcast channel) or contains only a-zA-Z0-9_ characters and starts with a letter. */
|
|
extern NSInteger const kPFErrorInvalidChannelName;
|
|
/*! @abstract 114: Invalid device token. */
|
|
extern NSInteger const kPFErrorInvalidDeviceToken;
|
|
/*! @abstract 115: Push is misconfigured. See details to find out how. */
|
|
extern NSInteger const kPFErrorPushMisconfigured;
|
|
/*! @abstract 116: The object is too large. */
|
|
extern NSInteger const kPFErrorObjectTooLarge;
|
|
/*! @abstract 119: That operation isn't allowed for clients. */
|
|
extern NSInteger const kPFErrorOperationForbidden;
|
|
/*! @abstract 120: The results were not found in the cache. */
|
|
extern NSInteger const kPFErrorCacheMiss;
|
|
/*! @abstract 121: Keys in NSDictionary values may not include '$' or '.'. */
|
|
extern NSInteger const kPFErrorInvalidNestedKey;
|
|
/*! @abstract 122: Invalid file name. A file name contains only a-zA-Z0-9_. characters and is between 1 and 36 characters. */
|
|
extern NSInteger const kPFErrorInvalidFileName;
|
|
/*! @abstract 123: Invalid ACL. An ACL with an invalid format was saved. This should not happen if you use PFACL. */
|
|
extern NSInteger const kPFErrorInvalidACL;
|
|
/*! @abstract 124: The request timed out on the server. Typically this indicates the request is too expensive. */
|
|
extern NSInteger const kPFErrorTimeout;
|
|
/*! @abstract 125: The email address was invalid. */
|
|
extern NSInteger const kPFErrorInvalidEmailAddress;
|
|
/*! @abstract 137: A unique field was given a value that is already taken. */
|
|
extern NSInteger const kPFErrorDuplicateValue;
|
|
/*! @abstract 139: Role's name is invalid. */
|
|
extern NSInteger const kPFErrorInvalidRoleName;
|
|
/*! @abstract 140: Exceeded an application quota. Upgrade to resolve. */
|
|
extern NSInteger const kPFErrorExceededQuota;
|
|
/*! @abstract 141: Cloud Code script had an error. */
|
|
extern NSInteger const kPFScriptError;
|
|
/*! @abstract 142: Cloud Code validation failed. */
|
|
extern NSInteger const kPFValidationError;
|
|
/*! @abstract 143: Product purchase receipt is missing */
|
|
extern NSInteger const kPFErrorReceiptMissing;
|
|
/*! @abstract 144: Product purchase receipt is invalid */
|
|
extern NSInteger const kPFErrorInvalidPurchaseReceipt;
|
|
/*! @abstract 145: Payment is disabled on this device */
|
|
extern NSInteger const kPFErrorPaymentDisabled;
|
|
/*! @abstract 146: The product identifier is invalid */
|
|
extern NSInteger const kPFErrorInvalidProductIdentifier;
|
|
/*! @abstract 147: The product is not found in the App Store */
|
|
extern NSInteger const kPFErrorProductNotFoundInAppStore;
|
|
/*! @abstract 148: The Apple server response is not valid */
|
|
extern NSInteger const kPFErrorInvalidServerResponse;
|
|
/*! @abstract 149: Product fails to download due to file system error */
|
|
extern NSInteger const kPFErrorProductDownloadFileSystemFailure;
|
|
/*! @abstract 150: Fail to convert data to image. */
|
|
extern NSInteger const kPFErrorInvalidImageData;
|
|
/*! @abstract 151: Unsaved file. */
|
|
extern NSInteger const kPFErrorUnsavedFile;
|
|
/*! @abstract 153: Fail to delete file. */
|
|
extern NSInteger const kPFErrorFileDeleteFailure;
|
|
|
|
/*! @abstract 200: Username is missing or empty */
|
|
extern NSInteger const kPFErrorUsernameMissing;
|
|
/*! @abstract 201: Password is missing or empty */
|
|
extern NSInteger const kPFErrorUserPasswordMissing;
|
|
/*! @abstract 202: Username has already been taken */
|
|
extern NSInteger const kPFErrorUsernameTaken;
|
|
/*! @abstract 203: Email has already been taken */
|
|
extern NSInteger const kPFErrorUserEmailTaken;
|
|
/*! @abstract 204: The email is missing, and must be specified */
|
|
extern NSInteger const kPFErrorUserEmailMissing;
|
|
/*! @abstract 205: A user with the specified email was not found */
|
|
extern NSInteger const kPFErrorUserWithEmailNotFound;
|
|
/*! @abstract 206: The user cannot be altered by a client without the session. */
|
|
extern NSInteger const kPFErrorUserCannotBeAlteredWithoutSession;
|
|
/*! @abstract 207: Users can only be created through sign up */
|
|
extern NSInteger const kPFErrorUserCanOnlyBeCreatedThroughSignUp;
|
|
/*! @abstract 208: An existing Facebook account already linked to another user. */
|
|
extern NSInteger const kPFErrorFacebookAccountAlreadyLinked;
|
|
/*! @abstract 208: An existing account already linked to another user. */
|
|
extern NSInteger const kPFErrorAccountAlreadyLinked;
|
|
/*! @abstract 209: User ID mismatch */
|
|
extern NSInteger const kPFErrorUserIdMismatch;
|
|
/*! @abstract 250: Facebook id missing from request */
|
|
extern NSInteger const kPFErrorFacebookIdMissing;
|
|
/*! @abstract 250: Linked id missing from request */
|
|
extern NSInteger const kPFErrorLinkedIdMissing;
|
|
/*! @abstract 251: Invalid Facebook session */
|
|
extern NSInteger const kPFErrorFacebookInvalidSession;
|
|
/*! @abstract 251: Invalid linked session */
|
|
extern NSInteger const kPFErrorInvalidLinkedSession;
|
|
|
|
typedef void (^PFBooleanResultBlock)(BOOL succeeded, NSError *error);
|
|
typedef void (^PFIntegerResultBlock)(int number, NSError *error);
|
|
typedef void (^PFArrayResultBlock)(NSArray *objects, NSError *error);
|
|
typedef void (^PFObjectResultBlock)(PFObject *object, NSError *error);
|
|
typedef void (^PFSetResultBlock)(NSSet *channels, NSError *error);
|
|
typedef void (^PFUserResultBlock)(PFUser *user, NSError *error);
|
|
typedef void (^PFDataResultBlock)(NSData *data, NSError *error);
|
|
typedef void (^PFDataStreamResultBlock)(NSInputStream *stream, NSError *error);
|
|
typedef void (^PFStringResultBlock)(NSString *string, NSError *error);
|
|
typedef void (^PFIdResultBlock)(id object, NSError *error);
|
|
typedef void (^PFProgressBlock)(int percentDone);
|