mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2025-04-04 18:27:58 +00:00
83 lines
2.0 KiB
Java
83 lines
2.0 KiB
Java
package tk.draganczuk.url;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.StandardCopyOption;
|
|
import java.nio.file.StandardOpenOption;
|
|
import java.util.List;
|
|
import java.util.Optional;
|
|
|
|
|
|
public class UrlFile {
|
|
|
|
private File file;
|
|
|
|
public UrlFile() throws IOException{
|
|
String path = System.getenv().getOrDefault("file.location", "./urls.csv");
|
|
this.file = new File(path);
|
|
if (!file.exists()) {
|
|
file.createNewFile();
|
|
}
|
|
}
|
|
|
|
public List<String> getAll() throws IOException{
|
|
return Files.readAllLines(file.toPath());
|
|
}
|
|
|
|
public String addUrl(String longURL, String shortUrl){
|
|
String entry = String.format("%s,%s",shortUrl,longURL);
|
|
try {
|
|
var lineOpt = Files.lines(file.toPath())
|
|
.filter(line -> line.equals(entry))
|
|
.findAny();
|
|
if(lineOpt.isEmpty()){
|
|
Files.writeString(file.toPath(), entry + System.lineSeparator(), StandardOpenOption.APPEND);
|
|
}
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
return entry;
|
|
}
|
|
|
|
public Optional<String> findForShortUrl(String shortUrl){
|
|
try {
|
|
return Files.lines(file.toPath())
|
|
.map(this::splitLine)
|
|
.filter(pair -> pair.getLeft().equals(shortUrl))
|
|
.map(Pair::getRight)
|
|
.findAny();
|
|
} catch (IOException e) {
|
|
return Optional.empty();
|
|
}
|
|
}
|
|
|
|
public Pair<String, String> splitLine(String line) {
|
|
var split = line.split(",");
|
|
return new Pair<>(split[0], split[1]);
|
|
}
|
|
|
|
public void deleteEntry(String entry) {
|
|
try {
|
|
File tmp = File.createTempFile(file.getName(), ".tmp");
|
|
if (!tmp.exists()) {
|
|
tmp.createNewFile();
|
|
}
|
|
|
|
Files.lines(file.toPath())
|
|
.filter(line -> !line.equals(entry))
|
|
.forEach(line -> {
|
|
try {
|
|
Files.writeString(tmp.toPath(), line + "\n", StandardOpenOption.APPEND);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
});
|
|
|
|
Files.move(tmp.toPath(), file.toPath(), StandardCopyOption.REPLACE_EXISTING);
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|