-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathOpenKMServiceImpl.java
More file actions
189 lines (168 loc) · 6.33 KB
/
OpenKMServiceImpl.java
File metadata and controls
189 lines (168 loc) · 6.33 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
* AMRIT – Accessible Medical Records via Integrated Technology
* Integrated EHR (Electronic Health Records) Solution
*
* Copyright (C) "Piramal Swasthya Management and Research Institute"
*
* This file is part of AMRIT.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
package com.iemr.common.utils.km.openkm;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.List;
import com.iemr.common.utils.config.ConfigProperties;
import com.iemr.common.utils.km.KMService;
import com.openkm.sdk4j.OKMWebservices;
import com.openkm.sdk4j.bean.Document;
import com.openkm.sdk4j.bean.Folder;
import com.openkm.sdk4j.exception.AccessDeniedException;
import com.openkm.sdk4j.exception.AutomationException;
import com.openkm.sdk4j.exception.DatabaseException;
import com.openkm.sdk4j.exception.ExtensionException;
import com.openkm.sdk4j.exception.FileSizeExceededException;
import com.openkm.sdk4j.exception.ItemExistsException;
import com.openkm.sdk4j.exception.LockException;
import com.openkm.sdk4j.exception.PathNotFoundException;
import com.openkm.sdk4j.exception.RepositoryException;
import com.openkm.sdk4j.exception.UnknowException;
import com.openkm.sdk4j.exception.UnsupportedMimeTypeException;
import com.openkm.sdk4j.exception.UserQuotaExceededException;
import com.openkm.sdk4j.exception.VersionException;
import com.openkm.sdk4j.exception.VirusDetectedException;
import com.openkm.sdk4j.exception.WebserviceException;
import jakarta.annotation.PostConstruct;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Service;
@Service
public class OpenKMServiceImpl implements KMService {
private final Logger logger = LoggerFactory.getLogger(this.getClass().getName());
@Value("${km-base-url}")
private String url;
@Value("${km-username}")
private String username;
@Value("${km-password}")
private String password;
@Value("${km-root-path}")
private String kmRootPath;
@Value("${km-guest-user}")
private String guestUser;
@Value("${km-guest-password}")
private String guestPassword;
public OpenKMServiceImpl() {
}
private OKMWebservices connector;
@PostConstruct
public void init() {
logger.info("KM URL={}",url);
connector = OpenKMConnector.initialize(url, username, password);
}
@Override
public String getDocumentRoot() {
String response = null;
this.init();
try {
Folder rootFolder = connector.getRootFolder();
response = rootFolder.getPath();
} catch (PathNotFoundException | RepositoryException | DatabaseException | UnknowException
| WebserviceException e) {
logger.error(e.getMessage());
} catch (Exception e) {
logger.error(e.getMessage());
}
return response;
}
public String uploadFile() {
String response = null;
this.init();
try {
response = connector.checkin("", new FileInputStream(""), "").toString();
} catch (FileSizeExceededException | UserQuotaExceededException | VirusDetectedException | LockException
| VersionException | PathNotFoundException | AccessDeniedException | RepositoryException | IOException
| DatabaseException | ExtensionException | AutomationException | UnknowException
| WebserviceException e) {
logger.error(e.getMessage());
}
return response;
}
@Override
public String createDocument(String documentPath, String filepath) {
String response = null;
this.init();
try {
FileInputStream file = new FileInputStream(filepath);
Document doc = connector.createDocumentSimple(kmRootPath + documentPath, file);
response = doc.getUuid();
} catch (PathNotFoundException e) {
createFolder(e.getMessage());
response = createDocument(documentPath, filepath);
} catch (IOException | UnsupportedMimeTypeException | FileSizeExceededException | UserQuotaExceededException
| VirusDetectedException | ItemExistsException | AccessDeniedException | RepositoryException
| DatabaseException | ExtensionException | AutomationException | UnknowException
| WebserviceException e) {
logger.error(e.getMessage());
}
return response;
}
public String createFolder(String path) {
String response = null;
this.init();
String[] folders = path.split("/");
String basePath = "";
try {
for (int index = 1; index < folders.length - 1; index++) {
basePath += "/" + folders[index];
Folder folder = new Folder();
folder.setPath(basePath + "/" + folders[index + 1]);
List<Folder> childrens = connector.getFolderChildren(basePath);
boolean exists = false;
for (Folder folder2 : childrens) {
if (folder2.getPath().toString().equals(folder.getPath().toString())) {
exists = true;
break;
}
}
createFolder(folder.getPath(), exists);
}
} catch (PathNotFoundException | AccessDeniedException | RepositoryException | ItemExistsException
| DatabaseException | ExtensionException | AutomationException | UnknowException
| WebserviceException e) {
logger.error(e.getMessage());
}
return response;
}
private void createFolder(String path, boolean exists)
throws AccessDeniedException, RepositoryException, PathNotFoundException, ItemExistsException,
DatabaseException, ExtensionException, AutomationException, UnknowException, WebserviceException {
if (!exists) {
Folder folder = connector.createFolderSimple(path);
}
}
public String deleteDocument(String documentID) {
String response = "failure";
this.init();
try {
connector.deleteDocument(documentID);
response = "success";
} catch (AccessDeniedException | RepositoryException | PathNotFoundException | LockException | DatabaseException
| ExtensionException | UnknowException | WebserviceException e) {
logger.error(e.getMessage());
}
return response;
}
}