58 lines
1.2 KiB
Java
Raw Normal View History

2020-02-13 23:52:33 +01:00
package tk.draganczuk.url;
import org.eclipse.jetty.http.HttpStatus;
2020-02-13 23:52:33 +01:00
import spark.Request;
import spark.Response;
public class Routes {
private static UrlRepository urlRepository;
2020-02-13 23:52:33 +01:00
2020-02-14 19:43:45 +01:00
static {
urlRepository = new UrlRepository();
2020-02-13 23:52:33 +01:00
}
public static String getAll(Request req, Response res) {
return String.join("\n", urlRepository.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
if (Utils.validate(shortUrl)) {
return urlRepository.addUrl(longUrl, shortUrl);
} else {
res.status(HttpStatus.BAD_REQUEST_400);
return "shortUrl not valid ([a-z0-9]+)";
}
2020-02-13 23:52:33 +01:00
}
public static String goToLongUrl(Request req, Response res) {
2020-02-13 23:52:33 +01:00
String shortUrl = req.params("shortUrl");
var longUrlOpt = urlRepository
.findForShortUrl(shortUrl);
2020-02-13 23:52:33 +01:00
if (longUrlOpt.isEmpty()) {
2020-02-13 23:52:33 +01:00
res.status(404);
return "";
}
res.redirect(longUrlOpt.get());
return "";
}
2020-02-16 16:52:54 +01:00
public static String delete(Request req, Response res) {
String shortUrl = req.params("shortUrl");
urlRepository.deleteEntry(shortUrl);
2020-02-16 16:52:54 +01:00
return "";
}
2020-02-13 23:52:33 +01:00
}