blob: 2991bcea0232a95e9c9cf0c567ba8666a5548055 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.peeco.showcase;
import org.apache.peeco.api.HttpHandler;
import org.apache.peeco.api.Matching;
import org.apache.peeco.api.*;
import javax.enterprise.context.RequestScoped;
import java.io.ByteArrayInputStream;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import javax.inject.Inject;
@RequestScoped
public class HelloWorldHandler
{
@Inject private HttpServer httpServer;
@HttpHandler(method = {HttpMethod.GET, HttpMethod.POST}, url = "/hello/*", matching = Matching.WILDCARD)
public CompletionStage<Response> apply(Request request)
{
String responseContent = "Responding to /hello/* : Hello World with CompletionStage from " + getClass().getName()
+ " on " + httpServer.getHost() + " and port " + httpServer.getPort();
ByteArrayInputStream output = new ByteArrayInputStream(responseContent.getBytes(StandardCharsets.UTF_8));
return CompletableFuture.supplyAsync(() ->
{
Response response = new Response();
response.addHeader("statusCode", "200");
response.addHeader("content-type", "text/html");
response.setOutput(output);
return response;
});
}
@HttpHandler(method = {HttpMethod.GET}, url = "/hello2", matching = Matching.EXACT)
public Response applyWithoutCompletionStage(Request request)
{
String responseContent = "Responding to /hello2 : Hello World from " + getClass().getName() + "Request query Params: " + request.queryParameters();
ByteArrayInputStream output = new ByteArrayInputStream(
responseContent.getBytes(StandardCharsets.UTF_8));
Response response = new Response(output);
response.addHeader("statusCode", "200");
response.addHeader("content-type", "text/html");
return response;
}
@HttpHandler(method = {HttpMethod.GET}, url = "/hello3/*", matching = Matching.WILDCARD)
public Response applyWithWildcardMatching(Request request){
String responseContent = "Responding to /hello3/* : Hello with Wildcard URL from " + getClass().getName();
ByteArrayInputStream output = new ByteArrayInputStream(
responseContent.getBytes(StandardCharsets.UTF_8));
Response response = new Response(output);
response.addHeader("statusCode", "200");
response.addHeader("content-type", "text/html");
return response;
}
@HttpHandler(method = {HttpMethod.GET, HttpMethod.POST}, url = "/input", matching = Matching.EXACT)
public Response inputForm(Request request){
StringBuilder builder = new StringBuilder();
builder.append("<!DOCTYPE html>\r\n")
.append("<html><head><meta charset='utf-8' /><title>")
.append("Name Input Form")
.append("</title></head><body>\r\n")
.append("<form action=\"post\" method=\"POST\">\r\n")
.append("Enter your name: \r\n")
.append("<input type=\"text\" name=\"user\" />\r\n")
.append("<input type=\"submit\" value=\"Submit\" />\r\n")
.append("</form>\r\n")
.append("</body></html>\r\n");
String responseContent = builder.toString();
ByteArrayInputStream output = new ByteArrayInputStream(
responseContent.getBytes(StandardCharsets.UTF_8));
Response response = new Response(output);
response.addHeader("statusCode", "200");
response.addHeader("content-type", "text/html");
return response;
}
@HttpHandler(method = {HttpMethod.POST}, url = "/post", matching = Matching.EXACT)
public Response postRequest(Request request){
StringBuilder builder = new StringBuilder();
builder.append("<!DOCTYPE html>\r\n")
.append("<html><head><meta charset='utf-8' /><title>")
.append("Welcome title")
.append("</title></head><body>\r\n")
.append("Echo from Netty: welcome " + request.bodyParameters().get("user").get(0) + "!\r\n")
.append("</body></html>\r\n");
String responseContent = builder.toString();
ByteArrayInputStream output = new ByteArrayInputStream(
responseContent.getBytes(StandardCharsets.UTF_8));
Response response = new Response(output);
response.addHeader("statusCode", "200");
response.addHeader("content-type", "text/html");
return response;
}
}