blob: 472a7a364ed727f70bdbccc9bcb7b095fb0fdf88 [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.james.webadmin.service;
import java.util.Comparator;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import jakarta.inject.Inject;
import org.apache.james.core.Username;
import org.apache.james.user.api.UsernameChangeTaskStep;
import org.apache.james.user.api.UsernameChangeTaskStep.StepName;
import com.google.common.collect.ImmutableMap;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
public class UsernameChangeService {
public enum StepState {
WAITING,
IN_PROGRESS,
DONE,
FAILED,
ABORTED,
SKIPPED
}
public static class UsernameChangeStatus {
private final Map<StepName, StepState> states;
public UsernameChangeStatus(Set<UsernameChangeTaskStep> steps) {
states = new ConcurrentHashMap<>(steps.stream()
.collect(ImmutableMap.toImmutableMap(UsernameChangeTaskStep::name, any -> StepState.WAITING)));
}
public void beginStep(StepName step) {
states.put(step, StepState.IN_PROGRESS);
}
public void endStep(StepName step) {
states.put(step, StepState.DONE);
}
public void failedStep(StepName step) {
states.put(step, StepState.FAILED);
}
public void abortStep(StepName step) {
states.put(step, StepState.ABORTED);
}
public void skipStep(StepName step) {
states.put(step, StepState.SKIPPED);
}
public void abort() {
states.entrySet()
.stream()
.filter(entry -> entry.getValue() == StepState.WAITING || entry.getValue() == StepState.IN_PROGRESS)
.forEach(entry -> abortStep(entry.getKey()));
}
public Map<StepName, StepState> getStates() {
return ImmutableMap.copyOf(states);
}
}
public static class Performer {
private final Set<UsernameChangeTaskStep> steps;
private final UsernameChangeStatus status;
private final Optional<Integer> correspondingPriority;
public Performer(Set<UsernameChangeTaskStep> steps, UsernameChangeStatus status, Optional<StepName> fromStep) {
this.steps = steps;
this.status = status;
this.correspondingPriority = fromStep.map(this::correspondingPriority);
}
public Mono<Void> changeUsername(Username oldUsername, Username newUsername) {
correspondingPriority.ifPresent(priority -> steps.stream()
.filter(step -> step.priority() < priority)
.forEach(step -> status.skipStep(step.name())));
return steps()
.concatMap(step -> Mono.fromRunnable(() -> status.beginStep(step.name()))
.then(Mono.from(step.changeUsername(oldUsername, newUsername)))
.then(Mono.fromRunnable(() -> status.endStep(step.name())))
.doOnError(e -> status.failedStep(step.name())))
.doOnError(e -> status.abort())
.then();
}
private Flux<UsernameChangeTaskStep> steps() {
return correspondingPriority
.map(priority -> Flux.fromIterable(steps)
.filter(step -> step.priority() >= priority)
.sort(Comparator.comparingInt(UsernameChangeTaskStep::priority)))
.orElseGet(() -> Flux.fromIterable(steps)
.sort(Comparator.comparingInt(UsernameChangeTaskStep::priority)));
}
private int correspondingPriority(StepName stepName) {
return steps.stream()
.filter(step -> step.name().equals(stepName))
.map(UsernameChangeTaskStep::priority)
.findAny()
.orElseThrow(() -> new IllegalArgumentException("Starting step not found: " + stepName.asString()));
}
public UsernameChangeStatus getStatus() {
return status;
}
}
private final Set<UsernameChangeTaskStep> steps;
@Inject
public UsernameChangeService(Set<UsernameChangeTaskStep> steps) {
this.steps = steps;
}
public Performer performer(Optional<StepName> fromStep) {
return new Performer(steps, new UsernameChangeStatus(steps), fromStep);
}
}