| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
package net.sourceforge.pebble.web.action; |
| 33 | |
|
| 34 | |
import net.sourceforge.pebble.Constants; |
| 35 | |
|
| 36 | |
import net.sourceforge.pebble.util.SecurityUtils; |
| 37 | |
|
| 38 | |
import net.sourceforge.pebble.domain.Blog; |
| 39 | |
import net.sourceforge.pebble.domain.BlogEntry; |
| 40 | |
import net.sourceforge.pebble.domain.BlogService; |
| 41 | |
import net.sourceforge.pebble.domain.BlogServiceException; |
| 42 | |
|
| 43 | |
import net.sourceforge.pebble.web.view.NotFoundView; |
| 44 | |
import net.sourceforge.pebble.web.view.PdfView; |
| 45 | |
import net.sourceforge.pebble.web.view.View; |
| 46 | |
|
| 47 | |
import javax.servlet.ServletException; |
| 48 | |
import javax.servlet.http.HttpServletRequest; |
| 49 | |
import javax.servlet.http.HttpServletResponse; |
| 50 | |
|
| 51 | |
import org.apache.commons.logging.Log; |
| 52 | |
import org.apache.commons.logging.LogFactory; |
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | 20 | public class BlogEntryToPdfAction extends Action { |
| 60 | |
|
| 61 | 4 | private static final Log log = LogFactory.getLog(BlogEntryToPdfAction.class); |
| 62 | |
|
| 63 | |
|
| 64 | |
|
| 65 | |
|
| 66 | |
|
| 67 | |
|
| 68 | |
|
| 69 | |
|
| 70 | |
public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException { |
| 71 | 20 | Blog blog = (Blog)getModel().get(Constants.BLOG_KEY); |
| 72 | 20 | String entryId = request.getParameter("entry"); |
| 73 | |
|
| 74 | 20 | BlogEntry blogEntry = null; |
| 75 | 20 | if (entryId != null) { |
| 76 | 16 | BlogService service = new BlogService(); |
| 77 | |
try { |
| 78 | 16 | blogEntry = service.getBlogEntry(blog, entryId); |
| 79 | 0 | } catch (BlogServiceException e) { |
| 80 | 0 | throw new ServletException(e); |
| 81 | 16 | } |
| 82 | |
} |
| 83 | |
|
| 84 | 20 | if (blogEntry == null) { |
| 85 | |
|
| 86 | |
|
| 87 | 12 | return new NotFoundView(); |
| 88 | |
|
| 89 | |
} else { |
| 90 | |
|
| 91 | 8 | String filename = this.buildPermalink(blogEntry); |
| 92 | 8 | return new PdfView(blogEntry, filename + ".pdf"); |
| 93 | |
|
| 94 | |
} |
| 95 | |
} |
| 96 | |
|
| 97 | |
private String buildPermalink(BlogEntry blogEntry) { |
| 98 | 8 | String title = blogEntry.getTitle(); |
| 99 | 8 | if (title == null || title.length() == 0) { |
| 100 | 0 | title = "" + blogEntry.getId(); |
| 101 | |
} else { |
| 102 | 8 | title = title.toLowerCase(); |
| 103 | 8 | title = title.replaceAll("[\\. ,;/\\\\-]", "_"); |
| 104 | 8 | title = title.replaceAll("[^a-z0-9_]", ""); |
| 105 | 8 | title = title.replaceAll("_+", "_"); |
| 106 | 8 | title = title.replaceAll("^_*", ""); |
| 107 | 8 | title = title.replaceAll("_*$", ""); |
| 108 | |
} |
| 109 | |
|
| 110 | |
|
| 111 | 8 | if (title == null || title.length() == 0) { |
| 112 | 0 | title = "" + blogEntry.getId(); |
| 113 | |
} |
| 114 | 8 | return title; |
| 115 | |
} |
| 116 | |
} |