blob: 41852c0eef36ee57268a257801d4256704c87a95 [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.wicket.cdi;
import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.inject.spi.BeanManager;
import javax.inject.Inject;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpSession;
import org.jboss.weld.bean.builtin.BeanManagerProxy;
import org.jboss.weld.module.web.servlet.HttpContextLifecycle;
import org.jboss.weld.servlet.spi.helpers.AcceptingHttpContextActivationFilter;
import org.jglue.cdiunit.internal.CdiUnitInitialListenerImpl;
import org.jglue.cdiunit.internal.servlet.LifecycleAwareRequest;
/**
* @author jsarman
*/
@ApplicationScoped
public class ContextManager
{
private HttpServletRequest currentRequest;
@Inject
private BeanManager beanManager;
private HttpContextLifecycle lifecycle;
private HttpSession currentSession;
@PostConstruct
public void setup()
{
try
{
lifecycle = new HttpContextLifecycle(BeanManagerProxy.unwrap(beanManager),
AcceptingHttpContextActivationFilter.INSTANCE, true, true, false, true);
}
catch (NoSuchMethodError e)
{
try
{
lifecycle = HttpContextLifecycle.class.getConstructor(BeanManager.class,
AcceptingHttpContextActivationFilter.class).newInstance(
BeanManagerProxy.unwrap(beanManager),
AcceptingHttpContextActivationFilter.INSTANCE);
}
catch (Exception e1)
{
throw new RuntimeException(e1);
}
}
lifecycle.setConversationActivationEnabled(true);
}
public void activateContexts(HttpServletRequest request)
{
if (currentRequest != null)
return;
// FIXME Wicket 10
currentRequest = null;// new LifecycleAwareRequest(new CdiUnitInitialListenerImpl(), new javax.servlet.http.HttpServletRequest(request));
lifecycle.requestInitialized(new javax.servlet.http.HttpServletRequest.Impl(currentRequest), null);
}
public void deactivateContexts()
{
lifecycle.requestDestroyed(new javax.servlet.http.HttpServletRequest.Impl(currentRequest));
currentSession = currentRequest.getSession(false);
currentRequest = null;
}
public void destroy()
{
if (currentRequest != null)
{
currentSession = currentRequest.getSession(false);
}
if (currentSession != null)
{
lifecycle.sessionDestroyed(new javax.servlet.http.HttpSession.Impl(currentSession));
currentSession = null;
}
}
public boolean isRequestActive()
{
return currentRequest != null;
}
}