mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-11 16:34:04 +02:00
Remove ArtAlleyRipper - artalley.social is permanently offline
This commit is contained in:
@@ -1,20 +0,0 @@
|
|||||||
package com.rarchives.ripme.ripper.rippers;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.URL;
|
|
||||||
|
|
||||||
public class ArtAlleyRipper extends MastodonRipper {
|
|
||||||
public ArtAlleyRipper(URL url) throws IOException {
|
|
||||||
super(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getHost() {
|
|
||||||
return "artalley";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getDomain() {
|
|
||||||
return "artalley.social";
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,18 +0,0 @@
|
|||||||
package com.rarchives.ripme.tst.ripper.rippers;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.URI;
|
|
||||||
import java.net.URISyntaxException;
|
|
||||||
|
|
||||||
import com.rarchives.ripme.ripper.rippers.ArtAlleyRipper;
|
|
||||||
import org.junit.jupiter.api.Disabled;
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
public class ArtAlleyRipperTest extends RippersTest {
|
|
||||||
@Test
|
|
||||||
@Disabled("website switched off")
|
|
||||||
public void testRip() throws IOException, URISyntaxException {
|
|
||||||
ArtAlleyRipper ripper = new ArtAlleyRipper(new URI("https://artalley.social/@curator/media").toURL());
|
|
||||||
testRipper(ripper);
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user