org.graylog2.security.StaticOrderedAuthenticatingRealms Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog2.security;
import com.google.common.collect.ImmutableList;
import org.apache.shiro.realm.AuthenticatingRealm;
import org.apache.shiro.realm.Realm;
import org.graylog2.security.realm.AccessTokenAuthenticator;
import org.graylog2.security.realm.BearerTokenRealm;
import org.graylog2.security.realm.HTTPHeaderAuthenticationRealm;
import org.graylog2.security.realm.RootAccountRealm;
import org.graylog2.security.realm.SessionAuthenticator;
import org.graylog2.security.realm.UsernamePasswordRealm;
import javax.annotation.Nonnull;
import javax.inject.Inject;
import javax.inject.Singleton;
import java.util.AbstractCollection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
/**
* Statically ordered collection of Shiro AuthenticatingRealms.
*/
@Singleton
public class StaticOrderedAuthenticatingRealms extends AbstractCollection implements OrderedAuthenticatingRealms {
private static final ImmutableList REALM_ORDER = ImmutableList.of(
SessionAuthenticator.NAME,
AccessTokenAuthenticator.NAME,
HTTPHeaderAuthenticationRealm.NAME,
UsernamePasswordRealm.NAME,
BearerTokenRealm.NAME,
RootAccountRealm.NAME // Should come last because it's (hopefully) not used that often
);
private final List orderedRealms;
@Inject
public StaticOrderedAuthenticatingRealms(Map realms) {
this.orderedRealms = REALM_ORDER.stream()
.map(realms::get)
.filter(Objects::nonNull)
.collect(Collectors.toList());
if (orderedRealms.size() < 1) {
throw new IllegalStateException("No realms available, this must not happen!");
}
}
@Nonnull
@Override
public Iterator iterator() {
return orderedRealms.iterator();
}
@Override
public int size() {
return orderedRealms.size();
}
@Override
public Optional getRootAccountRealm() {
return orderedRealms.stream().filter(r -> r instanceof RootAccountRealm).findFirst();
}
}