001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.taglib.util;
016    
017    import com.liferay.portal.kernel.util.HttpUtil;
018    import com.liferay.portal.kernel.webcache.WebCacheException;
019    import com.liferay.portal.kernel.webcache.WebCacheItem;
020    
021    /**
022     * @author Brian Wing Shun Chan
023     */
024    public class GetUrlWebCacheItem implements WebCacheItem {
025    
026            public GetUrlWebCacheItem(String url, long refreshTime) {
027                    _url = url;
028                    _refreshTime = refreshTime;
029            }
030    
031            @Override
032            public Object convert(String key) throws WebCacheException {
033                    String url = _url;
034    
035                    String content = null;
036    
037                    try {
038                            content = HttpUtil.URLtoString(_url);
039                    }
040                    catch (Exception e) {
041                            throw new WebCacheException(url + " " + e.toString());
042                    }
043    
044                    return content;
045            }
046    
047            @Override
048            public long getRefreshTime() {
049                    return _refreshTime;
050            }
051    
052            private long _refreshTime;
053            private String _url;
054    
055    }