mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
704 B
23 lines
704 B
import { Injectable } from '@nestjs/common';
|
|
import { Rule } from '../models/rule';
|
|
import { Currency } from '@prisma/client';
|
|
import { RuleSettings } from '@ghostfolio/api/models/interfaces/rule-settings.interface';
|
|
|
|
@Injectable()
|
|
export class RulesService {
|
|
public constructor() {}
|
|
|
|
public async evaluate<T extends RuleSettings>(
|
|
aRules: Rule<T>[],
|
|
aUserSettings: { baseCurrency: Currency }
|
|
) {
|
|
return aRules
|
|
.filter((rule) => {
|
|
return rule.getSettings(aUserSettings)?.isActive;
|
|
})
|
|
.map((rule) => {
|
|
const evaluationResult = rule.evaluate(rule.getSettings(aUserSettings));
|
|
return { ...evaluationResult, name: rule.getName() };
|
|
});
|
|
}
|
|
}
|
|
|