weblib: set custom covers
[fanfix.git] / src / be / nikiroo / fanfix / library / WebLibrary.java
1 package be.nikiroo.fanfix.library;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.io.InputStream;
6 import java.net.URL;
7 import java.util.ArrayList;
8 import java.util.HashMap;
9 import java.util.List;
10 import java.util.Map;
11
12 import org.json.JSONArray;
13 import org.json.JSONObject;
14
15 import be.nikiroo.fanfix.Instance;
16 import be.nikiroo.fanfix.data.Chapter;
17 import be.nikiroo.fanfix.data.JsonIO;
18 import be.nikiroo.fanfix.data.MetaData;
19 import be.nikiroo.fanfix.data.Paragraph;
20 import be.nikiroo.fanfix.data.Paragraph.ParagraphType;
21 import be.nikiroo.fanfix.data.Story;
22 import be.nikiroo.utils.IOUtils;
23 import be.nikiroo.utils.Image;
24 import be.nikiroo.utils.Progress;
25 import be.nikiroo.utils.Version;
26
27 /**
28 * This {@link BasicLibrary} will access a remote server to list the available
29 * stories, and download the ones you try to load to the local directory
30 * specified in the configuration.
31 * <p>
32 * This remote library uses http:// or https://.
33 *
34 * @author niki
35 */
36 public class WebLibrary extends BasicLibrary {
37 private String host;
38 private int port;
39 private final String key;
40 private final String subkey;
41
42 // informative only (server will make the actual checks)
43 private boolean rw;
44
45 /**
46 * Create a {@link RemoteLibrary} linked to the given server.
47 * <p>
48 * Note that the key is structured:
49 * <tt><b><i>xxx</i></b>(|<b><i>yyy</i></b>|<b>wl</b>)(|<b>rw</b>)</tt>
50 * <p>
51 * Note that anything before the first pipe (<tt>|</tt>) character is
52 * considered to be the encryption key, anything after that character is
53 * called the subkey (including the other pipe characters and flags!).
54 * <p>
55 * This is important because the subkey (including the pipe characters and
56 * flags) must be present as-is in the server configuration file to be
57 * allowed.
58 * <ul>
59 * <li><b><i>xxx</i></b>: the encryption key used to communicate with the
60 * server</li>
61 * <li><b><i>yyy</i></b>: the secondary key</li>
62 * <li><b>rw</b>: flag to allow read and write access if it is not the
63 * default on this server</li>
64 * <li><b>wl</b>: flag to allow access to all the stories (bypassing the
65 * whitelist if it exists)</li>
66 * </ul>
67 * <p>
68 * Some examples:
69 * <ul>
70 * <li><b>my_key</b>: normal connection, will take the default server
71 * options</li>
72 * <li><b>my_key|agzyzz|wl</b>: will ask to bypass the white list (if it
73 * exists)</li>
74 * <li><b>my_key|agzyzz|rw</b>: will ask read-write access (if the default
75 * is read-only)</li>
76 * <li><b>my_key|agzyzz|wl|rw</b>: will ask both read-write access and white
77 * list bypass</li>
78 * </ul>
79 *
80 * @param key
81 * the key that will allow us to exchange information with the
82 * server
83 * @param host
84 * the host to contact or NULL for localhost
85 * @param port
86 * the port to contact it on
87 */
88 public WebLibrary(String key, String host, int port) {
89 int index = -1;
90 if (key != null) {
91 index = key.indexOf('|');
92 }
93
94 if (index >= 0) {
95 this.key = key.substring(0, index);
96 this.subkey = key.substring(index + 1);
97 } else {
98 this.key = key;
99 this.subkey = "";
100 }
101
102 this.rw = subkey.contains("|rw");
103
104 this.host = host;
105 this.port = port;
106
107 // TODO: not supported yet
108 this.rw = false;
109 }
110
111 public Version getVersion() {
112 try {
113 InputStream in = post(WebLibraryUrls.VERSION_URL);
114 try {
115 return new Version(IOUtils.readSmallStream(in));
116 } finally {
117 in.close();
118 }
119 } catch (IOException e) {
120 }
121
122 return new Version();
123 }
124
125 @Override
126 public Status getStatus() {
127 try {
128 post(WebLibraryUrls.INDEX_URL).close();
129 } catch (IOException e) {
130 try {
131 post("/style.css").close();
132 return Status.UNAUTHORIZED;
133 } catch (IOException ioe) {
134 return Status.UNAVAILABLE;
135 }
136 }
137
138 return rw ? Status.READ_WRITE : Status.READ_ONLY;
139 }
140
141 @Override
142 public String getLibraryName() {
143 return (rw ? "[READ-ONLY] " : "") + host + ":" + port + " ("
144 + getVersion() + ")";
145 }
146
147 @Override
148 public Image getCover(String luid) throws IOException {
149 InputStream in = post(WebLibraryUrls.getStoryUrlCover(luid));
150 try {
151 return new Image(in);
152 } finally {
153 in.close();
154 }
155 }
156
157 @Override
158 public Image getCustomSourceCover(String source) throws IOException {
159 InputStream in = post(WebLibraryUrls.getCoverUrlSource(source));
160 try {
161 return new Image(in);
162 } finally {
163 in.close();
164 }
165 }
166
167 @Override
168 public Image getCustomAuthorCover(String author) throws IOException {
169 InputStream in = post(WebLibraryUrls.getCoverUrlAuthor(author));
170 try {
171 return new Image(in);
172 } finally {
173 in.close();
174 }
175 }
176
177 @Override
178 public void setSourceCover(String source, String luid) throws IOException {
179 Map<String, String> post = new HashMap<String, String>();
180 post.put("luid", luid);
181 post(WebLibraryUrls.getCoverUrlSource(source), post).close();
182 }
183
184 @Override
185 public void setAuthorCover(String author, String luid) throws IOException {
186 Map<String, String> post = new HashMap<String, String>();
187 post.put("luid", luid);
188 post(WebLibraryUrls.getCoverUrlAuthor(author), post).close();
189 }
190
191 @Override
192 public synchronized Story getStory(final String luid, Progress pg)
193 throws IOException {
194
195 // TODO: pg
196
197 Story story;
198 InputStream in = post(WebLibraryUrls.getStoryUrlJson(luid));
199 try {
200 JSONObject json = new JSONObject(IOUtils.readSmallStream(in));
201 story = JsonIO.toStory(json);
202 } finally {
203 in.close();
204 }
205
206 story.getMeta().setCover(getCover(luid));
207 int chapNum = 1;
208 for (Chapter chap : story) {
209 int number = 1;
210 for (Paragraph para : chap) {
211 if (para.getType() == ParagraphType.IMAGE) {
212 InputStream subin = post(
213 WebLibraryUrls.getStoryUrl(luid, chapNum, number));
214 try {
215 para.setContentImage(new Image(subin));
216 } finally {
217 subin.close();
218 }
219 }
220
221 number++;
222 }
223
224 chapNum++;
225 }
226
227 return story;
228 }
229
230 @Override
231 protected List<MetaData> getMetas(Progress pg) throws IOException {
232 List<MetaData> metas = new ArrayList<MetaData>();
233 InputStream in = post(WebLibraryUrls.LIST_URL_METADATA);
234 JSONArray jsonArr = new JSONArray(IOUtils.readSmallStream(in));
235 for (int i = 0; i < jsonArr.length(); i++) {
236 JSONObject json = jsonArr.getJSONObject(i);
237 metas.add(JsonIO.toMetaData(json));
238 }
239
240 return metas;
241 }
242
243 @Override
244 // Could work (more slowly) without it
245 public MetaData imprt(final URL url, Progress pg) throws IOException {
246 if (true)
247 throw new IOException("Not implemented yet");
248
249 // Import the file locally if it is actually a file
250
251 if (url == null || url.getProtocol().equalsIgnoreCase("file")) {
252 return super.imprt(url, pg);
253 }
254
255 // Import it remotely if it is an URL
256
257 // TODO
258 return super.imprt(url, pg);
259 }
260
261 @Override
262 // Could work (more slowly) without it
263 protected synchronized void changeSTA(final String luid,
264 final String newSource, final String newTitle,
265 final String newAuthor, Progress pg) throws IOException {
266 // TODO
267 super.changeSTA(luid, newSource, newTitle, newAuthor, pg);
268 }
269
270 @Override
271 protected void updateInfo(MetaData meta) {
272 // Will be taken care of directly server side
273 }
274
275 @Override
276 protected void invalidateInfo(String luid) {
277 // Will be taken care of directly server side
278 }
279
280 // The following methods are only used by Save and Delete in BasicLibrary:
281
282 @Override
283 protected int getNextId() {
284 throw new java.lang.InternalError("Should not have been called");
285 }
286
287 @Override
288 protected void doDelete(String luid) throws IOException {
289 throw new java.lang.InternalError("Should not have been called");
290 }
291
292 @Override
293 protected Story doSave(Story story, Progress pg) throws IOException {
294 throw new java.lang.InternalError("Should not have been called");
295 }
296
297 //
298
299 @Override
300 public File getFile(final String luid, Progress pg) {
301 throw new java.lang.InternalError(
302 "Operation not supportorted on remote Libraries");
303 }
304
305 // starts with "/", never NULL
306 private InputStream post(String path) throws IOException {
307 return post(path, null);
308 }
309
310 // starts with "/", never NULL
311 private InputStream post(String path, Map<String, String> post)
312 throws IOException {
313 URL url = new URL(host + ":" + port + path);
314
315 if (post == null) {
316 post = new HashMap<String, String>();
317 }
318 post.put("login", subkey);
319 post.put("password", key);
320
321 return Instance.getInstance().getCache().openNoCache(url, null, post,
322 null, null);
323 }
324 }