/src/main/java/com/twilio/rest/fax/v1/FaxReader.java

http://github.com/twilio/twilio-java · Java · 222 lines · 113 code · 23 blank · 86 comment · 16 complexity · 1ec0846adfead6668fb0b4a385c67b1d MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.fax.v1;
  8. import com.twilio.base.Page;
  9. import com.twilio.base.Reader;
  10. import com.twilio.base.ResourceSet;
  11. import com.twilio.converter.DateConverter;
  12. import com.twilio.exception.ApiConnectionException;
  13. import com.twilio.exception.ApiException;
  14. import com.twilio.exception.RestException;
  15. import com.twilio.http.HttpMethod;
  16. import com.twilio.http.Request;
  17. import com.twilio.http.Response;
  18. import com.twilio.http.TwilioRestClient;
  19. import com.twilio.rest.Domains;
  20. import java.time.ZonedDateTime;
  21. /**
  22. * PLEASE NOTE that this class contains beta products that are subject to
  23. * change. Use them with caution.
  24. */
  25. public class FaxReader extends Reader<Fax> {
  26. private String from;
  27. private String to;
  28. private ZonedDateTime dateCreatedOnOrBefore;
  29. private ZonedDateTime dateCreatedAfter;
  30. /**
  31. * Retrieve only those faxes sent from this phone number, specified in <a
  32. * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> format..
  33. *
  34. * @param from Retrieve only those faxes sent from this phone number
  35. * @return this
  36. */
  37. public FaxReader setFrom(final String from) {
  38. this.from = from;
  39. return this;
  40. }
  41. /**
  42. * Retrieve only those faxes sent to this phone number, specified in <a
  43. * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> format..
  44. *
  45. * @param to Retrieve only those faxes sent to this phone number
  46. * @return this
  47. */
  48. public FaxReader setTo(final String to) {
  49. this.to = to;
  50. return this;
  51. }
  52. /**
  53. * Retrieve only those faxes with a `date_created` that is before or equal to
  54. * this value, specified in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO
  55. * 8601</a> format..
  56. *
  57. * @param dateCreatedOnOrBefore Retrieve only faxes created on or before this
  58. * date
  59. * @return this
  60. */
  61. public FaxReader setDateCreatedOnOrBefore(final ZonedDateTime dateCreatedOnOrBefore) {
  62. this.dateCreatedOnOrBefore = dateCreatedOnOrBefore;
  63. return this;
  64. }
  65. /**
  66. * Retrieve only those faxes with a `date_created` that is later than this
  67. * value, specified in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO
  68. * 8601</a> format..
  69. *
  70. * @param dateCreatedAfter Retrieve only faxes created after this date
  71. * @return this
  72. */
  73. public FaxReader setDateCreatedAfter(final ZonedDateTime dateCreatedAfter) {
  74. this.dateCreatedAfter = dateCreatedAfter;
  75. return this;
  76. }
  77. /**
  78. * Make the request to the Twilio API to perform the read.
  79. *
  80. * @param client TwilioRestClient with which to make the request
  81. * @return Fax ResourceSet
  82. */
  83. @Override
  84. public ResourceSet<Fax> read(final TwilioRestClient client) {
  85. return new ResourceSet<>(this, client, firstPage(client));
  86. }
  87. /**
  88. * Make the request to the Twilio API to perform the read.
  89. *
  90. * @param client TwilioRestClient with which to make the request
  91. * @return Fax ResourceSet
  92. */
  93. @Override
  94. @SuppressWarnings("checkstyle:linelength")
  95. public Page<Fax> firstPage(final TwilioRestClient client) {
  96. Request request = new Request(
  97. HttpMethod.GET,
  98. Domains.FAX.toString(),
  99. "/v1/Faxes"
  100. );
  101. addQueryParams(request);
  102. return pageForRequest(client, request);
  103. }
  104. /**
  105. * Retrieve the target page from the Twilio API.
  106. *
  107. * @param targetUrl API-generated URL for the requested results page
  108. * @param client TwilioRestClient with which to make the request
  109. * @return Fax ResourceSet
  110. */
  111. @Override
  112. @SuppressWarnings("checkstyle:linelength")
  113. public Page<Fax> getPage(final String targetUrl, final TwilioRestClient client) {
  114. Request request = new Request(
  115. HttpMethod.GET,
  116. targetUrl
  117. );
  118. return pageForRequest(client, request);
  119. }
  120. /**
  121. * Retrieve the next page from the Twilio API.
  122. *
  123. * @param page current page
  124. * @param client TwilioRestClient with which to make the request
  125. * @return Next Page
  126. */
  127. @Override
  128. public Page<Fax> nextPage(final Page<Fax> page,
  129. final TwilioRestClient client) {
  130. Request request = new Request(
  131. HttpMethod.GET,
  132. page.getNextPageUrl(Domains.FAX.toString())
  133. );
  134. return pageForRequest(client, request);
  135. }
  136. /**
  137. * Retrieve the previous page from the Twilio API.
  138. *
  139. * @param page current page
  140. * @param client TwilioRestClient with which to make the request
  141. * @return Previous Page
  142. */
  143. @Override
  144. public Page<Fax> previousPage(final Page<Fax> page,
  145. final TwilioRestClient client) {
  146. Request request = new Request(
  147. HttpMethod.GET,
  148. page.getPreviousPageUrl(Domains.FAX.toString())
  149. );
  150. return pageForRequest(client, request);
  151. }
  152. /**
  153. * Generate a Page of Fax Resources for a given request.
  154. *
  155. * @param client TwilioRestClient with which to make the request
  156. * @param request Request to generate a page for
  157. * @return Page for the Request
  158. */
  159. private Page<Fax> pageForRequest(final TwilioRestClient client, final Request request) {
  160. Response response = client.request(request);
  161. if (response == null) {
  162. throw new ApiConnectionException("Fax read failed: Unable to connect to server");
  163. } else if (!TwilioRestClient.SUCCESS.test(response.getStatusCode())) {
  164. RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
  165. if (restException == null) {
  166. throw new ApiException("Server Error, no content");
  167. }
  168. throw new ApiException(restException);
  169. }
  170. return Page.fromJson(
  171. "faxes",
  172. response.getContent(),
  173. Fax.class,
  174. client.getObjectMapper()
  175. );
  176. }
  177. /**
  178. * Add the requested query string arguments to the Request.
  179. *
  180. * @param request Request to add query string arguments to
  181. */
  182. private void addQueryParams(final Request request) {
  183. if (from != null) {
  184. request.addQueryParam("From", from);
  185. }
  186. if (to != null) {
  187. request.addQueryParam("To", to);
  188. }
  189. if (dateCreatedOnOrBefore != null) {
  190. request.addQueryParam("DateCreatedOnOrBefore", dateCreatedOnOrBefore.toInstant().toString());
  191. }
  192. if (dateCreatedAfter != null) {
  193. request.addQueryParam("DateCreatedAfter", dateCreatedAfter.toInstant().toString());
  194. }
  195. if (getPageSize() != null) {
  196. request.addQueryParam("PageSize", Integer.toString(getPageSize()));
  197. }
  198. }
  199. }