forked from produck/svg-captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
126 lines (96 loc) · 2.29 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
126
const Randexp = require('randexp');
const path = require('path');
// const font = require('./src/font');
const SVGCaptcha = require('./src/captcha/SvgCaptcha');
const svg = require('./src/svg');
const renderer = require('./src/renderer');
const simpleTextRandexp = new Randexp(/[0-9A-Za-z]{4}/);
const DEFAULT_COLOR_LIST = ['#333333', '#666666', '#999999'];
class SVGCaptchaFactory {
constructor({
validator = DEFAULT_VALIDATOR,
generator = DEFAULT_GENERATOR,
colorList = DEFAULT_COLOR_LIST,
preEffector = [],
postEffector = [],
fontRegistry = [],
fontStyle = {
},
size = {
height: 60,
width: 100
}
} = {}) {
this.$checkGenerator(generator);
this.$fontRegistry = fontRegistry;
this.$generator = generator;
this.$validator = validator;
this.$colorList = colorList;
this.$pathHandlerQueue = [];
this.$effectorQueue = {
pre: preEffector,
post: postEffector
};
this.$size = size;
}
$checkGenerator(fn) {
const sample = fn();
if (isString(sample)) {
return true;
}
if (!isObject(sample)) {
return false;
}
const { text, data } = sample;
if (!isString(text) || data === undefined) {
return false;
}
}
$generate() {
const sample = this.$generator();
if (isString(sample)) {
return {
text: sample,
data: sample
};
}
return sample;
}
registerFont(font) {
return this.$fontRegistry.registerFont(font);
}
$renderSectionList(text) {
const preSectionList = [];
const textPathList = Array.from(text).map(char => {
const pathD = renderer.drawChar(char, this.$fontRegistry);
return `<path fill="#666666" d="${pathD}" />`;
});
const postSectionList = [];
return preSectionList.concat(textPathList).concat(postSectionList);
}
createCaptcha() {
const { text, data } = this.$generate();
return new SVGCaptcha({
validator: this.$validator,
image: svg(Object({
sectionList: this.$renderSectionList(text)
}, this.$size)),
data
});
}
}
module.exports = function createSVGCaptchaFactory() {
return new SVGCaptchaFactory();
};
function isString(any) {
return typeof any === 'string';
}
function isObject(any) {
return any instanceof Object;
}
function DEFAULT_GENERATOR() {
return simpleTextRandexp.gen();
}
function DEFAULT_VALIDATOR(testVal, data) {
return testVal === data;
}