node.jsfastify

Fastify Auth - Async methods dont finish befor handler called


i'm trying to setup Fastify Auth in my project https://github.com/fastify/fastify-auth. But i think i miss understand something.

This is my route:

fastify.route({
    method: 'GET',
    url: '/tournaments/:tournamentId/tournamentnominations',
    schema: {
        tags: ['Tournament Nominations'],
        querystring: querystringSchema,
        response: {
            '2xx': {
                type: 'array',
                items: { $ref: 'TournamentNomination' },
            },
        },
    },
    onRequest: appController.checkDatabase,
    preHandler: fastify.auth(
        [
            fastify.verifyJWT,
            [
                async (request, reply, done) => {
                    console.log('check0');
                    console.log('check1');
                    done(new Error('you are not authenticated'));
                },
                async (request, reply, done) => {
                    console.log('check2');
                    await delay(2000);

                    console.log('check3');
                    done(new Error('you are not authenticated'));
                },
            ],
        ],
        { relation: 'and' }
    ),
    handler: TournamentNominationsController.getAll,
    preSerialization: manipulate,
});

and this is the console output

check0
check1
check2
te123
[14:07:35.814] INFO (24573): request completed
    reqId: "req-5"
    res: {
      "statusCode": 200
    }
    responseTime: 12.27206403017044
check3

the "te123" output comes from the handler. But i think the setup the correct logic from the documentation with 'and' and 'or' fastify.auth([f1, f2, [f3, f4]], { relation: 'and' }) f1 AND f2 AND (f3 OR f4). The handler should not be called.


Solution

  • In Fastify, you cannot mix async functions with callback-based.

    Choose one approach:

    Incorrect (Mixed async & callback)

    async (request, reply, done) => {
      console.log('check0');
      console.log('check1');
      done(new Error('you are not authenticated'));
    }
    

    Correct (Async function should throw an error)

    async (request, reply) => {
      console.log('check0');
      console.log('check1');
      throw new Error('you are not authenticated');
    }
    

    Correct (Callback function should use done(err))

    function (request, reply, done) {
      console.log('check0');
      console.log('check1');
      done(new Error('you are not authenticated'));
    }
    

    This rule applies to handlers, hooks, and any function parameters.

    More Info