Package org.jboss.resteasy.plugins.interceptors

Source Code of org.jboss.resteasy.plugins.interceptors.CacheControlFeature

package org.jboss.resteasy.plugins.interceptors;

import org.jboss.resteasy.annotations.cache.Cache;
import org.jboss.resteasy.annotations.cache.NoCache;
import org.jboss.resteasy.annotations.interception.HeaderDecoratorPrecedence;

import javax.ws.rs.GET;
import javax.ws.rs.container.DynamicFeature;
import javax.ws.rs.container.ResourceInfo;
import javax.ws.rs.core.CacheControl;
import javax.ws.rs.core.Configurable;
import javax.ws.rs.core.FeatureContext;
import java.lang.reflect.Method;

/**
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @version $Revision: 1 $
*/
public class CacheControlFeature implements DynamicFeature
{
   @Override
   public void configure(ResourceInfo resourceInfo, FeatureContext configurable)
   {
      final Class<?> declaring = resourceInfo.getResourceClass();
      final Method method = resourceInfo.getResourceMethod();

      if (declaring == null || method == null) return;
      if (!method.isAnnotationPresent(GET.class)) return;

      Cache cache = declaring.getAnnotation(Cache.class);
      NoCache nocache = declaring.getAnnotation(NoCache.class);
      Cache methodCached = method.getAnnotation(Cache.class);
      NoCache noMethodCache = method.getAnnotation(NoCache.class);

      CacheControl cacheControl = null;
      if (methodCached != null)
      {
         cacheControl= initCacheControl(methodCached);
      }
      else if (noMethodCache != null)
      {
         cacheControl = initCacheControl(noMethodCache);
      }
      else if (cache != null)
      {
         cacheControl = initCacheControl(cache);
      }
      else if (nocache != null)
      {
         cacheControl = initCacheControl(nocache);
      }

      if (cacheControl != null)
      {
         configurable.register(new CacheControlFilter(cacheControl));
      }
   }

   protected CacheControl initCacheControl(Cache methodCached)
   {
      CacheControl cacheControl = new CacheControl();
      if (methodCached.isPrivate())
      {
         cacheControl.setPrivate(true);
      }
      if (methodCached.maxAge() > -1)
      {
         cacheControl.setMaxAge(methodCached.maxAge());
      }
      if (methodCached.sMaxAge() > -1)
      {
         cacheControl.setSMaxAge(methodCached.sMaxAge());
      }
      cacheControl.setMustRevalidate((methodCached.mustRevalidate()));
      cacheControl.setNoStore((methodCached.noStore()));
      cacheControl.setNoTransform((methodCached.noTransform()));
      cacheControl.setProxyRevalidate(methodCached.proxyRevalidate());
      return cacheControl;
   }
  
   protected CacheControl initCacheControl(NoCache value)
   {
      CacheControl cacheControl = new CacheControl();
       cacheControl.setNoCache(true);
       cacheControl.setNoTransform(false);
       for (String field : value.fields()) cacheControl.getNoCacheFields().add(field);
      return cacheControl;
   }
}
TOP

Related Classes of org.jboss.resteasy.plugins.interceptors.CacheControlFeature

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.