Fixed bug / refined GraphApiErrorResponseErrorHandler
[facebook-errors] / src / main / java / de / juplo / facebook / errors / GraphApiErrorResponseErrorHandler.java
1 package de.juplo.facebook.errors;
2
3
4 import java.io.ByteArrayInputStream;
5 import java.io.IOException;
6 import java.io.InputStream;
7 import java.nio.charset.Charset;
8 import org.slf4j.Logger;
9 import org.slf4j.LoggerFactory;
10 import org.springframework.http.HttpHeaders;
11 import org.springframework.http.HttpStatus;
12 import org.springframework.http.client.ClientHttpResponse;
13 import org.springframework.util.FileCopyUtils;
14 import org.springframework.web.client.DefaultResponseErrorHandler;
15 import org.springframework.web.client.ResponseErrorHandler;
16
17
18
19 /**
20  * Error-Handler for error-messages from the Facebook Graph-API.
21  * <p>
22  * This error-handler handels responses withe the HTTP-status code
23  * {@code 400 BAD REQUEST}. It tries to extract and parse the error-message
24  * from the HTTP-body. Successfully extracted and parsed messages are mapped
25  * to a hierarchy of exceptions, that reflects the hierarchy of the error-
26  * codes and -types.
27  * <p>
28  * If the HTTP-status-code of the response is not {@code 400 BAD REQUEST} or
29  * the HTTP-body could not be extracted or parsed, this error-handler
30  * delegates the handling to its parent.
31  *
32  * @see <a href="https://developers.facebook.com/docs/graph-api/using-graph-api/v2.5#errors">Graph-API Documentation</a>
33  * @see <a href="http://fbdevwiki.com/wiki/Error_codes">Inofficial Wiki For Facebook-Developers</a>
34  * @author Kai Moritz
35  */
36 public class GraphApiErrorResponseErrorHandler implements ResponseErrorHandler
37 {
38   private final static Logger LOG =
39       LoggerFactory.getLogger(GraphApiErrorResponseErrorHandler.class);
40
41   private final ResponseErrorHandler parent;
42
43
44   public GraphApiErrorResponseErrorHandler()
45   {
46     this(null);
47   }
48
49   public GraphApiErrorResponseErrorHandler(ResponseErrorHandler errorHandler)
50   {
51     this.parent =
52         errorHandler == null
53             ? new DefaultResponseErrorHandler()
54             : errorHandler;
55   }
56
57
58   private boolean hasGraphApiError(ClientHttpResponse response) throws IOException
59   {
60     return HttpStatus.Series.CLIENT_ERROR.equals(response.getStatusCode().series());
61   }
62
63   @Override
64   public boolean hasError(ClientHttpResponse response) throws IOException
65   {
66     return hasGraphApiError(response) || parent.hasError(response);
67   }
68
69   @Override
70   public void handleError(final ClientHttpResponse response) throws IOException
71   {
72     if (!hasGraphApiError(response))
73     {
74       parent.handleError(response);
75       return;
76     }
77
78     if (response.getBody() == null)
79     {
80       // There is no body to interpret in the HTTP-message
81       LOG.warn("Could not convert the response into an exception, because there is no message-body.");
82       parent.handleError(response);
83       return;
84     }
85
86     final byte[] body = FileCopyUtils.copyToByteArray(response.getBody());
87     GraphApiException error;
88
89     error = GraphApiException.create(response.getStatusCode(), response.getHeaders(), body);
90     if (LOG.isInfoEnabled())
91       LOG.info("error-response: {}", new String(body, Charset.forName("UTF-8")));
92     if (!error.getClass().equals(ErrorResponseParsingErrorException.class))
93     {
94       throw error;
95     }
96     else
97     {
98       // The body of the HTTP-message could not be parsed.
99       // Let the parent error-handler try to handle the response.
100       // To do so, we have to wrap the original response to fill in
101       // the buffered body, if needed
102       ClientHttpResponse buffered = new ClientHttpResponse()
103       {
104         @Override
105         public HttpStatus getStatusCode() throws IOException
106         {
107           return response.getStatusCode();
108         }
109
110         @Override
111         public synchronized InputStream getBody() throws IOException
112         {
113           return new ByteArrayInputStream(body);
114         }
115
116         @Override
117         public HttpHeaders getHeaders()
118         {
119           return response.getHeaders();
120         }
121
122         @Override
123         public String getStatusText() throws IOException
124         {
125           return response.getStatusText();
126         }
127
128         @Override
129         public void close()
130         {
131           response.close();
132         }
133
134         @Override
135         public int getRawStatusCode() throws IOException
136         {
137           return response.getRawStatusCode();
138         }
139       };
140
141       parent.handleError(buffered);
142       return;
143     }
144   }
145 }