1 package org.kuali.ole;
2
3 import org.apache.commons.io.FileUtils;
4 import org.apache.commons.io.IOUtils;
5
6 import java.io.*;
7 import java.net.URISyntaxException;
8 import java.net.URL;
9
10
11
12
13
14
15
16
17 public class ResourceFilesHandler {
18 public static final String OLE_AGREEMENT_MAINTENANCE_DOC_TYPE_XML = "OleAgreementMaintenanceDocType.xml";
19 public static final String OLE_CATALOG_DOC_TYPE_XML = "OleCatalogDocType.xml";
20 public static final String OLE_DELIVER_DOC_TYPE_XML = "OleDeliverDocType.xml";
21 public static final String OLE_LICENSE_REQUEST_DOC_TYPES_XML = "OleLicenseRequestDocTypes.xml";
22 public static final String OLE_PATRON_DOC_TYPE_XML = "OlePatronDocType.xml";
23 public static final String OLE_REFERENCE_DOC_TYPE_XML = "OleReferenceDocType.xml";
24 public static final String OLE_FEE_TYPE_MAINTENANCE_DOC_TYPE_XML = "OleFeeTypeMaintenanceDocType.xml";
25 public static final String OLE_SELECT_DOC_TYPE_XML = "OleSelectDocType.xml";
26 private String folderPath;
27
28 public void copyResourcesToTarget() {
29 String tmpDir = System.getProperty("java.io.tmpdir");
30 InputStream oleAgreementMaintDocTypeResourceStream = getClass().getResourceAsStream(OLE_AGREEMENT_MAINTENANCE_DOC_TYPE_XML);
31 InputStream oleCatalogDocTypeResourceStream = getClass().getResourceAsStream(OLE_CATALOG_DOC_TYPE_XML);
32 InputStream oleDeliverDocTypeResourceStream = getClass().getResourceAsStream(OLE_DELIVER_DOC_TYPE_XML);
33 InputStream oleLicenseRequestDocTypesResourceStream = getClass().getResourceAsStream(OLE_LICENSE_REQUEST_DOC_TYPES_XML);
34 InputStream olePatronDocTypeResourceStream = getClass().getResourceAsStream(OLE_PATRON_DOC_TYPE_XML);
35 InputStream oleReferenceDocTypeResourceStream = getClass().getResourceAsStream(OLE_REFERENCE_DOC_TYPE_XML);
36 InputStream oleFeeTypeMaintenanceDocTypeResourceStream = getClass().getResourceAsStream(OLE_FEE_TYPE_MAINTENANCE_DOC_TYPE_XML);
37 InputStream oleSelectDocTypeResourceStream = getClass().getResourceAsStream(OLE_SELECT_DOC_TYPE_XML);
38
39 File oleAgreementMaintDocTypeXML = new File(tmpDir, OLE_AGREEMENT_MAINTENANCE_DOC_TYPE_XML);
40 File oleCatalogDocTypeXML = new File(tmpDir, OLE_CATALOG_DOC_TYPE_XML);
41 File oleDeliverDocTypeXML = new File(tmpDir, OLE_DELIVER_DOC_TYPE_XML);
42 File oleLicenseRequestDocTypeXML = new File(tmpDir, OLE_LICENSE_REQUEST_DOC_TYPES_XML);
43 File olePatronDocTypeXML = new File(tmpDir, OLE_PATRON_DOC_TYPE_XML);
44 File oleReferenceDocTypeXML = new File(tmpDir, OLE_REFERENCE_DOC_TYPE_XML);
45 File oleFeeTypeMaintenanceDocTypeXML = new File(tmpDir, OLE_FEE_TYPE_MAINTENANCE_DOC_TYPE_XML);
46 File oleSelectDocTypeXML = new File(tmpDir,OLE_SELECT_DOC_TYPE_XML);
47 File destDir = new File(getFolderPath());
48
49 try {
50 IOUtils.copy(oleAgreementMaintDocTypeResourceStream, new FileOutputStream(oleAgreementMaintDocTypeXML));
51 FileUtils.copyFileToDirectory(oleAgreementMaintDocTypeXML, destDir);
52 IOUtils.copy(oleCatalogDocTypeResourceStream, new FileOutputStream(oleCatalogDocTypeXML));
53 FileUtils.copyFileToDirectory(oleCatalogDocTypeXML, destDir);
54 IOUtils.copy(oleDeliverDocTypeResourceStream, new FileOutputStream(oleDeliverDocTypeXML));
55 FileUtils.copyFileToDirectory(oleDeliverDocTypeXML, destDir);
56 IOUtils.copy(oleLicenseRequestDocTypesResourceStream, new FileOutputStream(oleLicenseRequestDocTypeXML));
57 FileUtils.copyFileToDirectory(oleLicenseRequestDocTypeXML, destDir);
58 IOUtils.copy(olePatronDocTypeResourceStream, new FileOutputStream(olePatronDocTypeXML));
59 FileUtils.copyFileToDirectory(olePatronDocTypeXML, destDir);
60 IOUtils.copy(oleReferenceDocTypeResourceStream, new FileOutputStream(oleReferenceDocTypeXML));
61 FileUtils.copyFileToDirectory(oleReferenceDocTypeXML, destDir);
62 IOUtils.copy(oleFeeTypeMaintenanceDocTypeResourceStream, new FileOutputStream(oleFeeTypeMaintenanceDocTypeXML));
63 FileUtils.copyFileToDirectory(oleFeeTypeMaintenanceDocTypeXML, destDir);
64 IOUtils.copy(oleSelectDocTypeResourceStream, new FileOutputStream(oleSelectDocTypeXML));
65 FileUtils.copyFileToDirectory(oleSelectDocTypeXML, destDir);
66
67 } catch (FileNotFoundException e) {
68 e.printStackTrace();
69 } catch (IOException e) {
70 e.printStackTrace();
71 }
72 }
73
74 public String getFolderPath() {
75 return folderPath;
76 }
77
78 public void setFolderPath(String folderPath) {
79 this.folderPath = folderPath;
80 }
81 }