All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.sling.scripting.thymeleaf.SlingWebContext Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
/*
 * 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.sling.scripting.thymeleaf;

import java.util.Calendar;
import java.util.Locale;
import java.util.Map;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpSession;

import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.api.resource.ResourceResolver;
import org.thymeleaf.context.AbstractContext;
import org.thymeleaf.context.IWebContext;
import org.thymeleaf.context.VariablesMap;
import org.thymeleaf.context.WebContextExecutionInfo;
import org.thymeleaf.util.Validate;

public class SlingWebContext implements SlingContext, IWebContext {

    private final Locale locale;

    private final VariablesMap variables = new VariablesMap();

    private final SlingHttpServletRequest servletRequest;

    private final SlingHttpServletResponse servletResponse;

    private final ServletContext servletContext;

    public SlingWebContext(final SlingHttpServletRequest servletRequest, final SlingHttpServletResponse servletResponse, final ServletContext servletContext, final Locale locale, final Map variables) {
        this.servletRequest = servletRequest;
        this.servletResponse = servletResponse;
        this.servletContext = servletContext;
        this.locale = locale;
        this.variables.putAll(variables);
    }

    @Override
    public SlingHttpServletRequest getHttpServletRequest() {
        return servletRequest;
    }

    @Override
    public SlingHttpServletResponse getHttpServletResponse() {
        return servletResponse;
    }

    @Override
    public HttpSession getHttpSession() {
        return servletRequest.getSession(false);
    }

    @Override
    public ServletContext getServletContext() {
        return servletContext;
    }

    @Override
    public VariablesMap getRequestParameters() {
        throw new UnsupportedOperationException("Deprecated method is not supported.");
    }

    @Override
    public VariablesMap getRequestAttributes() {
        throw new UnsupportedOperationException("Deprecated method is not supported.");
    }

    @Override
    public VariablesMap getSessionAttributes() {
        throw new UnsupportedOperationException("Deprecated method is not supported.");
    }

    @Override
    public VariablesMap getApplicationAttributes() {
        throw new UnsupportedOperationException("Deprecated method is not supported.");
    }

    @Override
    public ResourceResolver getResourceResolver() {
        return servletRequest.getResourceResolver();
    }

    @Override
    public VariablesMap getVariables() {
        return variables;
    }

    @Override
    public Locale getLocale() {
        return locale;
    }

    @Override
    public void addContextExecutionInfo(String templateName) {
        Validate.notEmpty(templateName, "Template name cannot be null or empty");
        final Calendar now = Calendar.getInstance();
        final WebContextExecutionInfo webContextExecutionInfo = new WebContextExecutionInfo(templateName, now);
        variables.put(AbstractContext.EXEC_INFO_VARIABLE_NAME, webContextExecutionInfo);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy