1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-25 06:41:20 +02:00

Fixed indentation.

This commit is contained in:
Tushar
2019-01-21 09:42:11 +05:30
parent c5da360176
commit 0e6a6e3ceb
5 changed files with 242 additions and 244 deletions

View File

@@ -114,15 +114,10 @@ public class HentaidudeRipper extends AbstractSingleFileRipper {
return "unknown";
}
/* TO find data object:
$.ajax({
url: 'https://hentaidude.com/wp-admin/admin-ajax.php',
type: 'post',
data: {
action: 'msv-get-sources',
id: '48227',
nonce: '907f1bd45c'
}
/*
* TO find data object: $.ajax({ url:
* 'https://hentaidude.com/wp-admin/admin-ajax.php', type: 'post', data: {
* action: 'msv-get-sources', id: '48227', nonce: '907f1bd45c' }
*/
public String getVideoUrl(Document doc) throws IOException {
String jsonString = null;
@@ -135,7 +130,8 @@ public class HentaidudeRipper extends AbstractSingleFileRipper {
}
if (jsonString != null) {
// send POST request to https://hentaidude.com/wp-admin/admin-ajax.php with the data object parameters.
// send POST request to https://hentaidude.com/wp-admin/admin-ajax.php with the
// data object parameters.
JSONObject dataObject = new JSONObject(jsonString);
Map<String, String> dataMap = new HashMap<>();
for (String key : JSONObject.getNames(dataObject)) {
@@ -145,11 +141,13 @@ public class HentaidudeRipper extends AbstractSingleFileRipper {
.method(Method.POST).getJSON();
// return source url from below JSON.
/*
success true
sources {
video-source-0 https://cdn1.hentaidude.com/index.php?data=2f4a576957694872754d6736466f6c585579704b4d584e4a434372546c51346d4f4c697a6c734f6678307a59324c5458624f4675664863323768397a3371452f41384b62375246643243466f744447536b2b6250565a3859306a41506d366942713066336c6659386d78513d
video-source-1 <iframe src="https://openload.co/embed/iaJ_zDCTW0M/" scrolling="no" frameborder="0" width="100%" height="430" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>
}
* success true sources { video-source-0
* https://cdn1.hentaidude.com/index.php?data=
* 2f4a576957694872754d6736466f6c585579704b4d584e4a434372546c51346d4f4c697a6c734f6678307a59324c5458624f4675664863323768397a3371452f41384b62375246643243466f744447536b2b6250565a3859306a41506d366942713066336c6659386d78513d
* video-source-1 <iframe src="https://openload.co/embed/iaJ_zDCTW0M/"
* scrolling="no" frameborder="0" width="100%" height="430"
* allowfullscreen="true" webkitallowfullscreen="true"
* mozallowfullscreen="true"></iframe> }
*/
if (jsonResopnse.getBoolean("success")) {