This repository was archived by the owner on Sep 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathzConfiguration.ts
235 lines (219 loc) · 11.1 KB
/
zConfiguration.ts
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
module ResponsivePath.Validation.Unobtrusive {
function getModelPrefix(fieldName: string): string {
return fieldName.substr(0, fieldName.lastIndexOf(".") + 1);
}
function appendModelPrefix(value: string, prefix: string): string {
if (value.indexOf("*.") === 0) {
value = value.replace("*.", prefix);
}
return value;
}
interface OptionsP<TParameters extends ValidationParameters> extends Validator {
parameters: TParameters;
}
interface OptionsA<TAttributes extends ng.IAttributes> extends Validator {
attributes: TAttributes;
}
interface OptionsI<TInjected extends InjectedValidationValues> extends Validator {
injected: TInjected;
}
interface OptionsAIP<TAttributes extends ng.IAttributes, TInjected extends InjectedValidationValues, TParameters extends ValidationParameters> extends Validator {
parameters: TParameters;
attributes: TAttributes;
injected: TInjected;
}
interface RegexParameters extends ValidationParameters {
pattern: string
}
interface MinParameters extends ValidationParameters {
min: string
}
interface MaxParameters extends ValidationParameters {
max: string
}
interface MinMaxParameters extends MinParameters, MaxParameters {
}
interface PasswordParameters extends MinParameters {
nonalphamin: string;
regex: string;
}
interface NamedAttributes extends ng.IAttributes {
// stores the model name
name: string
}
interface EqualToParameters extends ValidationParameters {
other: string;
}
interface EqualToInjected extends InjectedValidationValues {
validation: ValidationService;
}
interface ExtensionParameters extends ValidationParameters {
extension: string;
}
interface RemoteModelController extends IValidatedModelController {
remoteTimeout: ng.IDeferred<{}>;
}
interface RemoteParameters extends ValidationParameters {
additionalfields: string;
type: string;
url: string;
}
interface RemoteInjected extends InjectedValidationValues {
validation: ValidationService;
$q: ng.IQService;
$http: ng.IHttpService;
}
interface RemoteValidator extends Validator {
ngModel: RemoteModelController;
attributes: NamedAttributes;
injected: RemoteInjected;
parameters: RemoteParameters;
}
function configureValidationProvider(validationProvider: ValidationProvider): void {
// angular's type="number" and type="date" do not return strings, so the value needs to be of type `any`
validationProvider.addValidator('required', (val: any) => { return !!val || val === 0; });
validationProvider.addValidator('regex',(val: string, options: OptionsP<RegexParameters>) => {
return !val || !!new RegExp(options.parameters.pattern).exec(val);
});
validationProvider.addValidator('email', (val: string) => {
// regex taken from jquery.validate v1.12.0
// From http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#e-mail-state-%28type=email%29
// Retrieved 2014-01-14
// If you have a problem with this implementation, report a bug against the above spec
// Or use custom methods to implement your own email validation
return !val || /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(val);
});
validationProvider.addValidator("creditcard", (value: string) => {
if (!value)
return true;
// regex taken from jquery.validate v1.12.0
// accept only spaces, digits and dashes
if (/[^0-9 \-]+/.test(value)) {
return false;
}
var nCheck = 0,
nDigit = 0,
bEven = false,
n: number,
cDigit: string;
value = value.replace(/\D/g, "");
// Basing min and max length on
// http://developer.ean.com/general_info/Valid_Credit_Card_Types
if (value.length < 13 || value.length > 19) {
return false;
}
for (n = value.length - 1; n >= 0; n--) {
cDigit = value.charAt(n);
nDigit = parseInt(cDigit, 10);
if (bEven) {
if ((nDigit *= 2) > 9) {
nDigit -= 9;
}
}
nCheck += nDigit;
bEven = !bEven;
}
return (nCheck % 10) === 0;
});
validationProvider.addValidator("date", (val: string) => {
if (!val)
return true;
return !/Invalid|NaN/.test(new Date(val).toString());
});
validationProvider.addValidator("digits", (val: string) => {
if (!val)
return true;
return /^\d+$/.test(val);
});
validationProvider.addValidator("number", (val: string | number) => {
if (typeof (val) === 'number')
return true;
if (!val)
return true;
return /^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(val.toString());
});
validationProvider.addValidator("url", (val: string) => {
if (!val)
return true;
// contributed by Scott Gonzalez: http://projects.scottsplayground.com/iri/
return /^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(val);
});
validationProvider.addValidator("minlength",(val: string, options: OptionsP<MinParameters>) => {
if (!val)
return true;
return val.length >= parseInt(options.parameters.min);
});
validationProvider.addValidator("maxlength",(val: string, options: OptionsP<MaxParameters>) => {
if (!val)
return true;
return val.length <= parseInt(options.parameters.max);
});
validationProvider.addValidator("length",(val: string, options: OptionsP<MinMaxParameters>) => {
if (!val)
return true;
return (!options.parameters.min || val.length >= parseInt(options.parameters.min))
&& (!options.parameters.max || val.length <= parseInt(options.parameters.max));
});
validationProvider.addValidator("range",(val: string, options: OptionsP<MinMaxParameters>) => {
if (!val)
return true;
var value = parseFloat(val);
return value <= parseFloat(options.parameters.max) && value >= parseFloat(options.parameters.min);
});
validationProvider.addValidator("password",(val: string, options: OptionsP<PasswordParameters>) => {
function nonalphamin(value: string, min: number): boolean {
var match = value.match(/\W/g);
return match && match.length >= min;
}
if (!val)
return true;
return (!options.parameters.min || val.length >= parseInt(options.parameters.min))
&& (!options.parameters.nonalphamin || nonalphamin(val, parseInt(options.parameters.nonalphamin)))
&& (!options.parameters.regex || !!(new RegExp(options.parameters.regex).exec(val)));
});
validationProvider.addValidator("equalto",(val: string, options: OptionsAIP<NamedAttributes, EqualToInjected, EqualToParameters>) => {
// intentionally not passing for !val - MS's server-side validation does not require the [Required] attribute, so we won't require val-required, either.
var prefix = getModelPrefix(options.attributes.name),
other = options.parameters.other,
fullOtherName = appendModelPrefix(other, prefix),
element = (<IValidatedModelController>options.formController[fullOtherName]).$modelValue;
return element == val;
}, ['validation']);
validationProvider.addValidator("extension",(val: string, options: OptionsP<ExtensionParameters>) => {
if (!val)
return true;
var param = typeof options.parameters.extension == "string" ? options.parameters.extension.replace(/,/g, '|') : "png|jpe?g|gif";
return !!new RegExp("\\.(" + param + ")$", "i").exec(val);
});
validationProvider.addValidator("remote",(val: string, options: RemoteValidator) => {
if (options.ngModel.remoteTimeout)
options.ngModel.remoteTimeout.resolve();
if (!val)
return true;
var prefix = getModelPrefix(options.attributes.name);
var data: any = {};
data[options.attributes.name] = val;
(<ng.IAngularStatic>angular).forEach((options.parameters.additionalfields || '').split(','), (fieldName: string) => {
var dataName = appendModelPrefix(fieldName, prefix);
data[dataName] = (<IValidatedModelController>options.formController[dataName]).$modelValue;
});
var timeout = options.injected.$q.defer();
options.ngModel.remoteTimeout = timeout;
options.injected.$http({
method: options.parameters.type,
url: options.parameters.url,
data: data,
cache: true, // we may want this off... but it should save repeated calls to our back-end
timeout: timeout.promise,
responseType: "json"
}).success((response: any, status: number) => {
if (response !== true && response !== "true") {
options.fail(response);
}
});
return true;
}, ['validation', '$http', '$q']);
}
configureValidationProvider.$inject = ['validationProvider'];
modBase.config(configureValidationProvider);
}