-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathWePay.m
126 lines (86 loc) · 2.46 KB
/
WePay.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
//
// WePay.m
// WePay
//
// Created by WePay on 10/2/13.
// Copyright (c) 2013 WePay. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "WePay.h"
@interface WePay()
@end
@implementation WePay
// Is this on production or stage?
static BOOL onProduction;
// Client id to make API calls.
static NSString * clientId;
// API Version
static NSString * apiVersion;
// Whether to send the user's IP and device id
static BOOL sendIPandDeviceId = YES;
+ (id)alloc
{
[NSException raise:@"CannotInstantiateStaticClass" format:@"WePay is a static class and cannot be instantiated."];
return nil;
}
# pragma mark Set Settings
+ (void) setProductionClientId:(NSString *) key {
clientId = key;
onProduction = YES;
}
+ (void) setProductionClientId:(NSString *) key apiVersion: (NSString *) aVersion {
clientId = key;
onProduction = YES;
apiVersion = aVersion;
}
+ (void) setProductionClientId:(NSString *) key apiVersion:(NSString *)aVersion sendIPandDeviceId: (BOOL) sendIPandDeviceIdflag {
clientId = key;
onProduction = YES;
apiVersion = aVersion;
sendIPandDeviceId = sendIPandDeviceIdflag;
}
+ (void) setProductionClientId:(NSString *) key sendIPandDeviceId: (BOOL) sendIPandDeviceIdflag {
clientId = key;
onProduction = YES;
sendIPandDeviceId = sendIPandDeviceIdflag;
}
+ (void) setStageClientId:(NSString *) key {
clientId = key;
onProduction = NO;
}
+ (void) setStageClientId:(NSString *) key apiVersion: (NSString *) aVersion {
clientId = key;
onProduction = NO;
apiVersion = aVersion;
}
+ (void) setStageClientId:(NSString *) key apiVersion: (NSString *) aVersion sendIPandDeviceId: (BOOL) sendIPandDeviceIdflag {
clientId = key;
onProduction = NO;
sendIPandDeviceId = sendIPandDeviceIdflag;
apiVersion = aVersion;
}
+ (void) setStageClientId:(NSString *) key sendIPandDeviceId: (BOOL) sendIPandDeviceIdflag {
clientId = key;
onProduction = NO;
sendIPandDeviceId = sendIPandDeviceIdflag;
}
# pragma mark Validate Credentials
+ (void) validateCredentials {
if(clientId == nil || [clientId length] == 0) {
[NSException raise:@"InvalidCredentials" format:@"Please make sure you add a client ID."];
}
}
# pragma mark Settings Getters
+ (BOOL) isProduction {
return onProduction;
}
+ (BOOL) sendDeviceData {
return sendIPandDeviceId;
}
+ (NSString *) clientId {
return clientId;
}
+ (NSString *) apiVersion {
return apiVersion;
}
@end