51 lines
965 B
Java
Raw Normal View History

2020-02-13 23:52:33 +01:00
package tk.draganczuk.url;
import spark.Request;
import spark.Response;
2020-02-14 19:43:45 +01:00
import java.io.IOException;
2020-02-13 23:52:33 +01:00
public class Routes {
private static UrlFile urlFile;
2020-02-14 19:43:45 +01:00
static {
2020-02-13 23:52:33 +01:00
try {
urlFile = new UrlFile();
} catch (IOException e) {
e.printStackTrace();
}
}
2020-02-14 19:43:45 +01:00
public static String getAll(Request req, Response res) throws IOException {
return String.join("\n", urlFile.getAll());
2020-02-13 23:52:33 +01:00
}
public static String addUrl(Request req, Response res) {
String longUrl = req.queryParams("long");
String shortUrl = req.queryParams("short");
2020-02-14 19:43:45 +01:00
if (shortUrl == null || shortUrl.isBlank()) {
shortUrl = Utils.randomString();
}
2020-02-13 23:52:33 +01:00
return urlFile.addUrl(longUrl, shortUrl);
}
public static String goToLongUrl(Request req, Response res){
String shortUrl = req.params("shortUrl");
var longUrlOpt = urlFile
.findForShortUrl(shortUrl);
if(longUrlOpt.isEmpty()){
res.status(404);
return "";
}
res.redirect(longUrlOpt.get());
return "";
}
}