66 lines
1.4 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 final 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) {
var body = req.body();
2022-11-02 08:10:27 +00:00
if (body.endsWith(";")) {
body = body + "$";
}
var split = body.split(";");
2020-02-13 23:52:33 +01:00
2022-11-02 08:10:27 +00:00
String longUrl = split[0];
if (split[1].equals("$")) {
split[1] = Utils.randomString();
2020-02-14 19:43:45 +01:00
}
2022-11-02 08:10:27 +00:00
String shortUrl = split[1];
2022-11-06 22:36:53 -06:00
shortUrl = shortUrl.toLowerCase();
2020-02-13 23:52:33 +01:00
if (Utils.validate(shortUrl)) {
return urlRepository.addUrl(longUrl, shortUrl);
} else {
res.status(HttpStatus.BAD_REQUEST_400);
2022-11-05 19:18:04 -05:00
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");
2022-11-06 22:36:53 -06:00
shortUrl = shortUrl.toLowerCase();
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 "";
}
2022-11-03 16:53:04 -05:00
urlRepository.addHit(shortUrl);
res.redirect(longUrlOpt.get(), HttpStatus.PERMANENT_REDIRECT_308);
2020-02-13 23:52:33 +01:00
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
}