Package br.com.caelum.vraptor.view

Source Code of br.com.caelum.vraptor.view.DefaultRefererResult

/***
* Copyright (c) 2009 Caelum - www.caelum.com.br/opensource
* All rights reserved.
*
* 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.
*/

package br.com.caelum.vraptor.view;

import static br.com.caelum.vraptor.view.Results.logic;
import static br.com.caelum.vraptor.view.Results.page;
import static com.google.common.base.Preconditions.checkState;

import java.util.ArrayList;

import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;

import net.vidageek.mirror.dsl.Mirror;
import br.com.caelum.vraptor.Result;
import br.com.caelum.vraptor.controller.ControllerMethod;
import br.com.caelum.vraptor.controller.HttpMethod;
import br.com.caelum.vraptor.http.MutableRequest;
import br.com.caelum.vraptor.http.ParametersProvider;
import br.com.caelum.vraptor.http.route.ControllerNotFoundException;
import br.com.caelum.vraptor.http.route.MethodNotAllowedException;
import br.com.caelum.vraptor.http.route.Router;
import br.com.caelum.vraptor.validator.Message;

@RequestScoped
public class DefaultRefererResult implements RefererResult {

  private final MutableRequest request;
  private final Result result;
  private final Router router;
  private final ParametersProvider provider;

  /**
   * @deprecated CDI eyes only
   */
  protected DefaultRefererResult() {
    this(null, null, null, null);
  }

  @Inject
  public DefaultRefererResult(Result result, MutableRequest request, Router router, ParametersProvider provider) {
    this.result = result;
    this.request = request;
    this.router = router;
    this.provider = provider;
  }

  @Override
  public void forward() throws IllegalStateException {
    String referer = getReferer();

    try {
      ControllerMethod method = router.parse(referer, HttpMethod.GET, request);
      executeMethod(method, result.use(logic()).forwardTo(method.getController().getType()));
    } catch (ControllerNotFoundException | MethodNotAllowedException e) {
      result.use(page()).forwardTo(referer);
    }
  }

  private void executeMethod(ControllerMethod method, Object instance) {
    new Mirror().on(instance).invoke().method(method.getMethod())
      .withArgs(provider.getParametersFor(method, new ArrayList<Message>()));
  }

  @Override
  public void redirect() throws IllegalStateException {
    String referer = getReferer();
    try {
      ControllerMethod method = router.parse(referer, HttpMethod.GET, request);
      executeMethod(method, result.use(logic()).redirectTo(method.getController().getType()));
    } catch (ControllerNotFoundException | MethodNotAllowedException e) {
      result.use(page()).redirectTo(referer);
    }
  }

  private String getReferer() {
    String referer = request.getHeader("Referer");
    checkState(referer != null, "The Referer header was not specified");

    String path = request.getContextPath();
    return referer.substring(referer.indexOf(path) + path.length());
  }

}
TOP

Related Classes of br.com.caelum.vraptor.view.DefaultRefererResult

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.