//# 0 errors, 87 messages
//#
/*
    //#copyfileaction.java:1:1: class: net.sourceforge.pebble.web.action.CopyFileAction
    //#copyfileaction.java:1:1: method: net.sourceforge.pebble.web.action.CopyFileAction.net.sourceforge.pebble.web.action.CopyFileAction__static_init
 * Copyright (c) 2003-2006, Simon Brown
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in
 *     the documentation and/or other materials provided with the
 *     distribution.
 *
 *   - Neither the name of Pebble nor the names of its contributors may
 *     be used to endorse or promote products derived from this software
 *     without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package net.sourceforge.pebble.web.action;

import net.sourceforge.pebble.Constants;
import net.sourceforge.pebble.domain.FileManager;
import net.sourceforge.pebble.domain.FileMetaData;
import net.sourceforge.pebble.domain.IllegalFileAccessException;
import net.sourceforge.pebble.domain.Blog;
import net.sourceforge.pebble.util.StringUtils;
import net.sourceforge.pebble.web.security.RequireSecurityToken;
import net.sourceforge.pebble.web.view.RedirectView;
import net.sourceforge.pebble.web.view.View;
import net.sourceforge.pebble.web.view.ForbiddenView;
import net.sourceforge.pebble.web.view.impl.NotEnoughSpaceView;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * Allows the user to copy (or rename/move) a file.
 *
 * @author Simon Brown
 */
@RequireSecurityToken
public class CopyFileAction extends AbstractFileAction {
    //#copyfileaction.java:57: method: void net.sourceforge.pebble.web.action.CopyFileAction.net.sourceforge.pebble.web.action.CopyFileAction()
    //#input(void net.sourceforge.pebble.web.action.CopyFileAction()): this
    //#unanalyzed(void net.sourceforge.pebble.web.action.CopyFileAction()): Effects-of-calling:net.sourceforge.pebble.web.action.SecureAction
    //#copyfileaction.java:57: end of method: void net.sourceforge.pebble.web.action.CopyFileAction.net.sourceforge.pebble.web.action.CopyFileAction()

  /**
   * Peforms the processing associated with this action.
   *
   * @param request  the HttpServletRequest instance
   * @param response the HttpServletResponse instance
   * @return the name of the next view
   */
  public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException {
    Blog blog = (Blog)getModel().get(Constants.BLOG_KEY);
    //#copyfileaction.java:67: method: View net.sourceforge.pebble.web.action.CopyFileAction.process(HttpServletRequest, HttpServletResponse)
    //#input(View process(HttpServletRequest, HttpServletResponse)): __Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction]
    //#input(View process(HttpServletRequest, HttpServletResponse)): __Descendant_Table[others]
    //#input(View process(HttpServletRequest, HttpServletResponse)): __Dispatch_Table.getModel()Lnet/sourceforge/pebble/web/model/Model;
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Descendant_Table[net/sourceforge/pebble/web/model/Model]
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Descendant_Table[others]
    //#input(View process(HttpServletRequest, HttpServletResponse)): net/sourceforge/pebble/web/model/Model.__Dispatch_Table.get(Ljava/lang/String;)Ljava/lang/Object;
    //#input(View process(HttpServletRequest, HttpServletResponse)): request
    //#input(View process(HttpServletRequest, HttpServletResponse)): this
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.__Tag
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.model
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.model.__Tag
    //#input(View process(HttpServletRequest, HttpServletResponse)): this.model.data
    //#output(View process(HttpServletRequest, HttpServletResponse)): new ForbiddenView(process#9) num objects
    //#output(View process(HttpServletRequest, HttpServletResponse)): new ForbiddenView(process#9).__Tag
    //#output(View process(HttpServletRequest, HttpServletResponse)): new NotEnoughSpaceView(process#8) num objects
    //#output(View process(HttpServletRequest, HttpServletResponse)): new RedirectView(process#11) num objects
    //#output(View process(HttpServletRequest, HttpServletResponse)): return_value
    //#new obj(View process(HttpServletRequest, HttpServletResponse)): new ForbiddenView(process#9)
    //#new obj(View process(HttpServletRequest, HttpServletResponse)): new NotEnoughSpaceView(process#8)
    //#new obj(View process(HttpServletRequest, HttpServletResponse)): new RedirectView(process#11)
    //#pre[1] (View process(HttpServletRequest, HttpServletResponse)): request != null
    //#pre[3] (View process(HttpServletRequest, HttpServletResponse)): this.__Tag == net/sourceforge/pebble/web/action/CopyFileAction
    //#pre[4] (View process(HttpServletRequest, HttpServletResponse)): this.model != null
    //#pre[5] (View process(HttpServletRequest, HttpServletResponse)): this.model.__Tag == net/sourceforge/pebble/web/model/Model
    //#pre[6] (View process(HttpServletRequest, HttpServletResponse)): this.model.data != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): java.util.HashMap:get(...)@63 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): javax.servlet.http.HttpServletRequest:getParameter(...)@70 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): javax.servlet.http.HttpServletRequest:getParameter(...)@73 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.FileManager:getFileMetaData(...)@76 != null
    //#presumption(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.FileManager:getFileMetaData(...)@89 != null
    //#post(View process(HttpServletRequest, HttpServletResponse)): return_value in Addr_Set{&new NotEnoughSpaceView(process#8),&new RedirectView(process#11),&new ForbiddenView(process#9)}
    //#post(View process(HttpServletRequest, HttpServletResponse)): new ForbiddenView(process#9) num objects <= 1
    //#post(View process(HttpServletRequest, HttpServletResponse)): new ForbiddenView(process#9).__Tag == net/sourceforge/pebble/web/view/ForbiddenView
    //#post(View process(HttpServletRequest, HttpServletResponse)): new NotEnoughSpaceView(process#8) num objects <= 1
    //#post(View process(HttpServletRequest, HttpServletResponse)): new RedirectView(process#11) num objects <= 1
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.util.HashMap:get
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:java.lang.String:replaceAll
    //#unanalyzed(View process(HttpServletRequest, HttpServletResponse)): Effects-of-calling:net.sourceforge.pebble.web.view.View
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): java.lang.String:equals(...)@82: {0}, {1}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): java.lang.String:equals(...)@93: {0}, {1}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): java.lang.String:equalsIgnoreCase(...)@78: {0}, {1}
    //#test_vector(View process(HttpServletRequest, HttpServletResponse)): net.sourceforge.pebble.domain.FileManager:hasEnoughSpace(...)@89: {0}, {1}
    String name = request.getParameter("name");
    String oldName = StringUtils.filterHTML(name);
    String type = request.getParameter("type");
    String path = request.getParameter("path");
    String newName = StringUtils.filterHTML(request.getParameter("newName"));
    String submit = request.getParameter("submit");

    FileManager fileManager = new FileManager(blog, type);
    //#copyfileaction.java:75: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.domain.FileManager(Blog, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.domain.FileManager(Blog, String)
    FileMetaData directory = fileManager.getFileMetaData(path);
    //#copyfileaction.java:76: Warning: method not available
    //#    -- call on FileMetaData net.sourceforge.pebble.domain.FileManager:getFileMetaData(String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: FileMetaData net.sourceforge.pebble.domain.FileManager:getFileMetaData(String)
    try {
      if (submit.equalsIgnoreCase("rename")) {
        fileManager.renameFile(path, name, newName);
    //#copyfileaction.java:79: Warning: method not available
    //#    -- call on File net.sourceforge.pebble.domain.FileManager:renameFile(String, String, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: File net.sourceforge.pebble.domain.FileManager:renameFile(String, String, String)

        // if it's a theme file, also rename the copy in blog.dir/theme
        if (type.equals(FileMetaData.THEME_FILE)) {
          fileManager = new FileManager(blog, FileMetaData.BLOG_DATA);
    //#copyfileaction.java:83: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.domain.FileManager(Blog, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.domain.FileManager(Blog, String)
          fileManager.renameFile("/theme" + path, name, newName);
    //#copyfileaction.java:84: Warning: method not available
    //#    -- call on File net.sourceforge.pebble.domain.FileManager:renameFile(String, String, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: File net.sourceforge.pebble.domain.FileManager:renameFile(String, String, String)
        }

        blog.info("File \"" + oldName + "\" renamed to \"" + newName + "\".");
    //#copyfileaction.java:87: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.domain.Blog:info(String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.domain.Blog:info(String)
      } else {
        if (FileManager.hasEnoughSpace(blog, fileManager.getFileMetaData(path, name).getSizeInKB())) {
    //#copyfileaction.java:89: Warning: method not available
    //#    -- call on FileMetaData net.sourceforge.pebble.domain.FileManager:getFileMetaData(String, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: FileMetaData net.sourceforge.pebble.domain.FileManager:getFileMetaData(String, String)
    //#copyfileaction.java:89: Warning: method not available
    //#    -- call on double net.sourceforge.pebble.domain.FileMetaData:getSizeInKB()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: double net.sourceforge.pebble.domain.FileMetaData:getSizeInKB()
    //#copyfileaction.java:89: Warning: method not available
    //#    -- call on bool net.sourceforge.pebble.domain.FileManager:hasEnoughSpace(Blog, double)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: bool net.sourceforge.pebble.domain.FileManager:hasEnoughSpace(Blog, double)
          fileManager.copyFile(path, name, newName);
    //#copyfileaction.java:90: Warning: method not available
    //#    -- call on File net.sourceforge.pebble.domain.FileManager:copyFile(String, String, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: File net.sourceforge.pebble.domain.FileManager:copyFile(String, String, String)

          // if it's a theme file, also create a copy in blog.dir/theme
          if (type.equals(FileMetaData.THEME_FILE)) {
            fileManager = new FileManager(blog, FileMetaData.BLOG_DATA);
    //#copyfileaction.java:94: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.domain.FileManager(Blog, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.domain.FileManager(Blog, String)
            fileManager.copyFile("/theme" + path, name, newName);
    //#copyfileaction.java:95: Warning: method not available
    //#    -- call on File net.sourceforge.pebble.domain.FileManager:copyFile(String, String, String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: File net.sourceforge.pebble.domain.FileManager:copyFile(String, String, String)
          }

          blog.info("File \"" + oldName + "\" copied to \"" + newName + "\".");
    //#copyfileaction.java:98: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.domain.Blog:info(String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.domain.Blog:info(String)
        } else {
          return new NotEnoughSpaceView();
    //#copyfileaction.java:100: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.web.view.impl.NotEnoughSpaceView()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.web.view.impl.NotEnoughSpaceView()
        }
      }
    } catch (IllegalFileAccessException e) {
      return new ForbiddenView();
    } catch (IOException ioe) {
      throw new ServletException(ioe);
    }

    return new RedirectView(blog.getUrl() + directory.getUrl());
    //#copyfileaction.java:109: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.domain.Blog:getUrl()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: String net.sourceforge.pebble.domain.Blog:getUrl()
    //#copyfileaction.java:109: Warning: method not available
    //#    -- call on String net.sourceforge.pebble.domain.FileMetaData:getUrl()
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: String net.sourceforge.pebble.domain.FileMetaData:getUrl()
    //#copyfileaction.java:109: Warning: method not available
    //#    -- call on void net.sourceforge.pebble.web.view.RedirectView(String)
    //#    severity: INFORMATIONAL
    //#    class: net.sourceforge.pebble.web.action.CopyFileAction
    //#    method: View process(HttpServletRequest, HttpServletResponse)
    //#    unanalyzed callee: void net.sourceforge.pebble.web.view.RedirectView(String)
    //#copyfileaction.java:109: end of method: View net.sourceforge.pebble.web.action.CopyFileAction.process(HttpServletRequest, HttpServletResponse)
  }

}    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction]
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.getLocalizedString(Ljava/lang/String;)Ljava/lang/String;
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.getModel()Lnet/sourceforge/pebble/web/model/Model;
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.getRoles(Ljavax/servlet/http/HttpServletRequest;)[Ljava/lang/String;
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.process(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)Lnet/sourceforge/pebble/web/view/View;
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.setModel(Lnet/sourceforge/pebble/web/model/Model;)V
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): net/sourceforge/pebble/web/action/AbstractFileAction.__Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction]
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): net/sourceforge/pebble/web/action/Action.__Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction]
    //#output(net.sourceforge.pebble.web.action.CopyFileAction__static_init): net/sourceforge/pebble/web/action/SecureAction.__Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction]
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): net/sourceforge/pebble/web/action/AbstractFileAction.__Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): net/sourceforge/pebble/web/action/Action.__Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): net/sourceforge/pebble/web/action/SecureAction.__Descendant_Table[net/sourceforge/pebble/web/action/CopyFileAction] == &__Dispatch_Table
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.getLocalizedString(Ljava/lang/String;)Ljava/lang/String; == &net/sourceforge/pebble/web/action/Action.getLocalizedString
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.getModel()Lnet/sourceforge/pebble/web/model/Model; == &net/sourceforge/pebble/web/action/Action.getModel
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.getRoles(Ljavax/servlet/http/HttpServletRequest;)[Ljava/lang/String; == &net/sourceforge/pebble/web/action/AbstractFileAction.getRoles
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.process(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)Lnet/sourceforge/pebble/web/view/View; == &process
    //#post(net.sourceforge.pebble.web.action.CopyFileAction__static_init): __Dispatch_Table.setModel(Lnet/sourceforge/pebble/web/model/Model;)V == &net/sourceforge/pebble/web/action/Action.setModel
    //#copyfileaction.java:: end of method: net.sourceforge.pebble.web.action.CopyFileAction.net.sourceforge.pebble.web.action.CopyFileAction__static_init
    //#copyfileaction.java:: end of class: net.sourceforge.pebble.web.action.CopyFileAction
