44 lines
1.1 KiB
Java
Raw Normal View History

2020-02-13 23:52:33 +01:00
package tk.draganczuk.url;
import static spark.Spark.*;
public class App {
public static void main(String[] args) {
// Useful for developing the frontend
// http://sparkjava.com/documentation#examples-and-faq -> How do I enable automatic refresh of static files?
2020-02-14 20:11:02 +01:00
if (System.getenv("dev") != null) {
String projectDir = System.getProperty("user.dir");
String staticDir = "/src/main/resources/public";
staticFiles.externalLocation(projectDir + staticDir);
} else {
staticFiles.location("/public");
}
port(Integer.parseInt(System.getenv().getOrDefault("port", "4567")));
2020-02-14 18:42:21 +01:00
2020-02-16 15:46:29 +01:00
// Add GZIP compression
after(Filters::addGZIP);
2020-03-24 07:53:17 +01:00
// No need to auth in dev
if (System.getenv("dev") == null && Utils.isPasswordEnabled()) {
2020-03-24 07:53:17 +01:00
// Authenticate
before("/api/*", Filters.createAuthFilter());
}
2020-02-16 15:46:29 +01:00
get("/", (req, res) -> {
res.redirect("/index.html");
return "Redirect";
});
2020-02-16 15:46:29 +01:00
path("/api", () -> {
get("/all", Routes::getAll);
post("/new", Routes::addUrl);
2020-02-16 16:52:54 +01:00
delete("/:shortUrl", Routes::delete);
2020-02-16 15:46:29 +01:00
});
2020-02-13 23:52:33 +01:00
get("/:shortUrl", Routes::goToLongUrl);
}
2020-02-13 23:52:33 +01:00
}