blob: 2002eff517f9d8ad9e562e57c24b75cfc2aae676 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.unomi.plugins.baseplugin.actions;
import org.apache.unomi.api.Event;
import org.apache.unomi.api.actions.Action;
import org.apache.unomi.api.actions.ActionExecutor;
import org.apache.unomi.api.segments.SegmentsAndScores;
import org.apache.unomi.api.services.EventService;
import org.apache.unomi.api.services.SegmentService;
import java.util.Map;
import java.util.Set;
public class EvaluateProfileSegmentsAction implements ActionExecutor {
private SegmentService segmentService;
public SegmentService getSegmentService() {
return segmentService;
}
public void setSegmentService(SegmentService segmentService) {
this.segmentService = segmentService;
}
@Override
public int execute(Action action, Event event) {
if (event.getProfile().isAnonymousProfile()) {
return EventService.NO_CHANGE;
}
boolean updated = false;
SegmentsAndScores segmentsAndScoringForProfile = segmentService.getSegmentsAndScoresForProfile(event.getProfile());
Set<String> segments = segmentsAndScoringForProfile.getSegments();
if (!segments.equals(event.getProfile().getSegments())) {
event.getProfile().setSegments(segments);
updated = true;
}
Map<String, Integer> scores = segmentsAndScoringForProfile.getScores();
if (!scores.equals(event.getProfile().getScores())) {
event.getProfile().setScores(scores);
updated = true;
}
return updated ? EventService.PROFILE_UPDATED : EventService.NO_CHANGE;
}
}