module.exports = Self => {
    Self.remoteMethod('hasActiveRecovery', {
        description: 'Returns a boolean that is true when a client has an active recovery',
        accessType: 'READ',
        accepts: [
            {
                arg: 'clientFk',
                type: 'number',
                required: true,
                description: 'The id of a client',
                http: {source: 'path'}
            }
        ],
        returns: {
            type: 'boolean',
            root: true
        },
        http: {
            path: `/:clientFk/hasActiveRecovery`,
            verb: 'GET'
        }
    });

    Self.hasActiveRecovery = async id => {
        let result = await Self.rawSql(
            `SELECT count(*) AS hasActiveRecovery
                FROM vn.recovery
                WHERE clientFk = ?
                AND IFNULL(finished,CURDATE()) >= CURDATE();`,
            [id]
        );
        return result[0].hasActiveRecovery != 0;
    };
};