2020-02-13 23:52:33 +01:00
|
|
|
package tk.draganczuk.url;
|
|
|
|
|
2020-02-16 16:05:09 +01:00
|
|
|
import org.eclipse.jetty.http.HttpStatus;
|
2020-02-13 23:52:33 +01:00
|
|
|
import spark.Request;
|
|
|
|
import spark.Response;
|
|
|
|
|
|
|
|
public class Routes {
|
|
|
|
|
2020-11-09 10:30:30 +01:00
|
|
|
private static final UrlRepository urlRepository;
|
2020-02-13 23:52:33 +01:00
|
|
|
|
2020-02-14 19:43:45 +01:00
|
|
|
static {
|
2020-03-24 09:07:25 +01:00
|
|
|
urlRepository = new UrlRepository();
|
2020-02-13 23:52:33 +01:00
|
|
|
}
|
|
|
|
|
2020-03-24 09:07:25 +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) {
|
2020-11-09 10:30:30 +01:00
|
|
|
var body = req.body();
|
2022-11-02 08:10:27 +00:00
|
|
|
if (body.endsWith(";")) {
|
|
|
|
body = body + "$";
|
|
|
|
}
|
2020-11-09 10:30:30 +01:00
|
|
|
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];
|
2020-02-13 23:52:33 +01:00
|
|
|
|
2020-02-16 16:05:09 +01:00
|
|
|
if (Utils.validate(shortUrl)) {
|
2020-03-24 09:07:25 +01:00
|
|
|
return urlRepository.addUrl(longUrl, shortUrl);
|
2020-02-16 16:05:09 +01:00
|
|
|
} else {
|
|
|
|
res.status(HttpStatus.BAD_REQUEST_400);
|
2022-11-05 19:18:04 -05:00
|
|
|
return "shortUrl not valid ([a-z0-9-_]+)";
|
2020-02-16 16:05:09 +01:00
|
|
|
}
|
2020-02-13 23:52:33 +01:00
|
|
|
}
|
|
|
|
|
2020-02-16 16:05:09 +01:00
|
|
|
|
|
|
|
public static String goToLongUrl(Request req, Response res) {
|
2020-02-13 23:52:33 +01:00
|
|
|
String shortUrl = req.params("shortUrl");
|
2020-03-24 09:07:25 +01:00
|
|
|
var longUrlOpt = urlRepository
|
2020-02-16 16:05:09 +01:00
|
|
|
.findForShortUrl(shortUrl);
|
2020-02-13 23:52:33 +01:00
|
|
|
|
2020-02-16 16:05:09 +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);
|
2020-11-09 10:30:30 +01:00
|
|
|
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");
|
|
|
|
|
2020-03-24 09:07:25 +01:00
|
|
|
urlRepository.deleteEntry(shortUrl);
|
2020-02-16 16:52:54 +01:00
|
|
|
return "";
|
|
|
|
}
|
2020-02-13 23:52:33 +01:00
|
|
|
}
|