org.htmlunit.csp.PolicyInOrigin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlunit-csp Show documentation
Show all versions of htmlunit-csp Show documentation
Content-Security-Policy parser for HtmlUnit.
/*
* Copyright (c) 2023-2024 Ronald Brill.
*
* 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.htmlunit.csp;
import java.util.Optional;
import org.htmlunit.csp.url.URLWithScheme;
public class PolicyInOrigin {
private final Policy policy_;
private final URLWithScheme origin_;
public PolicyInOrigin(final Policy policy, final URLWithScheme origin) {
policy_ = policy;
origin_ = origin;
}
public Policy getPolicy() {
return policy_;
}
// Low-level querying
public boolean allowsScriptFromSource(final URLWithScheme url) {
return policy_.allowsExternalScript(Optional.empty(),
Optional.empty(), Optional.of(url), Optional.empty(), Optional.of(origin_));
}
public boolean allowsStyleFromSource(final URLWithScheme url) {
return policy_.allowsExternalStyle(Optional.empty(), Optional.of(url), Optional.of(origin_));
}
public boolean allowsImageFromSource(final URLWithScheme url) {
return policy_.allowsImage(Optional.of(url), Optional.of(origin_));
}
public boolean allowsFrameFromSource(final URLWithScheme url) {
return policy_.allowsFrame(Optional.of(url), Optional.of(origin_));
}
public boolean allowsWorkerFromSource(final URLWithScheme url) {
return policy_.allowsWorker(Optional.of(url), Optional.of(origin_));
}
public boolean allowsFontFromSource(final URLWithScheme url) {
return policy_.allowsFont(Optional.of(url), Optional.of(origin_));
}
public boolean allowsObjectFromSource(final URLWithScheme url) {
return policy_.allowsObject(Optional.of(url), Optional.of(origin_));
}
public boolean allowsMediaFromSource(final URLWithScheme url) {
return policy_.allowsMedia(Optional.of(url), Optional.of(origin_));
}
public boolean allowsManifestFromSource(final URLWithScheme url) {
return policy_.allowsApplicationManifest(Optional.of(url), Optional.of(origin_));
}
public boolean allowsPrefetchFromSource(final URLWithScheme url) {
return policy_.allowsPrefetch(Optional.of(url), Optional.of(origin_));
}
public boolean allowsUnsafeInlineScript() {
return policy_.allowsInlineScript(Optional.empty(), Optional.empty(), Optional.empty());
}
public boolean allowsUnsafeInlineStyle() {
return policy_.allowsInlineStyle(Optional.empty(), Optional.empty());
}
public boolean allowsConnection(final URLWithScheme url) {
return policy_.allowsConnection(Optional.of(url), Optional.of(origin_));
}
public boolean allowsNavigation(final URLWithScheme url) {
return policy_.allowsNavigation(Optional.of(url),
Optional.empty(), Optional.empty(), Optional.of(origin_));
}
public boolean allowsFrameAncestor(final URLWithScheme url) {
return policy_.allowsFrameAncestor(Optional.of(url), Optional.of(origin_));
}
public boolean allowsFormAction(final URLWithScheme url) {
return policy_.allowsFormAction(Optional.of(url),
Optional.empty(), Optional.empty(), Optional.of(origin_));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy