-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-example.html
55 lines (52 loc) · 1.83 KB
/
test-example.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<pre></pre>
<script type="module">
import {Types, DataValidator as DV } from './src/data-validator.js';
// console.log(Types.parse('int', ' 146546 '));
const dv = (() => {
try {
return DV.New`
string.split('.') => [ /* Split into three parts; */
base64 => json => { /* Convert from base64; Parse JSON; */
alg: string.allowed('HS256', 'HS512'), /* Test for supported algo type */
typ: string.allowed('JWT'),
},
base64 => json => { /* Convert from base64; Parse JSON; */
?exp: unsigned, /* Optional exp */
?iat: unsigned, /* Optional iat */
?nbf: unsigned, /* Optional nbf */
?name: ([..2..string,].join(' ')|string), /* Name can be:
an array with first-name and last-name
OR
a string containing the full-name
*/
?city(='Somewhere'): string,
...
},
base64 /* Convert from base64; */
]`;
} catch (error) {
console.error(error);
return null;
}
})();
// console.log(dv);
if(dv !== null) {
{
const {valid, value, error} = dv.validate(`eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c`);
console.log('Result:\n\tValid:', valid, '\n\tValue:', value, '\n\tError:', error);
}
{
const {valid, value, error} = dv.validate(`eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6WyJKb2huIiwiRG9lIl0sImlhdCI6MTUxNjIzOTAyMiwibmJmIjoxNTE2MjM5MDIxLCJleHAiOjE1MTYyMzkxMjJ9.obXwAnyGDz8UlzMjmo2gUVjyVj8tfkaoJanBSPErzz8`);
console.log('Result:\n\tValid:', valid, '\n\tValue:', value, '\n\tError:', error);
}
}
</script>
</body>
</html>