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

org.tinygroup.urlrestful.impl.UrlRestfulManagerImpl Maven / Gradle / Ivy

The newest version!
/**
 *  Copyright (c) 1997-2013, www.tinygroup.org ([email protected]).
 *
 *  Licensed under the GPL, Version 3.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.gnu.org/licenses/gpl.html
 *
 *  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.tinygroup.urlrestful.impl;

import java.util.ArrayList;
import java.util.List;

import org.tinygroup.commons.match.AntPathStringMatcher;
import org.tinygroup.commons.tools.CollectionUtil;
import org.tinygroup.commons.tools.StringUtil;
import org.tinygroup.urlrestful.Context;
import org.tinygroup.urlrestful.UrlRestfulManager;
import org.tinygroup.urlrestful.config.Mapping;
import org.tinygroup.urlrestful.config.Rule;
import org.tinygroup.urlrestful.config.Rules;

/**
 * 
 * @author renhui
 * 
 */
public class UrlRestfulManagerImpl implements UrlRestfulManager {

	private List restfulContainer = new ArrayList();

	public void addRules(Rules Rules) {
		restfulContainer.addAll(Rules.getRules());
	}

	public void removeRules(Rules Rules) {
		restfulContainer.removeAll(Rules.getRules());
	}

	public Context getContext(String requestPath, String httpMethod,
			String accept) {
		String requestAccept = accept;
		if (StringUtil.isBlank(requestAccept)) {
			requestAccept = Mapping.TEXT_HTML;
		}
		for (Rule rule : restfulContainer) {
			AntPathStringMatcher matcher = new AntPathStringMatcher(
					rule.getPattern(), requestPath);
			if (matcher.matches()) {
				List mappings = rule
						.getUrlMappingsByMethod(httpMethod);
				Mapping mapping = getUrlMapping(requestAccept, mappings);
				if (mapping != null) {
					return new Context(rule, mapping,
							matcher.getUriTemplateVariables());
				}
			}

		}
		return null;
	}

	private Mapping getUrlMapping(String requestContentType,
			List mappings) {
		if (!CollectionUtil.isEmpty(mappings)) {
			for (Mapping mapping : mappings) {
				String contentType = mapping.getAccept();
				if (requestContentType != null
						&& requestContentType.indexOf(contentType) != -1) {
					return mapping;
				}
			}
		}
		return null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy