-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Flameish
committed
May 6, 2019
1 parent
bac5bfb
commit cf06b67
Showing
3 changed files
with
1,411 additions
and
1,414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,136 +1,135 @@ | ||
|
||
public class Novel { | ||
String chapterLinkContainer; | ||
String chapterLinkSelecter; | ||
String titleHostName; | ||
String url; | ||
String host; | ||
String chapterContainer; | ||
String sentenceSelecter; | ||
public static String[] websites = { "Wuxiaworld", "Royal Road", "Gravity Tales", "Volare Novels", | ||
"Noodletown Translated", "BoxNovel", "Lightnovel Translations", "Fuji Translation", | ||
"Exiled Rebels Scanlations", "Rainbow Turtle Translations(Arkmachinetranslations)"}; | ||
|
||
public Novel(String domain, String urla) { | ||
url = urla; | ||
switch (domain) { //compared with websites[] (spaces removed + all letters to lowercase) | ||
case "wuxiaworld": | ||
this.host = "https://wuxiaworld.com/"; | ||
this.chapterLinkContainer = "#accordion"; | ||
this.chapterLinkSelecter = ".chapter-item"; | ||
this.chapterContainer = ".p-15 .fr-view"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-WuxiaWorld"; | ||
break; | ||
case "royalroad": | ||
this.host = "https://www.royalroad.com/"; | ||
this.chapterLinkContainer = ".table"; | ||
this.chapterLinkSelecter = "td"; | ||
this.chapterContainer = ".chapter-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-Royal-Road"; | ||
break; | ||
case "gravitytales": | ||
this.host = "http://gravitytales.com/"; | ||
this.chapterLinkContainer = ".table"; | ||
this.chapterLinkSelecter = "td"; | ||
this.chapterContainer = ".fr-view"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-Gravity-Tales"; | ||
url = urla + "/chapters"; | ||
break; | ||
case "volarenovels": | ||
this.host = "https://volarenovels.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=" + urla + "]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-volare-novels"; | ||
break; | ||
case "noodletowntranslated": | ||
this.host = "https://www.noodletowntranslated.com/"; | ||
this.chapterLinkContainer = "table"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".post-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-Noodletown-Translated"; | ||
break; | ||
case "boxnovel": | ||
this.host = "https://boxnovel.com/"; | ||
this.chapterLinkContainer = ".listing-chapters_wrap"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".cha-words"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "lightnoveltranslations": | ||
this.host = "https://lightnovelstranslations.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=" + urla + "]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "fujitranslation": | ||
this.host = "https://fujitranslation.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=https://fujitranslation]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "exiledrebelsscanlations": | ||
this.host = "https://exiledrebelsscanlations.com/"; | ||
this.chapterLinkContainer = ".lcp_catlist"; | ||
this.chapterLinkSelecter = "a[href^=https://exiledrebels]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "rainbowturtletranslations(arkmachinetranslations)": | ||
this.host = "https://arkmachinetranslations.wordpress.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=https://arkmachinetranslations]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "creativenovels": | ||
this.host = "https://creativenovels.com/"; | ||
this.chapterLinkContainer = ".post_box"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
} | ||
} | ||
|
||
public String getChapterLinkContainer() { | ||
return this.chapterLinkContainer; | ||
} | ||
|
||
public String getChapterLinkSelecter() { | ||
return this.chapterLinkSelecter; | ||
} | ||
|
||
public String getTitleHostName() { | ||
return this.titleHostName; | ||
} | ||
|
||
public String getUrl() { | ||
return this.url; | ||
} | ||
|
||
public String getHost() { | ||
return this.host; | ||
} | ||
|
||
public String getChapterContainer() { | ||
return this.chapterContainer; | ||
} | ||
|
||
public String getSentenceSelecter() { | ||
return this.sentenceSelecter; | ||
} | ||
} | ||
public class Novel { | ||
static String[] websites = {"Wuxiaworld", "Royal Road", "Gravity Tales", "Volare Novels", | ||
"Noodletown Translated", "BoxNovel", "Lightnovel Translations", "Fuji Translation", | ||
"Exiled Rebels Scanlations", "Rainbow Turtle Translations"}; | ||
private String chapterLinkContainer; | ||
private String chapterLinkSelecter; | ||
private String titleHostName; | ||
private String url; | ||
private String host; | ||
private String chapterContainer; | ||
private String sentenceSelecter; | ||
|
||
public Novel(String domain, String urla) { | ||
url = urla; | ||
switch (domain) { | ||
case "wuxiaworld": | ||
this.host = "https://wuxiaworld.com/"; | ||
this.chapterLinkContainer = "#accordion"; | ||
this.chapterLinkSelecter = ".chapter-item"; | ||
this.chapterContainer = ".p-15 .fr-view"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-WuxiaWorld"; | ||
break; | ||
case "royalroad": | ||
this.host = "https://www.royalroad.com/"; | ||
this.chapterLinkContainer = ".table"; | ||
this.chapterLinkSelecter = "td"; | ||
this.chapterContainer = ".chapter-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-Royal-Road"; | ||
break; | ||
case "gravitytales": | ||
this.host = "http://gravitytales.com/"; | ||
this.chapterLinkContainer = ".table"; | ||
this.chapterLinkSelecter = "td"; | ||
this.chapterContainer = ".fr-view"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-Gravity-Tales"; | ||
url = urla + "/chapters"; | ||
break; | ||
case "volarenovels": | ||
this.host = "https://volarenovels.com/"; | ||
this.chapterLinkContainer = "#accordion"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".panel .fr-view"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-volare-novels"; | ||
break; | ||
case "noodletowntranslated": | ||
this.host = "https://www.noodletowntranslated.com/"; | ||
this.chapterLinkContainer = "table"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".post-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = "-Noodletown-Translated"; | ||
break; | ||
case "boxnovel": | ||
this.host = "https://boxnovel.com/"; | ||
this.chapterLinkContainer = ".listing-chapters_wrap"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".cha-words"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "lightnoveltranslations": | ||
this.host = "https://lightnovelstranslations.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=" + urla + "]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "fujitranslation": | ||
this.host = "https://fujitranslation.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=" + urla + "]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "exiledrebelsscanlations": | ||
this.host = "https://exiledrebelsscanlations.com/"; | ||
this.chapterLinkContainer = ".lcp_catlist"; | ||
this.chapterLinkSelecter = "a[href^=https://exiledrebels]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "rainbowturtletranslations": | ||
this.host = "https://arkmachinetranslations.wordpress.com/"; | ||
this.chapterLinkContainer = ".entry-content"; | ||
this.chapterLinkSelecter = "a[href^=https://arkmachinetranslations]"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
case "creativenovels": | ||
this.host = "https://creativenovels.com/"; | ||
this.chapterLinkContainer = ".post_box"; | ||
this.chapterLinkSelecter = "a"; | ||
this.chapterContainer = ".entry-content"; | ||
this.sentenceSelecter = "p"; | ||
this.titleHostName = ""; | ||
break; | ||
} | ||
} | ||
|
||
String getChapterLinkContainer() { | ||
return this.chapterLinkContainer; | ||
} | ||
|
||
String getChapterLinkSelector() { | ||
return this.chapterLinkSelecter; | ||
} | ||
|
||
String getTitleHostName() { | ||
return this.titleHostName; | ||
} | ||
|
||
String getUrl() { | ||
return this.url; | ||
} | ||
|
||
String getHost() { | ||
return this.host; | ||
} | ||
|
||
String getChapterContainer() { | ||
return this.chapterContainer; | ||
} | ||
|
||
String getSentenceSelector() { | ||
return this.sentenceSelecter; | ||
} | ||
} |
Oops, something went wrong.