| 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 | |
import net.sourceforge.pebble.domain.Blog; |
| 36 | |
import net.sourceforge.pebble.domain.StaticPage; |
| 37 | |
import net.sourceforge.pebble.service.StaticPageService; |
| 38 | |
import net.sourceforge.pebble.service.StaticPageServiceException; |
| 39 | |
import net.sourceforge.pebble.web.security.RequireSecurityToken; |
| 40 | |
import net.sourceforge.pebble.web.view.ForwardView; |
| 41 | |
import net.sourceforge.pebble.web.view.NotFoundView; |
| 42 | |
import net.sourceforge.pebble.web.view.RedirectView; |
| 43 | |
import net.sourceforge.pebble.web.view.View; |
| 44 | |
import net.sourceforge.pebble.web.view.impl.StaticPageLockedView; |
| 45 | |
import org.apache.commons.logging.Log; |
| 46 | |
import org.apache.commons.logging.LogFactory; |
| 47 | |
|
| 48 | |
import javax.servlet.ServletException; |
| 49 | |
import javax.servlet.http.HttpServletRequest; |
| 50 | |
import javax.servlet.http.HttpServletResponse; |
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
@RequireSecurityToken |
| 58 | 8 | public class ManageStaticPageAction extends SecureAction { |
| 59 | |
|
| 60 | |
|
| 61 | 4 | private static final Log log = LogFactory.getLog(ManageStaticPageAction.class); |
| 62 | |
|
| 63 | |
|
| 64 | |
|
| 65 | |
|
| 66 | |
|
| 67 | |
|
| 68 | |
|
| 69 | |
|
| 70 | |
public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException { |
| 71 | 0 | Blog blog = (Blog)getModel().get(Constants.BLOG_KEY); |
| 72 | 0 | String id = request.getParameter("page"); |
| 73 | 0 | String confirm = request.getParameter("confirm"); |
| 74 | 0 | String submit = request.getParameter("submit"); |
| 75 | |
|
| 76 | 0 | StaticPageService service = new StaticPageService(); |
| 77 | 0 | StaticPage staticPage = null; |
| 78 | |
try { |
| 79 | 0 | staticPage = service.getStaticPageById(blog, id); |
| 80 | 0 | } catch (StaticPageServiceException e) { |
| 81 | 0 | throw new ServletException(e); |
| 82 | 0 | } |
| 83 | |
|
| 84 | 0 | if (staticPage == null) { |
| 85 | 0 | return new NotFoundView(); |
| 86 | |
} |
| 87 | |
|
| 88 | 0 | if (submit.equals("Edit")) { |
| 89 | 0 | return new ForwardView("/editStaticPage.secureaction?page=" + id); |
| 90 | 0 | } else if (submit.equalsIgnoreCase("Remove") && confirm != null && confirm.equals("true")) { |
| 91 | |
try { |
| 92 | 0 | if (service.lock(staticPage)) { |
| 93 | 0 | service.removeStaticPage(staticPage); |
| 94 | 0 | blog.info("Static page \"" + staticPage.getTitle() + "\" removed."); |
| 95 | 0 | service.unlock(staticPage); |
| 96 | |
} else { |
| 97 | 0 | getModel().put(Constants.STATIC_PAGE_KEY, staticPage); |
| 98 | 0 | return new StaticPageLockedView(); |
| 99 | |
} |
| 100 | |
|
| 101 | 0 | return new RedirectView(blog.getUrl() + "viewStaticPages.secureaction"); |
| 102 | 0 | } catch (StaticPageServiceException e) { |
| 103 | 0 | throw new ServletException(e); |
| 104 | |
} |
| 105 | 0 | } else if (submit.equalsIgnoreCase("Unlock") && confirm != null && confirm.equals("true")) { |
| 106 | 0 | service.unlock(staticPage); |
| 107 | 0 | blog.info("Static page <a href=\"" + staticPage.getLocalPermalink() + "\">" + staticPage.getTitle() + "</a> unlocked."); |
| 108 | |
|
| 109 | 0 | return new RedirectView(blog.getUrl() + "viewStaticPages.secureaction"); |
| 110 | |
} |
| 111 | |
|
| 112 | 0 | return new RedirectView(staticPage.getLocalPermalink()); |
| 113 | |
} |
| 114 | |
|
| 115 | |
|
| 116 | |
|
| 117 | |
|
| 118 | |
|
| 119 | |
|
| 120 | |
|
| 121 | |
public String[] getRoles(HttpServletRequest request) { |
| 122 | 8 | String submit = request.getParameter("submit"); |
| 123 | |
|
| 124 | 8 | if (submit != null) { |
| 125 | 8 | if (submit.equalsIgnoreCase("Edit")) { |
| 126 | 4 | return new String[]{Constants.BLOG_CONTRIBUTOR_ROLE}; |
| 127 | 4 | } else if (submit.equalsIgnoreCase("Remove")) { |
| 128 | 4 | return new String[]{Constants.BLOG_CONTRIBUTOR_ROLE}; |
| 129 | 0 | } else if (submit.equalsIgnoreCase("Unlock")) { |
| 130 | 0 | return new String[]{Constants.BLOG_ADMIN_ROLE, Constants.BLOG_OWNER_ROLE, Constants.BLOG_CONTRIBUTOR_ROLE}; |
| 131 | |
} |
| 132 | |
} |
| 133 | |
|
| 134 | |
|
| 135 | 0 | return new String[]{Constants.BLOG_OWNER_ROLE}; |
| 136 | |
} |
| 137 | |
|
| 138 | |
} |