Add customDecoded optional function
customDecoded enables you to change the value of the decoded token. the decoded token is passed to the function and you can you do whatever you want with the decoded token and return it to be changed.
This commit is contained in:
@ -79,7 +79,9 @@ function noQsMethod (options) {
|
||||
|
||||
// success handler
|
||||
const onSuccess = () => {
|
||||
socket[options.decodedPropertyName] = decoded;
|
||||
socket[options.decodedPropertyName] = options.customDecoded
|
||||
? options.customDecoded(decoded)
|
||||
: decoded;
|
||||
socket.emit('authenticated');
|
||||
if (server.$emit) {
|
||||
server.$emit('authenticated', socket);
|
||||
@ -203,7 +205,9 @@ function authorize (options) {
|
||||
return auth.fail(error, socket, accept);
|
||||
}
|
||||
|
||||
socket[options.decodedPropertyName] = decoded;
|
||||
socket[options.decodedPropertyName] = options.customDecoded
|
||||
? options.customDecoded(decoded)
|
||||
: decoded;
|
||||
|
||||
return auth.success(socket, accept);
|
||||
};
|
||||
|
1
types/index.d.ts
vendored
1
types/index.d.ts
vendored
@ -28,6 +28,7 @@ declare module 'socketio-jwt' {
|
||||
|
||||
interface IOptions {
|
||||
additional_auth?: (decoded: object, onSuccess: () => void, onError: (err: (string | ISocketIOError), code: string) => void) => void;
|
||||
customDecoded?: (decoded: object) => object;
|
||||
|
||||
callback?: (false | number);
|
||||
secret: (string | ((request: any, decodedToken: object, callback: ISocketCallback) => void));
|
||||
|
Reference in New Issue
Block a user