All files / libs/lti/core/src/lib/handlers lti.tasks.ts

0% Statements 0/21
0% Branches 0/1
0% Functions 0/1
0% Lines 0/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22                                           
import { type INestApplicationContext } from '@nestjs/common';

import { MessageTasks, type QueueMessageAttributes, type QueueMessageContent } from '@amalia/kernel/queue/core';

import { LtiCoreModule, UpdateCompaniesSharesPricesUseCase } from '../lti-core.module';

export const executeLtiTask = async (
  app: INestApplicationContext,
  attributes: QueueMessageAttributes<MessageTasks>,
  _messageContent: QueueMessageContent,
) => {
  switch (attributes.taskIdentifier) {
    case MessageTasks.UPDATE_COMPANIES_SHARES_PRICES: {
      await app.select(LtiCoreModule).get(UpdateCompaniesSharesPricesUseCase).execute();
      break;
    }
    default:
      return false;
  }
  return true;
};