Attempt to add proper support for channel handles.

This commit is contained in:
Kavin 2023-04-27 12:54:52 +01:00
parent 7460fe2f75
commit 12e25c9c13
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
2 changed files with 10 additions and 0 deletions

View File

@ -170,6 +170,14 @@ public class ServerLauncher extends MultithreadedHttpServerLauncher {
} catch (Exception e) {
return getErrorResponse(e, request.getPath());
}
})).map(GET, "/@/:handle", AsyncServlet.ofBlocking(executor, request -> {
try {
return getJsonResponse(
ChannelHandlers.channelResponse("@" + request.getPathParameter("handle")),
"public, max-age=600", true);
} catch (Exception e) {
return getErrorResponse(e, request.getPath());
}
})).map(GET, "/nextpage/channel/:channelId", AsyncServlet.ofBlocking(executor, request -> {
try {
return getJsonResponse(ChannelHandlers.channelPageResponse(request.getPathParameter("channelId"),
@ -526,6 +534,7 @@ public class ServerLauncher extends MultithreadedHttpServerLauncher {
return Config.create()
.with("http.listenAddresses",
Config.ofValue(ofInetSocketAddress(), new InetSocketAddress(Constants.PORT)))
.with("bytebuf.useWatchdog", String.valueOf(true))
.with("workers", Constants.HTTP_WORKERS);
}
};

View File

@ -16,6 +16,7 @@ curl "${CURLOPTS[@]}" $HOST/trending?region=US || exit 1
curl "${CURLOPTS[@]}" $HOST/channel/UCsXVk37bltHxD1rDPwtNM8Q || exit 1
curl "${CURLOPTS[@]}" $HOST/c/inanutshell || exit 1
curl "${CURLOPTS[@]}" $HOST/user/Kurzgesagt || exit 1
curl "${CURLOPTS[@]}" $HOST/@/kurzgesagt || exit 1
# Channel Nextpage
CHANNEL_NEXTPAGE=$(curl -s -o - -f $HOST/channel/UCsXVk37bltHxD1rDPwtNM8Q | jq -r .nextpage)