package be.nikiroo.fanfix.reader; import java.awt.Desktop; import java.awt.EventQueue; import java.io.File; import java.io.IOException; import java.net.URISyntaxException; import javax.swing.JEditorPane; import javax.swing.JLabel; import javax.swing.JOptionPane; import javax.swing.event.HyperlinkEvent; import javax.swing.event.HyperlinkListener; import be.nikiroo.fanfix.Instance; import be.nikiroo.fanfix.VersionCheck; import be.nikiroo.fanfix.bundles.UiConfig; import be.nikiroo.fanfix.data.MetaData; import be.nikiroo.fanfix.data.Story; import be.nikiroo.fanfix.library.LocalLibrary; import be.nikiroo.utils.Progress; import be.nikiroo.utils.Version; import be.nikiroo.utils.ui.UIUtils; class GuiReader extends BasicReader { static private boolean nativeLookLoaded; private LocalLibrary localLibrary; public GuiReader() throws IOException { if (!nativeLookLoaded) { UIUtils.setLookAndFeel(); nativeLookLoaded = true; } File dir = Instance.getReaderDir(); dir.mkdirs(); if (!dir.exists()) { throw new IOException( "Cannote create cache directory for local reader: " + dir); } localLibrary = new LocalLibrary(dir, Instance.getUiConfig().getString( UiConfig.GUI_NON_IMAGES_DOCUMENT_TYPE), Instance.getUiConfig() .getString(UiConfig.GUI_IMAGES_DOCUMENT_TYPE), true); } @Override public void read() throws IOException { MetaData meta = getMeta(); if (meta == null) { throw new IOException("No story to read"); } read(meta.getLuid(), null); } /** * Import the story into the local reader library, and keep the same LUID. * * @param luid * the Library UID * @param pg * the optional progress reporter * * @throws IOException * in case of I/O error */ public void imprt(String luid, Progress pg) throws IOException { try { localLibrary.imprt(getLibrary(), luid, pg); } catch (IOException e) { throw new IOException( "Cannot import story from library to LocalReader library: " + luid, e); } } /** * Check if the {@link Story} denoted by this Library UID is present in the * {@link GuiReader} cache. * * @param luid * the Library UID * * @return TRUE if it is */ public boolean isCached(String luid) { return localLibrary.getInfo(luid) != null; } @Override public void browse(String type) { // TODO: improve presentation of update message final VersionCheck updates = VersionCheck.check(); StringBuilder builder = new StringBuilder(); final JEditorPane updateMessage = new JEditorPane("text/html", ""); if (updates.isNewVersionAvailable()) { builder.append("A new version of the program is available at https://github.com/nikiroo/fanfix/releases"); builder.append("
"); builder.append("
"); for (Version v : updates.getNewer()) { builder.append("\tVersion " + v + ""); builder.append("
"); builder.append(""); } // html content updateMessage.setText("" // + builder// + ""); // handle link events updateMessage.addHyperlinkListener(new HyperlinkListener() { @Override public void hyperlinkUpdate(HyperlinkEvent e) { if (e.getEventType().equals( HyperlinkEvent.EventType.ACTIVATED)) try { Desktop.getDesktop().browse(e.getURL().toURI()); } catch (IOException ee) { Instance.syserr(ee); } catch (URISyntaxException ee) { Instance.syserr(ee); } } }); updateMessage.setEditable(false); updateMessage.setBackground(new JLabel().getBackground()); } final String typeFinal = type; EventQueue.invokeLater(new Runnable() { @Override public void run() { if (updates.isNewVersionAvailable()) { int rep = JOptionPane.showConfirmDialog(null, updateMessage, "Updates available", JOptionPane.OK_CANCEL_OPTION); if (rep == JOptionPane.OK_OPTION) { updates.ok(); } else { updates.ignore(); } } new GuiReaderFrame(GuiReader.this, typeFinal).setVisible(true); } }); } // delete from local reader library void clearLocalReaderCache(String luid) { try { localLibrary.delete(luid); } catch (IOException e) { Instance.syserr(e); } } // delete from main library void delete(String luid) { try { if (localLibrary.getInfo(luid) != null) { localLibrary.delete(luid); } getLibrary().delete(luid); } catch (IOException e) { Instance.syserr(e); } } // open the given book void read(String luid, Progress pg) throws IOException { File file = localLibrary.getFile(luid); if (file == null) { imprt(luid, pg); file = localLibrary.getFile(luid); } // TODO: show a special page for the chapter? openExternal(getLibrary().getInfo(luid), file); } void changeType(String luid, String newSource) { try { if (localLibrary.getInfo(luid) != null) { localLibrary.changeSource(luid, newSource, null); } getLibrary().changeSource(luid, newSource, null); } catch (IOException e) { Instance.syserr(e); } } }