2020-02-13 23:52:33 +01:00
|
|
|
package tk.draganczuk.url;
|
|
|
|
|
|
|
|
import static spark.Spark.*;
|
|
|
|
|
|
|
|
public class App {
|
|
|
|
|
2020-02-14 18:40:14 +01:00
|
|
|
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) {
|
2020-02-14 18:40:14 +01:00
|
|
|
String projectDir = System.getProperty("user.dir");
|
|
|
|
String staticDir = "/src/main/resources/public";
|
|
|
|
staticFiles.externalLocation(projectDir + staticDir);
|
|
|
|
} else {
|
|
|
|
staticFiles.location("/public");
|
|
|
|
}
|
|
|
|
|
2020-05-23 19:16:27 +02:00
|
|
|
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
|
2020-09-19 10:01:36 +02:00
|
|
|
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
|
|
|
|
2020-02-14 18:40:14 +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-14 18:40:14 +01:00
|
|
|
}
|
2020-02-13 23:52:33 +01:00
|
|
|
}
|