Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Distinguish ajax requests from full requests in JSF custom validator

My validator needs to know if it is a full request or an ajax request. In my current solution I check the http request header for the X-Requested-With element:

public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
    HttpServletRequest req = (HttpServletRequest) context.getExternalContext().getRequest();
        if (req.getHeader("X-Requested-With") != null) {
           // do something
        } else {
           // do something else
        }
       ...
}

Is there a better approach to achieve this? Is my solution "safe" with respect to different browsers / javascript libs?

UPDATE:

Just found out that the X-Requested-With header is only present if the ajax request comes from the Primefaces component library (the <p:ajax>tag).

It is not present if I use plain JSF <f:ajax>. So my approach won't work with <f:ajax>.

Using <f:ajax> there is a different header:

Faces-Request:partial/ajax

The solution proposed by Osw works for <f:ajax> and <p:ajax>:

PartialViewContext#isAjaxRequest()

like image 501
Matt Handy Avatar asked Sep 15 '11 08:09

Matt Handy


2 Answers

I would not rely on http header. Never tried it by myself, but you could do the following:

PartialViewContext pvc = facesContext.getPartialViewContext();
if(pvc.isAjaxRequest()) {
// ...
} else {
// ...
}

Another option is using isPartialRequest() instead of isAjaxRequest()

like image 91
andbi Avatar answered Oct 23 '22 10:10

andbi


I'd that it is a reliable way to check it. This is exactly how for example Django checks for AJAX requests:

 def is_ajax(self):
        return self.META.get('HTTP_X_REQUESTED_WITH') == 'XMLHttpRequest'

Also listed here as such: http://en.wikipedia.org/wiki/List_of_HTTP_header_fields

like image 38
Uku Loskit Avatar answered Oct 23 '22 09:10

Uku Loskit