1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-04-21 12:12:38 +02:00

Remove FolioRipper - site has changed to a redirect to some other type of business other than a content host

This commit is contained in:
MetaPrime 2025-01-06 20:17:53 -08:00
parent 93e8701ee8
commit 4f6e16959b
2 changed files with 0 additions and 105 deletions

View File

@ -1,75 +0,0 @@
package com.rarchives.ripme.ripper.rippers;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.List;
import java.util.ArrayList;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import org.json.JSONObject;
import org.json.JSONArray;
import com.rarchives.ripme.ripper.AbstractJSONRipper;
import com.rarchives.ripme.utils.Http;
/**
* @author owaiswiz
*
*/
public class FolioRipper extends AbstractJSONRipper {
public FolioRipper(URL url) throws IOException {
super(url);
}
@Override
public String getHost() {
return "folio";
}
@Override
public String getDomain() {
return "folio.ink";
}
@Override
public String getGID(URL url) throws MalformedURLException {
Pattern p = Pattern.compile("^https?://(?:www.)?folio.ink/([a-zA-Z0-9]+).*$");
Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) {
return m.group(1);
}
throw new MalformedURLException("Expected folio.ink URL format: " +
"folio.ink/albumid (e.g: folio.ink/DmBe6i) - got " + url + " instead");
}
@Override
public JSONObject getFirstPage() throws IOException {
String jsonArrayString = Http.url("https://folio.ink/getimages/" + getGID(url)).ignoreContentType().response().body();
JSONArray imagesArray = new JSONArray(jsonArrayString);
JSONObject imagesObject = new JSONObject();
imagesObject.put("images", imagesArray);
return imagesObject;
}
@Override
public List<String> getURLsFromJSON(JSONObject json) {
List<String> result = new ArrayList<String>();
JSONArray imagesArray = json.getJSONArray("images");
for (int i = 0; i < imagesArray.length(); i++) {
JSONObject image = imagesArray.getJSONObject(i);
result.add(image.getString("image_url"));
}
return result;
}
@Override
public void downloadURL(URL url, int index) {
addURLToDownload(url, getPrefix(index));
}
}

View File

@ -1,30 +0,0 @@
package com.rarchives.ripme.tst.ripper.rippers;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import com.rarchives.ripme.ripper.rippers.FolioRipper;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
public class FolioRipperTest extends RippersTest {
/**
* Test for folio.ink ripper
*/
@Test
@Disabled("test or ripper broken")
public void testFolioRip() throws IOException, URISyntaxException {
FolioRipper ripper = new FolioRipper(new URI("https://folio.ink/DmBe6i").toURL());
testRipper(ripper);
}
@Test
public void testGetGID() throws IOException, URISyntaxException {
URL url = new URI("https://folio.ink/DmBe6i").toURL();
FolioRipper ripper = new FolioRipper(url);
Assertions.assertEquals("DmBe6i", ripper.getGID(url));
}
}