1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00

Now sending data using request body, instead of URL parameters (fixes #7)

Small fixes that I should have done earlier
This commit is contained in:
Przemek Dragańczuk 2020-11-09 10:30:30 +01:00
parent 2714c4c9e0
commit f394f30c17
2 changed files with 14 additions and 11 deletions

View file

@ -6,7 +6,7 @@ import spark.Response;
public class Routes { public class Routes {
private static UrlRepository urlRepository; private static final UrlRepository urlRepository;
static { static {
urlRepository = new UrlRepository(); urlRepository = new UrlRepository();
@ -17,8 +17,10 @@ public class Routes {
} }
public static String addUrl(Request req, Response res) { public static String addUrl(Request req, Response res) {
String longUrl = req.queryParams("long"); var body = req.body();
String shortUrl = req.queryParams("short"); var split = body.split(";");
String longUrl = split[0];
String shortUrl = split[1];
if (shortUrl == null || shortUrl.isBlank()) { if (shortUrl == null || shortUrl.isBlank()) {
shortUrl = Utils.randomString(); shortUrl = Utils.randomString();
@ -43,7 +45,7 @@ public class Routes {
return ""; return "";
} }
res.redirect(longUrlOpt.get()); res.redirect(longUrlOpt.get(), HttpStatus.PERMANENT_REDIRECT_308);
return ""; return "";
} }

View file

@ -61,17 +61,18 @@ const submitForm = () => {
const longUrl = form.elements["longUrl"]; const longUrl = form.elements["longUrl"];
const shortUrl = form.elements["shortUrl"]; const shortUrl = form.elements["shortUrl"];
const url = `/api/new?long=${longUrl.value}&short=${shortUrl.value}`; const url = `/api/new`;
fetch(url, { fetch(url, {
method: "POST" method: "POST",
body: `${longUrl.value};${shortUrl.value}`
}) })
.then(_ => { .then(_ => {
longUrl.value = ""; longUrl.value = "";
shortUrl.value = ""; shortUrl.value = "";
refreshData(); refreshData();
}); });
}; };