All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rapidoid.http.fast.handler.HttpHandlers Maven / Gradle / Ivy

There is a newer version: 5.5.5
Show newest version
package org.rapidoid.http.fast.handler;

/*
 * #%L
 * rapidoid-http-fast
 * %%
 * Copyright (C) 2014 - 2015 Nikolche Mihajlovski and contributors
 * %%
 * Licensed 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.
 * #L%
 */

import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.http.Req;
import org.rapidoid.http.fast.HttpMetadata;
import org.rapidoid.http.fast.ReqHandler;
import org.rapidoid.lambda.F2;
import org.rapidoid.lambda.F3;
import org.rapidoid.lambda.Mapper;

@Authors("Nikolche Mihajlovski")
@Since("5.0.0")
public class HttpHandlers implements HttpMetadata {

	private static String param(Req req, final String paramName) {
		return req.data(paramName);
	}

	public static ReqHandler parameterized(final String paramName, final Mapper handler) {
		return new ReqHandler() {
			@Override
			public Object handle(Req req) throws Exception {
				String param = param(req, paramName);
				return handler.map(param);
			}
		};
	}

	public static ReqHandler parameterized(final String paramName1, final String paramName2,
			final F2 handler) {
		return new ReqHandler() {
			@Override
			public Object handle(Req req) throws Exception {
				String param1 = param(req, paramName1);
				String param2 = param(req, paramName2);
				return handler.execute(param1, param2);
			}
		};
	}

	public static ReqHandler parameterized(final String paramName1, final String paramName2, final String paramName3,
			final F3 handler) {
		return new ReqHandler() {
			@Override
			public Object handle(Req req) throws Exception {
				String param1 = param(req, paramName1);
				String param2 = param(req, paramName2);
				String param3 = param(req, paramName3);
				return handler.execute(param1, param2, param3);
			}
		};
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy