-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
125 lines (106 loc) · 3.19 KB
/
index.js
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
(function () {
'use strict';
var isArray = require('util').isArray;
var analyzers = require('./lib/analyzers');
var analyzersMapping = {
all: analyzers.AllCharsAnalyzer,
bylength: analyzers.PasswordLengthAnalyzer,
loweralpha: analyzers.LowerAlphaAnalyzer,
loweralphanum: analyzers.LowerAlphaNumAnalyzer,
loweralphaspecial: analyzers.LowerAlphaSpecialAnalyzer,
loweralphaspecialnum: analyzers.LowerAlphaSpecialNumAnalyzer,
mixedalpha: analyzers.MixedAlphaAnalyzer,
mixedalphanum: analyzers.MixedAlphaNumAnalyzer,
mixedalphaspecial: analyzers.MixedAlphaSpecialAnalyzer,
months: analyzers.MonthsAnalyzer,
numeric: analyzers.NumericAnalyzer,
special: analyzers.SpecialAnalyzer,
specialnum: analyzers.SpecialNumAnalyzer,
upperalpha: analyzers.UpperAlphaAnalyzer,
upperalphanum: analyzers.UpperAlphaNumAnalyzer,
upperalphaspecial: analyzers.UpperAlphaSpecialAnalyzer,
upperalphaspecialnum: analyzers.UpperAlphaSpecialNumAnalyzer
};
function PasswordAnalyzer () {
this._groups = [];
this._total = 0;
}
PasswordAnalyzer.prototype.addGroup = function (name, analyzersOrFn) {
if (!analyzersOrFn) {
throw new Error('Analyzers are required');
}
var group;
for (var i = this._groups.length - 1; i >= 0; i--) {
if(this._groups[i].name === name) {
group = this._groups[i];
break;
}
}
if(!group) {
group = new Group(name);
this._groups.push(group);
}
if(isArray(analyzersOrFn)) {
analyzersOrFn.forEach(group.addAnalyzer.bind(group));
}
else {
group.addAnalyzer(analyzersOrFn);
}
};
PasswordAnalyzer.prototype.analyze = function (password) {
this._total++;
this._groups.forEach(function (group) {
group.analyze(password);
});
};
PasswordAnalyzer.prototype.getResults = function() {
var results = { total: this._total, groups: [] };
return this._groups.reduce(function (results, group) {
results.groups.push(group.getResults());
return results;
}, results);
};
function Group (name, analyzers) {
this.name = name || '[group]';
this._results = {};
this._analyzers = [];
if(isArray(analyzers)) {
this._analyzers = this._analyzers.concat(analyzers);
} else if(analyzers) {
this.analyzers.push(analyzers);
}
}
Group.prototype.addAnalyzer = function (analyzer) {
if(isFunction(analyzer)) {
/*jshint -W055 */
this._analyzers.push(new analyzer());
}
else if(typeof analyzer === 'string') {
this._analyzers.push(new analyzersMapping[analyzer]());
}
else {
this._analyzers.push(analyzer);
}
};
Group.prototype.analyze = function (password) {
this._results.total++;
this._analyzers.forEach(function (analyzer) {
analyzer.analyze(password, this._results);
}, this);
};
Group.prototype.getResults = function() {
var results = { name: this.name, analyzers:[] };
this._analyzers.reduce(function (results, analyzer) {
Array.prototype.push.apply(results, analyzer.getResults());
return results;
}, results.analyzers);
return results;
};
module.exports = {
PasswordAnalyzer: PasswordAnalyzer,
analyzers: analyzers
};
function isFunction(object) {
return !!(object && object.constructor && object.call && object.apply);
}
}());