org.projectnessie.services.rest.BaseResource Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Dremio
*
* Licensed 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.projectnessie.services.rest;
import java.security.Principal;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
import javax.ws.rs.core.SecurityContext;
import org.projectnessie.error.NessieNotFoundException;
import org.projectnessie.model.CommitMeta;
import org.projectnessie.model.Contents;
import org.projectnessie.services.config.ServerConfig;
import org.projectnessie.versioned.Hash;
import org.projectnessie.versioned.NamedRef;
import org.projectnessie.versioned.Ref;
import org.projectnessie.versioned.ReferenceNotFoundException;
import org.projectnessie.versioned.VersionStore;
import org.projectnessie.versioned.WithHash;
abstract class BaseResource {
private final ServerConfig config;
private final MultiTenant multiTenant;
private final VersionStore store;
// Mandated by CDI 2.0
protected BaseResource() {
this(null, null, null);
}
protected BaseResource(
ServerConfig config,
MultiTenant multiTenant,
VersionStore store) {
this.config = config;
this.multiTenant = multiTenant;
this.store = store;
}
Optional getHash(String ref) {
try {
WithHash whr = store.toRef(Optional.ofNullable(ref).orElse(config.getDefaultBranch()));
return Optional.of(whr.getHash());
} catch (ReferenceNotFoundException e) {
return Optional.empty();
}
}
WithHash namedRefWithHashOrThrow(String namedRef, @Nullable String hashOnRef)
throws NessieNotFoundException {
List> collect =
store
.getNamedRefs()
.filter(
r ->
r.getValue().getName().equals(namedRef)
|| r.getValue().getName().equals(config.getDefaultBranch()))
.collect(Collectors.toList());
WithHash namedRefWithHash;
if (collect.size() == 1) {
namedRefWithHash = collect.get(0);
} else {
namedRefWithHash =
collect.stream()
.filter(r -> r.getValue().getName().equals(namedRef))
.findFirst()
.orElseThrow(
() ->
new NessieNotFoundException(String.format("Ref for %s not found", namedRef)));
}
try {
if (null == hashOnRef) {
return namedRefWithHash;
}
// we need to make sure that the hash in fact exists on the named ref
Hash hash = Hash.of(hashOnRef);
if (store.getCommits(namedRefWithHash.getValue()).noneMatch(c -> c.getHash().equals(hash))) {
throw new NessieNotFoundException(
String.format("Hash %s on Ref %s could not be found", hashOnRef, namedRef));
}
return WithHash.of(hash, namedRefWithHash.getValue());
} catch (ReferenceNotFoundException e) {
throw new NessieNotFoundException(
String.format("Hash %s on Ref %s could not be found", hashOnRef, namedRef));
}
}
Hash getHashOrThrow(String ref) throws NessieNotFoundException {
return getHash(ref)
.orElseThrow(() -> new NessieNotFoundException(String.format("Ref for %s not found", ref)));
}
protected ServerConfig getConfig() {
return config;
}
protected VersionStore getStore() {
return store;
}
protected abstract SecurityContext getSecurityContext();
protected Principal getPrincipal() {
return null == getSecurityContext() ? null : getSecurityContext().getUserPrincipal();
}
public MultiTenant getMultiTenant() {
return multiTenant;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy