-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIOTP.js
executable file
·87 lines (74 loc) · 2.04 KB
/
IOTP.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
(function (root) {
"use strict";
/**
*
* @param otpCode {string|number}
*/
var IOTP = function (otpCode) {
if (otpCode instanceof IOTP) {
this.value = otpCode.value;
} else {
/**
* Убираем пробелы и разделитель "-"
* @type {string}
*/
this.value = String(otpCode).replace(/\s+/g, '').replace(/-+/g, '');
}
if (!this.validate()) {
this.value = "";
}
};
IOTP.prototype = {
value: "",
/**
*
* @returns {boolean}
*/
validate: function () {
return (/^[0-9]{8}$/).test(this.value);
},
/**
*
* @returns {string}
*/
toString: function (options) {
options = options || {};
var code = this.value || "",
i,
len = code.length,
result = code,
separator = options.separator || "-",
separatedPartLength = options.separatedPartLength || 2;
if (options.isNeedSeparated) {
for (i = 0; i < len; i = i + separatedPartLength) {
result += code.substring(i, separatedPartLength) + separator;
}
if (len % separatedPartLength != 0) {
result += code.substring(len - (len % separatedPartLength), len);
}
}
return result;
},
/**
*
* @param value
* @returns {boolean}
*/
is: function (value) {
var obj = new IOTP(value);
return this.value === obj.value;
},
/**
*
* @returns {string}
*/
toHtml: function () {
return "<span>" + this.toString() + "</span>";
}
};
if (typeof module !== "undefined" && module.exports) {
module.exports = IOTP;
} else {
root.IOTP = IOTP;
}
}(this));