Skip to content

Commit ddcc2ec

Browse files
committed
Read file from web.
1 parent c745358 commit ddcc2ec

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

src/main/java/fr/formiko/utils/FLUFiles.java

+17-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import java.io.File;
44
import java.io.IOException;
5+
import java.net.URI;
6+
import java.net.URL;
57
import java.nio.file.Files;
68
import java.nio.file.Paths;
79
import java.util.List;
@@ -30,6 +32,7 @@ private FLUFiles() {} // hide constructor
3032

3133
public static String readFile(String path) { return internal.readFile(path); }
3234
public static List<String> readFileAsList(String path) { return internal.readFileAsList(path); }
35+
public static String readFileFromWeb(String url) { return internal.readFileFromWeb(url); }
3336
public static boolean writeFile(String path, String content) { return false; }
3437
public static boolean appendToFile(String path, String content) { return false; }
3538

@@ -133,7 +136,7 @@ private boolean move(String source, String destination) {
133136
return false;
134137
}
135138
}
136-
private static String readFile(String path) {
139+
private String readFile(String path) {
137140
if (isAValidePath(path)) {
138141
try {
139142
// return Files.readAllLines(Paths.get(path));
@@ -145,7 +148,7 @@ private static String readFile(String path) {
145148
return null;
146149
}
147150
}
148-
private static List<String> readFileAsList(String path) {
151+
private List<String> readFileAsList(String path) {
149152
if (isAValidePath(path)) {
150153
try {
151154
return Files.readAllLines(Paths.get(path));
@@ -156,5 +159,17 @@ private static List<String> readFileAsList(String path) {
156159
return null;
157160
}
158161
}
162+
163+
private String readFileFromWeb(String urlString) {
164+
if (urlString == null) {
165+
return null;
166+
}
167+
try {
168+
URL url = URI.create(urlString).toURL();
169+
return new String(url.openStream().readAllBytes());
170+
} catch (IOException e) {
171+
return null;
172+
}
173+
}
159174
}
160175
}

src/test/java/fr/formiko/utils/FLUFilesTest.java

+20
Original file line numberDiff line numberDiff line change
@@ -181,4 +181,24 @@ private static Stream<Arguments> testReadFileAsListSource() {
181181
Arguments.of(TEST_PATH + "existingDir/subDir/", false, null),
182182
Arguments.of(TEST_PATH + "existingDir/subDir/existingFile.txt", true, List.of("ipnzéfl", "zgrebinoa", "rez bzn,")));
183183
}
184+
185+
@ParameterizedTest
186+
@MethodSource("testReadFileFromWebSource")
187+
void testReadFileFromWeb(String url, boolean shouldWork, String content) {
188+
if (shouldWork) {
189+
assertEquals(content, FLUFiles.readFileFromWeb(url));
190+
} else {
191+
assertNull(FLUFiles.readFileFromWeb(url));
192+
}
193+
}
194+
195+
private static Stream<Arguments> testReadFileFromWebSource() { return Stream.of(Arguments.of(
196+
"https://gist.githubusercontent.com/HydrolienF/0dc21ed2c0788b4de206102871410d4b/raw/a85c8bcf47ae0c081841df756c68122c83151747/fr.json",
197+
true, """
198+
{
199+
"schemaVersion": 1,
200+
"label": "French",
201+
"message": "100%",
202+
"color": "00FF00"
203+
}"""), Arguments.of(null, false, null), Arguments.of("h://unexisting.url", false, null)); }
184204
}

0 commit comments

Comments
 (0)