Skip to content

Commit 981c171

Browse files
committed
add java code to auth example
1 parent 39db901 commit 981c171

File tree

5 files changed

+116
-0
lines changed

5 files changed

+116
-0
lines changed

javalin6/javalin-auth-example/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@
5353
<jvmTarget>11</jvmTarget>
5454
</configuration>
5555
</plugin>
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-compiler-plugin</artifactId>
59+
<configuration>
60+
<source>16</source>
61+
<target>16</target>
62+
</configuration>
63+
</plugin>
5664
</plugins>
5765
</build>
5866

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import io.javalin.http.Context;
2+
import io.javalin.http.Header;
3+
import io.javalin.http.UnauthorizedResponse;
4+
5+
import java.util.List;
6+
import java.util.Map;
7+
import java.util.Optional;
8+
9+
public class AuthJ {
10+
11+
public static void handleAccess(Context ctx) {
12+
var permittedRoles = ctx.routeRoles();
13+
if (permittedRoles.contains(RoleJ.ANYONE)) {
14+
return; // anyone can access
15+
}
16+
if (userRoles(ctx).stream().anyMatch(permittedRoles::contains)) {
17+
return; // user has role required to access
18+
}
19+
ctx.header(Header.WWW_AUTHENTICATE, "Basic");
20+
throw new UnauthorizedResponse();
21+
}
22+
23+
public static List<RoleJ> userRoles(Context ctx) {
24+
return Optional.ofNullable(ctx.basicAuthCredentials())
25+
.map(credentials -> userRolesMap.getOrDefault(new Pair(credentials.getUsername(), credentials.getPassword()), List.of()))
26+
.orElse(List.of());
27+
}
28+
29+
record Pair(String a, String b) {}
30+
private static final Map<Pair, List<RoleJ>> userRolesMap = Map.of(
31+
new Pair("alice", "weak-1234"), List.of(RoleJ.USER_READ),
32+
new Pair("bob", "weak-123456"), List.of(RoleJ.USER_READ, RoleJ.USER_WRITE)
33+
);
34+
35+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import io.javalin.Javalin;
2+
import static io.javalin.apibuilder.ApiBuilder.*;
3+
4+
public class Main {
5+
6+
public static void main(String[] args) {
7+
8+
Javalin app = Javalin.create(config -> {
9+
config.router.mount(router -> {
10+
router.beforeMatched(AuthJ::handleAccess);
11+
}).apiBuilder(() -> {
12+
get("/", ctx -> ctx.redirect("/users"), RoleJ.ANYONE);
13+
path("users", () -> {
14+
get(UserControllerJ::getAllUserIds, RoleJ.ANYONE);
15+
post(UserControllerJ::createUser, RoleJ.USER_WRITE);
16+
path("{userId}", () -> {
17+
get(UserControllerJ::getUser, RoleJ.USER_READ);
18+
patch(UserControllerJ::updateUser, RoleJ.USER_WRITE);
19+
delete(UserControllerJ::deleteUser, RoleJ.USER_WRITE);
20+
});
21+
});
22+
});
23+
}).start(7070);
24+
25+
}
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import io.javalin.security.RouteRole;
2+
3+
public enum RoleJ implements RouteRole { ANYONE, USER_READ, USER_WRITE }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import io.javalin.http.Context;
2+
import java.util.*;
3+
4+
public class UserControllerJ {
5+
6+
public record User(String name, String email) {}
7+
8+
private static final Map<String, User> users;
9+
10+
static {
11+
var tempMap = Map.of(
12+
randomId(), new User("Alice", "[email protected]"),
13+
randomId(), new User("Bob", "[email protected]"),
14+
randomId(), new User("Carol", "[email protected]"),
15+
randomId(), new User("Dave", "[email protected]")
16+
);
17+
users = new HashMap<>(tempMap);
18+
}
19+
20+
public static void getAllUserIds(Context ctx) {
21+
ctx.json(users.keySet());
22+
}
23+
24+
public static void createUser(Context ctx) {
25+
users.put(randomId(), ctx.bodyAsClass(User.class));
26+
}
27+
28+
public static void getUser(Context ctx) {
29+
ctx.json(users.get(ctx.pathParam("userId")));
30+
}
31+
32+
public static void updateUser(Context ctx) {
33+
users.put(ctx.pathParam("userId"), ctx.bodyAsClass(User.class));
34+
}
35+
36+
public static void deleteUser(Context ctx) {
37+
users.remove(ctx.pathParam("userId"));
38+
}
39+
40+
private static String randomId() {
41+
return UUID.randomUUID().toString();
42+
}
43+
44+
}

0 commit comments

Comments
 (0)