/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package org.apache.wiki.ui; import java.security.Permission; import org.apache.wiki.WikiPage; import org.apache.wiki.auth.permissions.PagePermission; import org.apache.wiki.auth.permissions.PermissionFactory; /** * <p>Defines Commands for editing, renaming, and viewing wiki pages. * PageCommands can be combined with WikiPages to produce * targeted Commands.</p> * <p>This class is not <code>final</code>; it may be extended in * the future.</p> * @since 2.4.22 */ public final class PageCommand extends AbstractCommand { public static final Command ATTACH = new PageCommand( "att", "%uattach/%n", null, null, PagePermission.UPLOAD_ACTION ); public static final Command COMMENT = new PageCommand( "comment", "%uComment.jsp?page=%n", "CommentContent.jsp", null, PagePermission.COMMENT_ACTION ); public static final Command CONFLICT = new PageCommand( "conflict", "%uPageModified.jsp?page=%n", "ConflictContent.jsp", null, PagePermission.VIEW_ACTION ); public static final Command DELETE = new PageCommand( "del", "%uDelete.jsp?page=%n", null, null, PagePermission.DELETE_ACTION ); public static final Command DIFF = new PageCommand( "diff", "%uDiff.jsp?page=%n", "DiffContent.jsp", null, PagePermission.VIEW_ACTION ); public static final Command EDIT = new PageCommand( "edit", "%uEdit.jsp?page=%n", "EditContent.jsp", null, PagePermission.EDIT_ACTION ); public static final Command INFO = new PageCommand( "info", "%uPageInfo.jsp?page=%n", "InfoContent.jsp", null, PagePermission.VIEW_ACTION ); public static final Command PREVIEW = new PageCommand( "preview", "%uPreview.jsp?page=%n", "PreviewContent.jsp", null, PagePermission.VIEW_ACTION ); public static final Command RENAME = new PageCommand( "rename", "%uRename.jsp?page=%n", "InfoContent.jsp", null, PagePermission.RENAME_ACTION ); public static final Command RSS = new PageCommand( "rss", "%urss.jsp", null, null, PagePermission.VIEW_ACTION ); public static final Command UPLOAD = new PageCommand( "upload", "%uUpload.jsp?page=%n", null, null, PagePermission.UPLOAD_ACTION ); public static final Command VIEW = new PageCommand( "view", "%uWiki.jsp?page=%n", "PageContent.jsp", null, PagePermission.VIEW_ACTION ); public static final Command NONE = new PageCommand( "", "%u%n", null, null, null ); public static final Command OTHER = NONE; private final String m_action; private final Permission m_permission; /** * Constructs a new Command with a specified wiki context, URL pattern, * type, and content template. The target for this command is initialized to * <code>null</code>. * @param requestContext the request context * @param urlPattern the URL pattern * @param target the target of the command (a WikiPage); may be <code>null</code> * @param action the action used to construct a suitable PagePermission * @param contentTemplate the content template; may be <code>null</code> * @throws IllegalArgumentException if the request content, URL pattern, or * type is <code>null</code> */ private PageCommand( String requestContext, String urlPattern, String contentTemplate, WikiPage target, String action ) { super( requestContext, urlPattern, contentTemplate, target ); m_action = action; if( target == null || m_action == null ) { m_permission = null; } else { m_permission = PermissionFactory.getPagePermission( target, action ); } } /** * Creates and returns a targeted Command by combining a WikiPage * with this Command. The supplied <code>target</code> object * must be non-<code>null</code> and of type WikiPage. * @param target the WikiPage to combine into the current Command * @return the new targeted command * @throws IllegalArgumentException if the target is not of the correct type */ public Command targetedCommand( Object target ) { if( !( target != null && target instanceof WikiPage ) ) { throw new IllegalArgumentException( "Target must non-null and of type WikiPage." ); } return new PageCommand( getRequestContext(), getURLPattern(), getContentTemplate(), (WikiPage)target, m_action ); } /** * @see org.apache.wiki.ui.Command#getName() */ public String getName() { Object target = getTarget(); if( target == null ) { return getJSPFriendlyName(); } return ( (WikiPage) target ).getName(); } /** * @see org.apache.wiki.ui.Command#requiredPermission() */ public Permission requiredPermission() { return m_permission; } }