@@ -20,7 +20,7 @@ var sign_options_schema = {
20
20
subject : { isValid : isString , message : '"subject" must be a string' } ,
21
21
jwtid : { isValid : isString , message : '"jwtid" must be a string' } ,
22
22
noTimestamp : { isValid : isBoolean , message : '"noTimestamp" must be a boolean' } ,
23
- keyid : { isValid : isString , message : '"keyid" must be a string' } ,
23
+ keyid : { isValid : isString , message : '"keyid" must be a string' }
24
24
} ;
25
25
26
26
var registered_claims_schema = {
@@ -29,16 +29,16 @@ var registered_claims_schema = {
29
29
nbf : { isValid : isNumber , message : '"nbf" should be a number of seconds' }
30
30
} ;
31
31
32
- function validate ( schema , unknown , object ) {
32
+ function validate ( schema , allowUnknown , object , parameterName ) {
33
33
if ( ! isPlainObject ( object ) ) {
34
- throw new Error ( 'Expected object' ) ;
34
+ throw new Error ( 'Expected "' + parameterName + '" to be a plain object. ') ;
35
35
}
36
36
Object . keys ( object )
37
37
. forEach ( function ( key ) {
38
38
var validator = schema [ key ] ;
39
39
if ( ! validator ) {
40
- if ( ! unknown ) {
41
- throw new Error ( '"' + key + '" is not allowed' ) ;
40
+ if ( ! allowUnknown ) {
41
+ throw new Error ( '"' + key + '" is not allowed in "' + parameterName + '" ') ;
42
42
}
43
43
return ;
44
44
}
@@ -48,6 +48,14 @@ function validate(schema, unknown, object) {
48
48
} ) ;
49
49
}
50
50
51
+ function validateOptions ( options ) {
52
+ return validate ( sign_options_schema , false , options , 'options' ) ;
53
+ }
54
+
55
+ function validatePayload ( payload ) {
56
+ return validate ( registered_claims_schema , true , payload , 'payload' ) ;
57
+ }
58
+
51
59
var options_to_payload = {
52
60
'audience' : 'aud' ,
53
61
'issuer' : 'iss' ,
@@ -97,7 +105,7 @@ module.exports = function (payload, secretOrPrivateKey, options, callback) {
97
105
return failure ( new Error ( 'payload is required' ) ) ;
98
106
} else if ( isObjectPayload ) {
99
107
try {
100
- validate ( registered_claims_schema , true , payload ) ;
108
+ validatePayload ( payload ) ;
101
109
}
102
110
catch ( error ) {
103
111
return failure ( error ) ;
@@ -122,7 +130,7 @@ module.exports = function (payload, secretOrPrivateKey, options, callback) {
122
130
}
123
131
124
132
try {
125
- validate ( sign_options_schema , false , options ) ;
133
+ validateOptions ( options ) ;
126
134
}
127
135
catch ( error ) {
128
136
return failure ( error ) ;
0 commit comments