<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ include file="/portal/include/include_java.jsp" %>

<fmt:bundle basename="text.jsp.process.attachments.add_attachment">
<% /*
Page:     add_attachment.jsp
The action leading to this page goes straight here, so information is passed in
as request parameters.
taskId: Any number of task IDs.
processId: Self explanatory
reopenTaskAttachments: Set to true to have the cancel button go to the
task attachments view
canAddToProcess: Set to true if user is allowed to add attachments to the
tasks' parent processes instead of the tasks themselves
canAddToTask: self explanatory
origin: Used to set the forward for the action, the containerId in which it loads,
and the tab that the forward will switch to in the case of process details.  This
is all processed in a JSTL c:choose, check it out below
*/ %>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title><fmt:message key="AddAttachments"/></title>
  <c:set var="commentMaxSize"><asi:out value="${PROCESS_APP_CONFIG.attachmentCommentMaxSize}" encoding="html"/></c:set>

  <c:set var="TYPE_DOCUMENT"><%=com.appiancorp.suiteapi.common.ObjectTypeMapping.TYPE_DOCUMENT%></c:set>
  <c:set var="TYPE_FOLDER"><%=com.appiancorp.suiteapi.common.ObjectTypeMapping.TYPE_FOLDER%></c:set>
  <c:set var="TYPE_PAGE"><%=com.appiancorp.suiteapi.common.ObjectTypeMapping.TYPE_PAGE%></c:set>
  <c:set var="TYPE_DISCUSSION_THREAD"><%=com.appiancorp.suiteapi.common.ObjectTypeMapping.TYPE_DISCUSSION_THREAD%></c:set>
  <c:set var="TYPE_USER"><%=com.appiancorp.suiteapi.common.ObjectTypeMapping.TYPE_USER%></c:set>
  <c:set var="processIds" scope="page"><c:forEach var="currProcessId" items="${paramValues.processId}" varStatus="i"><c:if test="${i.index != 0}">,</c:if><c:out value="${currProcessId}" /></c:forEach></c:set>
  <c:set var="taskIds" scope="page"><c:forEach var="currTaskId" items="${paramValues.taskId}" varStatus="i"><c:if test="${i.index != 0}">,</c:if><c:out value="${currTaskId}" /></c:forEach></c:set>

  <c:remove var="containerId"/>
  <c:set var="forward" value="processdetail" />
  <c:choose><c:when test="${param.origin == 'inChannelQT'}">
    <c:set var="containerId" value="asiDialog" />
  <c:set var="forward" value="taskAttachments" />
  </c:when><c:when test="${param.origin == 'reportToolbar'}">
    <c:set var="forward" value="report" />
  </c:when><c:when test="${param.origin == 'taskDetailAttachments'}">
    <c:set var="containerId" value="taskAttachments" />
    <c:set var="forward" value="taskdetail" />
  </c:when><c:when test="${param.origin == 'processAttachments'}">
    <c:set var="containerId" value="attachments" />
    <c:set var="showTab" value="attachmentsTab" />
  </c:when><c:when test="${param.origin == 'currentTask'}">
  </c:when><c:when test="${param.origin == 'nodes'}">
    <c:set var="showTab" value="nodesTab" />
  </c:when><c:when test="${param.origin == 'processactions'}">
    <c:set var="showTab" value="attachmentsTab" />
  </c:when>
  </c:choose>

  <c:set var="attachmentImages" value="/process/attachments/img"/>
</head>
<body>
<c:set var="attachmentMessage">
  <c:choose>
    <c:when test="${param.addExtraAttachments}" ><fmt:message key="YourAttachmentWasSuc"/></c:when>
    <c:when test="${param.areThereErrors == 'true'}"><fmt:message key="ThereWasAnErrorAddin"/></c:when>
  </c:choose>
</c:set>

<c:set var="offlineDocUrl"><asi:url value="${attachmentImages}/offlineDoc2.gif" decorator="main"/></c:set>
<c:set var="internalDocUrl"><asi:url value="${attachmentImages}/internalDoc2.gif" decorator="main"/></c:set>
<c:set var="folderUrl"><asi:url value="${attachmentImages}/folder2.gif" decorator="main"/></c:set>
<c:set var="portalPageUrl"><asi:url value="${attachmentImages}/portalPage2.gif" decorator="main"/></c:set>
<c:set var="threadUrl"><asi:url value="${attachmentImages}/thread2.gif" decorator="main"/></c:set>
<c:set var="userUrl"><asi:url value="${attachmentImages}/user2.gif" decorator="main"/></c:set>
<c:set var="internetAddressUrl"><asi:url value="${attachmentImages}/internetAddress2.gif" decorator="main"/></c:set>

<div class="attachmentMessage"><c:out value="${attachmentMessage}"/></div>
<ul id="attachmentTabList" class="aVTabs">
  <li id="defaultSel" class="current" onclick="toggleType(this,'offlineDoc');return false;">
    <img id="offlineDocImg" src="<asi:out value='${offlineDocUrl}' encoding='html'/>" alt='<fmt:message key="OfflineDocument"/>' />
    <a href="#"><fmt:message key="AFileOnMyComputer"/></a>
  </li><li class="" onclick="toggleType(this,'internalDoc');return false;">
    <img id="internalDocImg" src="<asi:out value='${internalDocUrl}' encoding='html'/>" alt='<fmt:message key="OnlineDocument"/>' />
    <a href="#" ><fmt:message key="AnOnlineDocument"/></a>
  </li><li class="" onclick="toggleType(this,'folder');return false;">
    <img id="folderImg" src="<asi:out value='${folderUrl}' encoding='html'/>" alt='<fmt:message key="DocumentFolder"/>' />
    <a href="#" ><fmt:message key="ADocumentFolder"/></a>
  </li><li class="" onclick="toggleType(this,'portalPage');return false;">
    <img id="portalPageImg" src="<asi:out value='${portalPageUrl}' encoding='html'/>" alt='<fmt:message key="PortalPage"/>' />
    <a href="#" ><fmt:message key="APortalPage"/></a>
  </li><li class="" onclick="toggleType(this,'thread');return false;">
    <img id="threadImg" src="<asi:out value='${threadUrl}' encoding='html'/>" alt='<fmt:message key="DiscussionTopic"/>' />
    <a href="#" ><fmt:message key="ADiscussionTopic"/></a>
  </li><li class="" onclick="toggleType(this,'user');return false;">
    <img id="userImg" src="<asi:out value='${userUrl}' encoding='html'/>" alt='<fmt:message key="UsersProfile"/>' />
    <a href="#" ><fmt:message key="AUsersProfile"/></a>
  </li><li class="" onclick="toggleType(this,'internetAddress');return false;">
    <img id="internetAddressImg" src="<asi:out value='${internetAddressUrl}' encoding='html'/>" alt='<fmt:message key="InternetAddress"/>' />
    <a href="#" ><fmt:message key="AnInternetAddress"/></a>
  </li>
</ul>
<div id="attachmentTabContent"  class="aVTabContentContainer">
  <div id="offlineDoc">
    <div id="offlineFormContainer" class="asiformParagraph">
      <asi:form enctype="multipart/form-data" title="SelectAFileToUploadA" action="/process/addprocessattachment.do?showTab=${showTab}&addExtraAttachments=true&forward=${forward}&canAddToProcess=${param.canAddToProcess}&canAddToTask=${param.canAddToTask}&addAttachments=${param.addAttachments}&removeAttachments=${param.removeAttachments}&origin=${param.origin}" name="kmNewFileForm" containerId="${containerId}" decorator="background" update="true">
        <asi:input required="true" type="singlepicker3" legend="Destination" instructions="PleaseChooseAnOnline" pickerType="folders" property="attachmentFolderId" label="Folder"  />
        <input type="hidden" name="comment" />
        <input type="hidden" name="objectType" value='<c:out value="${TYPE_DOCUMENT}"/>'/>
        <input type="hidden" name="processId" value="<c:out value='${processIds}' />" />
        <input type="hidden" name="taskId" value="<c:out value='${taskIds}' />" />
        <c:if test="${!empty kmNewFileForm.folder && kmNewFileForm.folder.changesRequireApproval == true}">
          <li>
            <div>
              <fmt:message key="appian.ac.folder.createtext1.displayname" />
              <fmt:message key="appian.ac.folder.createtext2.displayname" />
            </div>
          </li>
        </c:if>

        <asi:fieldset legend="NewDocumentToUpload"  id="fieldset1" >
          <asi:input type="file" property="file" label="File" required="true" onchange="setName(this)" onblur="setName(this)" />
          <asi:input type="text" label="Name" property="fileName" required="true" />
          <asi:input type="textarea" label="Description" property="fileDesc" required="false" />
        </asi:fieldset>
      </asi:form>

    </div>
  </div>

  <div id="internalDoc">
    <div class="asiformParagraph">
      <asi:form name="internalDocForm" title="SelectADocumentToAtt">
        <asi:input required="true" type="singlepicker3" pickerType="documents" legend="Document" property="attach_internalDoc_Id" />
        <input type="hidden" name="objectType" value='<c:out value="${TYPE_DOCUMENT}"/>'/>
      </asi:form>
    </div>
  </div>

  <div id="folder">
    <div class="asiformParagraph">
      <asi:form name="folderForm" title="SelectAFolderToAttac">
        <asi:input required="true" type="singlepicker3" pickerType="folders" legend="Folder_2" property="attach_folder_Id" />
        <input type="hidden" name="objectType" value='<c:out value="${TYPE_FOLDER}"/>'/>
      </asi:form>
    </div>
  </div>

  <div id="portalPage">
    <div class="asiformParagraph">
      <asi:form name="portalPageForm" title="SelectAPortalPageToA">
        <asi:input required="true" type="singlepicker3" pickerType="portal_pages" legend="Page" property="attach_portalPage_Id" />
        <input type="hidden" name="objectType" value='<c:out value="${TYPE_PAGE}"/>'/>
      </asi:form>
    </div>
  </div>

  <div id="thread">
    <div class="asiformParagraph">
      <asi:form name="threadForm" title="SelectADicussionTopi">
        <asi:input required="true" type="singlepicker3" pickerType="topics" legend="Topic" property="attach_thread_Id" />
        <input type="hidden" name="objectType" value='<c:out value="${TYPE_DISCUSSION_THREAD}"/>'/>
      </asi:form>
    </div>
  </div>

  <div id="user">
    <div class="asiformParagraph">
      <asi:form name="userForm" title="SelectAUsersProfileT" >
        <asi:input required="true" type="singlepicker3" pickerType="users" legend="User" property="attach_user_Id" />
        <input type="hidden" name="objectType" value='<c:out value="${TYPE_USER}"/>'/>
      </asi:form>
    </div>
  </div>

  <div id="internetAddress">
    <div class="asiformParagraph">
      <asi:form name="internetAddressForm" title="EnterAnInternetAddre">
        <asi:input required="true" type="text" value="http://" legend="Location" property="attach_link_url"/>
        <asi:input required="true" type="text" legend="Label" maxlength="35" property="attach_link_label"/>
        <input type="hidden" name="objectType" value=''/>
      </asi:form>
    </div>
  </div>

</div>
<div style="clear: both">&nbsp;</div>

<div class="attachmentsCommentField">
  <asi:form  enctype="multipart/form-data" name="attachmentForm" action="/process/addprocessattachment.do?showTab=${showTab}&addExtraAttachments=true&forward=${forward}&canAddToProcess=${param.canAddToProcess}&canAddToTask=${param.canAddToTask}&addAttachments=${param.addAttachments}&removeAttachments=${param.removeAttachments}&origin=${param.origin}" containerId="${containerId}" decorator="background" update="true" useTextBundle="false">
  <asi:input type="textarea" property="comment" label="Comments" maxlength="${commentMaxSize}" />
  <c:if test="${param.canAddToProcess}">
    <c:choose>
      <c:when test="${param.canAddToTask}">
        <asi:input type="checkbox" property="isAddNoteToProcess" label="nolabel" value="true">
          <asi:inputItem value="true" label="AttachToThisProcessI"/>
        </asi:input>
      </c:when>
      <c:otherwise>
        <asi:input type="checkbox" onclick="return false;" value="true" disabled="true" property="isAddNoteToProcess" label="nolabel" >
          <asi:inputItem value="true" label="AttachToThisProcessI"/>
        </asi:input>
      </c:otherwise>
    </c:choose>
  </c:if>
    <asi:buttonset>
    <% /* for internalDoc,folder,portalPage,thread */ %>
    <input type="hidden" name="objectId" value="" />
    <% /* for user */ %>
    <input type="hidden" name="objectName" value="" />
    <% /* for external address */ %>
    <input type="hidden" name="urlValue" value="" />
    <input type="hidden" name="urlName" value="" />
    <% /* the rest applies to all attachments */ %>
    <input type="hidden" name="processId" value="<c:out value="${processIds}"/>"/>
    <input type="hidden" name="taskId" value="<c:out value="${taskIds}"/>"/>
    <input type="hidden" name="objectType" value=""/>
    <asi:button value="AddAttachment" onclick="if(populateAttachmentForm()) addAttachment();" />
        
    <c:choose>
      <c:when test="${param.addExtraAttachments}">
        <c:set var="buttonValue" value="Done" />
      </c:when>
      <c:otherwise>
        <c:set var="buttonValue" value="Cancel" />
      </c:otherwise>
    </c:choose>    
    <c:choose>
      <c:when test="${param.reopenTaskAttachments == 'true'}">
        <c:set var="processViewTaskAttachmentsUrl">
          <asi:url value='/process/viewtaskattachments.do' decorator='background' containerId='asiDialog'>
            <asi:param name="taskId" value="${param.taskId}"/>
            <asi:param name="processId" value="${param.processId}"/>
            <asi:param name="canAddToProcess" value="${param.canAddToProcess}"/>
            <asi:param name="canAddToTask" value="${param.canAddToTask}"/>
            <asi:param name="addAttachments" value="${param.addAttachments}"/>
            <asi:param name="removeAttachments" value="${param.removeAttachments}"/>
            <asi:param name="origin" value="${param.origin}"/>
          </asi:url>
        </c:set>
       <asi:button onclick="backgroundPage('${processViewTaskAttachmentsUrl}'); return false;" value="${buttonValue}" />
      </c:when>
      <c:otherwise>
        <asi:button onclick="DIALOG.hide(this); return false;" value="${buttonValue}" />
      </c:otherwise>
    </c:choose>

    </asi:buttonset>
  </asi:form>
</div>

<script type="text/javascript">
  var currentObjectType = null;
  var submitForm = document.attachmentForm;
  importStyleSheetWithSkin('/components/css/verticalTabs.css');
  importStyleSheetWithSkin("/process/css/attachments.css");
  if (executeJavaScript()) {
    getObject('defaultSel').onclick();
  }

  function toggleType(listItem, objectType){
    asi.selectTab(listItem, objectType);
    var previousObjectType = currentObjectType;
    currentObjectType = objectType;
    if(currentObjectType != previousObjectType){
      getObject(currentObjectType+'Img').src = rewriteURL('<asi:out value="${attachmentImages}/" encoding="js-html"/>' + encodeURIComponent(currentObjectType) + '1.gif');
      if(previousObjectType){
        getObject(previousObjectType+'Img').src = rewriteURL('<asi:out value="${attachmentImages}/" encoding="js-html"/>' + encodeURIComponent(previousObjectType) + '2.gif');
        if(previousObjectType == 'offlineDoc'){
          newAttachmentForm =document.kmNewFileForm;
        } else if(previousObjectType=='internetAddress'){
          newAttachmentForm =document.internetAddressForm;
        } else {
          newAttachmentForm =eval('document.'+previousObjectType+'Form');
        }
        clearErrors(newAttachmentForm.elements);
      }
    }
  }
  function setName(object){
    getInputsByName("fileName", object.newAttachmentForm)[0].value = getFileName(object.value);
  }
  function getFileName( filePath ){
    var temp;
    if(filePath.lastIndexOf(".") > filePath.lastIndexOf("\\")+1){
     temp = filePath.substring( filePath.lastIndexOf("\\")+1, filePath.lastIndexOf(".") );
    }else{
     temp = filePath.substring( filePath.lastIndexOf("\\")+1);
    }
    var temp2 = temp.substring( temp.lastIndexOf("/")+1);
    return temp2;
  }
  function populateAttachmentForm(){
    if(currentObjectType=='offlineDoc'){
      newAttachmentForm = document.kmNewFileForm;
      if(standardValidate(newAttachmentForm)){
        newAttachmentForm.comment.value = submitForm.comment.value;
        return true;
      } else return false;
    } else if(currentObjectType=='internetAddress'){
      newAttachmentForm = document.internetAddressForm;
      if(standardValidate(newAttachmentForm)){
        submitForm.objectType.value = newAttachmentForm.objectType.value;
        var urlVal = newAttachmentForm.attach_link_url.value;
        if(urlVal.indexOf("http://") == -1 && urlVal.indexOf("https://") == -1 && urlVal.indexOf("ftp://") == -1) {
          urlVal = "http://" + urlVal;
        }
        submitForm.urlValue.value = urlVal;
        submitForm.urlName.value = newAttachmentForm.attach_link_label.value;
        return true;
      } else return false;
    } else {
      newAttachmentForm =eval('document.'+currentObjectType+'Form');
      if(standardValidate(newAttachmentForm)){
        submitForm.objectType.value = newAttachmentForm.objectType.value;
        if(currentObjectType == 'user') submitForm.objectName.value = eval('document.'+currentObjectType+'Form.attach_'+currentObjectType+'_Id_.value');
        else submitForm.objectId.value=eval('document.'+currentObjectType+'Form.attach_'+currentObjectType+'_Id_.value');
        return true;
      } else return false;
    }
  }
  function addAttachment(){
    newAttachmentForm = (currentObjectType=='offlineDoc') ? document.kmNewFileForm : submitForm;
    <c:if test="${!empty taskIds}">
      if(!document.attachmentForm.isAddNoteToProcess || (!document.attachmentForm.isAddNoteToProcess.checked)) {
        newAttachmentForm.action = newAttachmentForm.action.replace(/addprocessattachment/, 'addtaskattachment');
      }
    </c:if>
    /*form.comment.value=escape(submitForm.comment.value);*/
    newAttachmentForm.submit();
    LOADING.show();
  }
  function reloadAttachmentPopup(areThereErrors){
    DIALOG.hide();
    if(areThereErrors) return;
    backgroundPage('<asi:url value="/process/addattachmentpopup.do" decorator="background" containerId="asiDialog"><asi:param name="origin" value="${param.origin}"/><asi:param name="canAddToProcess" value="${param.canAddToProcess}"/><asi:param name="canAddToTask" value="${param.canAddToTask}"/><asi:param name="showTab" value="${showTab}"/><asi:param name="reopenTaskAttachments" value="{param.reopenTaskAttachments}"/></asi:url><c:forEach var="currProcessId" items="${paramValues.processId}">&processId=<asi:out encoding="js" value="${currProcessId}" /></c:forEach><c:forEach var="currTaskId" items="${paramValues.taskId}">&taskId=<asi:out encoding="js" value="${currTaskId}" /></c:forEach>&areThereErrors=' + areThereErrors + '&addExtraAttachments=' + !areThereErrors);
  }
</script>
</body>
</html>
</fmt:bundle>