Новая фича
Теперь есть юниты, которые автоматически отвечают на любое сообщение
This commit is contained in:
parent
a4eaf949e0
commit
11f9858c01
@ -59,7 +59,7 @@ public class Autoresponder {
|
||||
Parser parser = new Parser();
|
||||
parser.setText(message);
|
||||
parser.parse();
|
||||
Optional<Unit> max = nextUnits.stream().filter(nextUnit -> textPercentageMatch(nextUnit, parser.getWords()) >= nextUnit.getMatchThreshold()).max(new UnitPriorityComparator());
|
||||
Optional<Unit> max = nextUnits.stream().filter(nextUnit -> textPercentageMatch(nextUnit, parser.getWords()) >= nextUnit.getMatchThreshold() || nextUnit.getKeyWords() == null).max(new UnitPriorityComparator());
|
||||
return max.orElse(null);
|
||||
} else {
|
||||
return null;
|
||||
@ -67,10 +67,14 @@ public class Autoresponder {
|
||||
}
|
||||
|
||||
private Double textPercentageMatch(Unit unit, Set<String> words) {
|
||||
if (unit.getKeyWords() != null) {
|
||||
Set<String> temp = new HashSet<>(unit.getKeyWords());
|
||||
temp.retainAll(words);
|
||||
log.info((temp.size() / unit.getKeyWords().size()) * 100);
|
||||
return (double) (temp.size() / unit.getKeyWords().size()) * 100;
|
||||
} else {
|
||||
return 0.0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,8 +1,6 @@
|
||||
package org.sadtech.autoresponder.entity;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
import java.util.*;
|
||||
|
||||
public abstract class Unit {
|
||||
|
||||
@ -23,6 +21,20 @@ public abstract class Unit {
|
||||
this.nextUnits = nextUnits;
|
||||
}
|
||||
|
||||
public void setKeyWord(String keyWord) {
|
||||
if (keyWords == null) {
|
||||
keyWords = new HashSet<>();
|
||||
}
|
||||
keyWords.add(keyWord);
|
||||
}
|
||||
|
||||
public void setNextUnit(Unit unit) {
|
||||
if (nextUnits == null) {
|
||||
nextUnits = new ArrayList<>();
|
||||
}
|
||||
nextUnits.add(unit);
|
||||
}
|
||||
|
||||
public Set<String> getKeyWords() {
|
||||
return keyWords;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user