| 1 | package be.nikiroo.fanfix.reader.cli; |
| 2 | |
| 3 | import java.io.IOException; |
| 4 | import java.util.ArrayList; |
| 5 | import java.util.List; |
| 6 | |
| 7 | import be.nikiroo.fanfix.Instance; |
| 8 | import be.nikiroo.fanfix.bundles.StringId; |
| 9 | import be.nikiroo.fanfix.data.Chapter; |
| 10 | import be.nikiroo.fanfix.data.MetaData; |
| 11 | import be.nikiroo.fanfix.data.Paragraph; |
| 12 | import be.nikiroo.fanfix.data.Story; |
| 13 | import be.nikiroo.fanfix.reader.BasicReader; |
| 14 | import be.nikiroo.fanfix.searchable.BasicSearchable; |
| 15 | import be.nikiroo.fanfix.searchable.SearchableTag; |
| 16 | import be.nikiroo.fanfix.supported.SupportType; |
| 17 | |
| 18 | /** |
| 19 | * Command line {@link Story} reader. |
| 20 | * <p> |
| 21 | * Will output stories to the console. |
| 22 | * |
| 23 | * @author niki |
| 24 | */ |
| 25 | class CliReader extends BasicReader { |
| 26 | @Override |
| 27 | public void read(boolean sync) throws IOException { |
| 28 | MetaData meta = getMeta(); |
| 29 | |
| 30 | if (meta == null) { |
| 31 | throw new IOException("No story to read"); |
| 32 | } |
| 33 | |
| 34 | String title = ""; |
| 35 | String author = ""; |
| 36 | |
| 37 | if (meta.getTitle() != null) { |
| 38 | title = meta.getTitle(); |
| 39 | } |
| 40 | |
| 41 | if (meta.getAuthor() != null) { |
| 42 | author = "©" + meta.getAuthor(); |
| 43 | if (meta.getDate() != null && !meta.getDate().isEmpty()) { |
| 44 | author = author + " (" + meta.getDate() + ")"; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | System.out.println(title); |
| 49 | System.out.println(author); |
| 50 | System.out.println(""); |
| 51 | |
| 52 | // TODO: progress? |
| 53 | for (Chapter chap : getStory(null)) { |
| 54 | if (chap.getName() != null && !chap.getName().isEmpty()) { |
| 55 | System.out.println(Instance.getTrans().getString( |
| 56 | StringId.CHAPTER_NAMED, chap.getNumber(), |
| 57 | chap.getName())); |
| 58 | } else { |
| 59 | System.out.println(Instance.getTrans().getString( |
| 60 | StringId.CHAPTER_UNNAMED, chap.getNumber())); |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | public void read(int chapter) throws IOException { |
| 66 | MetaData meta = getMeta(); |
| 67 | |
| 68 | if (meta == null) { |
| 69 | throw new IOException("No story to read"); |
| 70 | } |
| 71 | |
| 72 | // TODO: progress? |
| 73 | if (chapter > getStory(null).getChapters().size()) { |
| 74 | System.err.println("Chapter " + chapter + ": no such chapter"); |
| 75 | } else { |
| 76 | Chapter chap = getStory(null).getChapters().get(chapter - 1); |
| 77 | System.out.println("Chapter " + chap.getNumber() + ": " |
| 78 | + chap.getName()); |
| 79 | |
| 80 | for (Paragraph para : chap) { |
| 81 | System.out.println(para.getContent()); |
| 82 | System.out.println(""); |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | @Override |
| 88 | public void browse(String source) { |
| 89 | List<MetaData> stories; |
| 90 | stories = getLibrary().getListBySource(source); |
| 91 | |
| 92 | for (MetaData story : stories) { |
| 93 | String author = ""; |
| 94 | if (story.getAuthor() != null && !story.getAuthor().isEmpty()) { |
| 95 | author = " (" + story.getAuthor() + ")"; |
| 96 | } |
| 97 | |
| 98 | System.out.println(story.getLuid() + ": " + story.getTitle() |
| 99 | + author); |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | @Override |
| 104 | public void search(SupportType searchOn, String keywords, int page, int item) throws IOException { |
| 105 | |
| 106 | } |
| 107 | |
| 108 | @Override |
| 109 | public void searchTag(SupportType searchOn, int page, int item, String... tags) throws IOException { |
| 110 | BasicSearchable search = BasicSearchable.getSearchable(searchOn); |
| 111 | List<SearchableTag> stags = search.getTags(); |
| 112 | |
| 113 | |
| 114 | SearchableTag stag = null; |
| 115 | for (String tag : tags) { |
| 116 | stag = null; |
| 117 | for (int i = 0 ; i < stags.size() ; i++) { |
| 118 | if (stags.get(i).getName().equalsIgnoreCase(tag)) { |
| 119 | stag = stags.get(i); |
| 120 | break; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | if (stag != null) { |
| 125 | search.fillTag(stag); |
| 126 | stags = stag.getChildren(); |
| 127 | } else { |
| 128 | stags = new ArrayList<SearchableTag>(); |
| 129 | break; |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | if (stag != null) { |
| 134 | if (page <= 0) { |
| 135 | if (stag.isLeaf()) { |
| 136 | System.out.println(stag.getPages()); |
| 137 | } else { |
| 138 | System.out.println(stag.getCount()); |
| 139 | } |
| 140 | } else { |
| 141 | List<MetaData> metas = null; |
| 142 | List<SearchableTag> subtags = null; |
| 143 | int count; |
| 144 | |
| 145 | if (stag.isLeaf()) { |
| 146 | metas = search.search(stag, page); |
| 147 | count = metas.size(); |
| 148 | } else { |
| 149 | subtags = stag.getChildren(); |
| 150 | count = subtags.size(); |
| 151 | } |
| 152 | |
| 153 | if (item > 0) { |
| 154 | if (item <= count) { |
| 155 | if (metas != null) { |
| 156 | MetaData meta = metas.get(item - 1); |
| 157 | System.out.println(item + ": " + meta.getTitle()); |
| 158 | System.out.println(meta.getUrl()); |
| 159 | System.out.println(); |
| 160 | System.out.println("Tags: " + meta.getTags()); |
| 161 | System.out.println(); |
| 162 | for (Paragraph para : meta.getResume()) { |
| 163 | System.out.println(para.getContent()); |
| 164 | System.out.println(""); |
| 165 | } |
| 166 | } else { |
| 167 | SearchableTag subtag = subtags.get(item - 1); |
| 168 | // TODO: display fixed info, not debug |
| 169 | System.out.println(subtag); |
| 170 | } |
| 171 | } else { |
| 172 | System.out.println("Invalid item: only " + count + " items found"); |
| 173 | } |
| 174 | } else { |
| 175 | if (metas != null) { |
| 176 | int i = 0; |
| 177 | for (MetaData meta : metas) { |
| 178 | System.out.println((i + 1) + ": " + meta.getTitle()); |
| 179 | i++; |
| 180 | } |
| 181 | } else { |
| 182 | for (SearchableTag subtag : subtags) { |
| 183 | if (subtag.getCount() > 0) { |
| 184 | System.out.println(subtag.getName() + " (" + subtag.getCount() + ")"); |
| 185 | } else { |
| 186 | System.out.println(subtag.getName()); |
| 187 | } |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | } |
| 192 | } else { |
| 193 | for (SearchableTag s : stags) { |
| 194 | System.out.println(s.getName()); |
| 195 | } |
| 196 | } |
| 197 | } |
| 198 | } |