View Javadoc
1   /**
2    * This file Copyright (c) 2008-2015 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.module.cache.executor;
35  
36  import info.magnolia.cms.cache.CacheConstants;
37  import info.magnolia.context.MgnlContext;
38  import info.magnolia.jcr.util.NodeUtil;
39  import info.magnolia.module.ModuleRegistry;
40  import info.magnolia.module.cache.Cache;
41  import info.magnolia.module.cache.CacheModule;
42  import info.magnolia.module.cache.CachePolicy;
43  import info.magnolia.module.cache.CachePolicyResult;
44  import info.magnolia.module.cache.filter.CacheResponseWrapper;
45  import info.magnolia.module.cache.filter.CachedEntry;
46  import info.magnolia.module.cache.filter.CachedError;
47  import info.magnolia.module.cache.filter.CachedRedirect;
48  import info.magnolia.module.cache.filter.ContentCachedEntry;
49  import info.magnolia.module.cache.filter.DelegatingBlobCachedEntry;
50  import info.magnolia.module.cache.filter.InMemoryCachedEntry;
51  import info.magnolia.module.cache.filter.UncacheableEntry;
52  import info.magnolia.objectfactory.Components;
53  
54  import java.io.IOException;
55  
56  import javax.inject.Inject;
57  import javax.jcr.Node;
58  import javax.jcr.RepositoryException;
59  import javax.servlet.FilterChain;
60  import javax.servlet.ServletException;
61  import javax.servlet.http.HttpServletRequest;
62  import javax.servlet.http.HttpServletResponse;
63  
64  import org.apache.commons.lang3.StringUtils;
65  
66  /**
67   * Wraps the response and stores the content in a cache Entry.
68   */
69  public class Store extends AbstractExecutor {
70  
71      private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(Store.class);
72      private final CacheModule cacheModule;
73  
74      /**
75       * @deprecated since 5.2.3. Use {@link #Store(CacheModule)} instead.
76       */
77      public Store() {
78          this.cacheModule = Components.getComponent(ModuleRegistry.class).getModuleInstance(CacheModule.class);
79      }
80  
81      @Inject
82      public Store(CacheModule cacheModule) {
83          this.cacheModule = cacheModule;
84      }
85  
86      @Override
87      public void processCacheRequest(HttpServletRequest request, HttpServletResponse response, FilterChain chain, Cache cache, CachePolicyResult cachePolicyResult) throws IOException, ServletException {
88  
89          CachedEntry cachedEntry = null;
90          final Object key = cachePolicyResult.getCacheKey();
91  
92          final CacheResponseWrapper responseWrapper = new CacheResponseWrapper(response, CacheResponseWrapper.DEFAULT_THRESHOLD, false);
93          responseWrapper.setResponseExpirationDetectionEnabled();
94  
95          // setting Last-Modified to when this resource was stored in the cache. This value might get overridden by further filters or servlets.
96          final long cacheStorageDate = System.currentTimeMillis();
97          responseWrapper.setDateHeader("Last-Modified", cacheStorageDate);
98  
99          try {
100             chain.doFilter(request, responseWrapper);
101             if (responseWrapper.getStatus() == HttpServletResponse.SC_NOT_MODIFIED) {
102                 response.setStatus(HttpServletResponse.SC_NOT_MODIFIED);
103             } else {
104                 responseWrapper.flushBuffer();
105                 cachedEntry = makeCachedEntry(request, responseWrapper, cache, cachePolicyResult);
106                 if (cachedEntry.getTimeToLiveInSeconds() == 0) {
107                     cachedEntry = new UncacheableEntry(cachedEntry);
108                 }
109             }
110 
111         } catch (IOException e) {
112             responseWrapper.cleanUp();
113             throw e;
114         } catch (ServletException e) {
115             responseWrapper.cleanUp();
116             throw e;
117         } catch (Throwable e) {
118             responseWrapper.cleanUp();
119             throw new RuntimeException("Failed to process request with: " + e.getMessage(), e);
120         }
121 
122         if (cachedEntry == null) {
123             // put null to unblock the cache
124             cache.put(key, null);
125             return;
126         }
127 
128         int timeToLiveInSeconds = cachedEntry.getTimeToLiveInSeconds();
129         cachePolicyResult.setCachedEntry(cachedEntry);
130 
131         if (timeToLiveInSeconds == -1) {
132             cache.put(key, cachedEntry);
133         } else {
134             cache.put(key, cachedEntry, timeToLiveInSeconds);
135         }
136 
137         // let policy know the uuid in case it wants to do something with it
138         final Node content = MgnlContext.getAggregationState().getMainContentNode();
139         try {
140             if (content != null && NodeUtil.isNodeType(content, "mix:referenceable")) {
141                 final String uuid = content.getIdentifier();
142                 String repo = content.getSession().getWorkspace().getName();
143                 getCachePolicy(cache).persistCacheKey(repo, uuid, key);
144             }
145         } catch (RepositoryException e) {
146             // TODO dlipp: apply consistent ExceptionHandling
147             responseWrapper.cleanUp();
148             throw new RuntimeException(e);
149         }
150     }
151 
152     protected CachedEntry makeCachedEntry(HttpServletRequest request, CacheResponseWrapper cachedResponse, Cache cache, CachePolicyResult cachePolicyResult) throws IOException {
153         // query params are handled by the cache key
154         final String originalUrl = request.getRequestURL().toString();
155         int status = cachedResponse.getStatus();
156         int timeToLiveInSeconds = this.getTimeToLive(cachedResponse, cache);
157 
158         // TODO : handle more of the 30x codes - although CacheResponseWrapper currently only sets the 302 or 304.
159         if (cachedResponse.getRedirectionLocation() != null) {
160             return new CachedRedirect(cachedResponse.getStatus(), cachedResponse.getRedirectionLocation(), originalUrl, timeToLiveInSeconds);
161         }
162 
163         if (cachedResponse.isError()) {
164             return new CachedError(cachedResponse.getStatus(), originalUrl, timeToLiveInSeconds);
165         }
166 
167         final long modificationDate = cachedResponse.getLastModified();
168         final String contentType = cachedResponse.getContentType();
169 
170         ContentCachedEntry cacheEntry;
171         if (!cachedResponse.isThresholdExceeded()) {
172             cacheEntry = new InMemoryCachedEntry(cachedResponse.getBufferedContent(),
173                     contentType,
174                     cachedResponse.getCharacterEncoding(),
175                     status,
176                     cachedResponse.getHeaders(),
177                     modificationDate,
178                     originalUrl,
179                     timeToLiveInSeconds);
180         } else {
181             cacheEntry = new DelegatingBlobCachedEntry(cachedResponse.getContentLength(),
182                     contentType,
183                     cachedResponse.getCharacterEncoding(),
184                     status,
185                     cachedResponse.getHeaders(),
186                     modificationDate,
187                     originalUrl,
188                     timeToLiveInSeconds);
189 
190             // TODO remove this once we use a blob store
191             // the file will be deleted once served in this request
192             ((DelegatingBlobCachedEntry) cacheEntry).bindContentFileToCurrentRequest(request, cachedResponse.getContentFile());
193             cachedResponse.getThresholdingOutputStream().close();
194         }
195         return cacheEntry;
196     }
197 
198     protected int getTimeToLive(CacheResponseWrapper cachedResponse, Cache cache) {
199         return this.getCachePolicy(cache).getTtlVoters().vote(cachedResponse);
200     }
201 
202     protected CachePolicy getCachePolicy(Cache cache) {
203         return cacheModule.getContentCaching(cache.getName()).getCachePolicy();
204     }
205 
206     //deprecated methods
207     /**
208      * @deprecated since 5.4. Use {@link #getTimeToLive(info.magnolia.module.cache.filter.CacheResponseWrapper, info.magnolia.module.cache.Cache)} instead.
209      */
210     @Deprecated
211     protected int getTimeToLive(HttpServletRequest request, CacheResponseWrapper cachedResponse) {
212         Object attribute = request.getAttribute(CacheConstants.HEADER_X_MAGNOLIA_CACHE);
213         if (attribute instanceof String) {
214             String attributeAsString = (String) attribute;
215             String[] splitted = StringUtils.split(attributeAsString, ",");
216             for (String headerValue : splitted) {
217                 if (headerValue.contains(CacheConstants.HEADER_VALUE_TTL + "=")) {
218                     String ttlString = StringUtils.substringAfter(headerValue, CacheConstants.HEADER_VALUE_TTL + "=");
219                     try {
220                         return Integer.parseInt(ttlString);
221                     } catch (NumberFormatException e) {
222                         log.error("Unparsable TTL in '{}' attribute: {}", CacheConstants.HEADER_X_MAGNOLIA_CACHE, headerValue);
223                     }
224                 }
225             }
226         }
227         return cachedResponse.getTimeToLiveInSeconds();
228     }
229 
230 }