/src/main/java/com/twilio/rest/chat/v2/service/channel/MemberUpdater.java

http://github.com/twilio/twilio-java · Java · 220 lines · 106 code · 23 blank · 91 comment · 20 complexity · 4f7e63ce12930ada4e266d79072eec59 MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.chat.v2.service.channel;
  8. import com.twilio.base.Updater;
  9. import com.twilio.converter.DateConverter;
  10. import com.twilio.exception.ApiConnectionException;
  11. import com.twilio.exception.ApiException;
  12. import com.twilio.exception.RestException;
  13. import com.twilio.http.HttpMethod;
  14. import com.twilio.http.Request;
  15. import com.twilio.http.Response;
  16. import com.twilio.http.TwilioRestClient;
  17. import com.twilio.rest.Domains;
  18. import java.time.ZonedDateTime;
  19. public class MemberUpdater extends Updater<Member> {
  20. private final String pathServiceSid;
  21. private final String pathChannelSid;
  22. private final String pathSid;
  23. private String roleSid;
  24. private Integer lastConsumedMessageIndex;
  25. private ZonedDateTime lastConsumptionTimestamp;
  26. private ZonedDateTime dateCreated;
  27. private ZonedDateTime dateUpdated;
  28. private String attributes;
  29. private Member.WebhookEnabledType xTwilioWebhookEnabled;
  30. /**
  31. * Construct a new MemberUpdater.
  32. *
  33. * @param pathServiceSid The SID of the Service to create the resource under
  34. * @param pathChannelSid The SID of the channel the member to update belongs to
  35. * @param pathSid The SID of the Member resource to update
  36. */
  37. public MemberUpdater(final String pathServiceSid,
  38. final String pathChannelSid,
  39. final String pathSid) {
  40. this.pathServiceSid = pathServiceSid;
  41. this.pathChannelSid = pathChannelSid;
  42. this.pathSid = pathSid;
  43. }
  44. /**
  45. * The SID of the <a
  46. * href="https://www.twilio.com/docs/chat/rest/role-resource">Role</a> to assign
  47. * to the member. The default roles are those specified on the <a
  48. * href="https://www.twilio.com/docs/chat/rest/service-resource">Service</a>..
  49. *
  50. * @param roleSid The SID of the Role to assign to the member
  51. * @return this
  52. */
  53. public MemberUpdater setRoleSid(final String roleSid) {
  54. this.roleSid = roleSid;
  55. return this;
  56. }
  57. /**
  58. * The index of the last <a
  59. * href="https://www.twilio.com/docs/chat/rest/message-resource">Message</a>
  60. * that the Member has read within the <a
  61. * href="https://www.twilio.com/docs/chat/channels">Channel</a>..
  62. *
  63. * @param lastConsumedMessageIndex The index of the last consumed Message for
  64. * the Channel for the Member
  65. * @return this
  66. */
  67. public MemberUpdater setLastConsumedMessageIndex(final Integer lastConsumedMessageIndex) {
  68. this.lastConsumedMessageIndex = lastConsumedMessageIndex;
  69. return this;
  70. }
  71. /**
  72. * The <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO 8601</a> timestamp
  73. * of the last <a
  74. * href="https://www.twilio.com/docs/chat/rest/message-resource">Message</a>
  75. * read event for the Member within the <a
  76. * href="https://www.twilio.com/docs/chat/channels">Channel</a>..
  77. *
  78. * @param lastConsumptionTimestamp The ISO 8601 based timestamp string
  79. * representing the datetime of the last Message
  80. * read event for the Member within the Channel
  81. * @return this
  82. */
  83. public MemberUpdater setLastConsumptionTimestamp(final ZonedDateTime lastConsumptionTimestamp) {
  84. this.lastConsumptionTimestamp = lastConsumptionTimestamp;
  85. return this;
  86. }
  87. /**
  88. * The date, specified in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO
  89. * 8601</a> format, to assign to the resource as the date it was created. The
  90. * default value is the current time set by the Chat service. Note that this
  91. * parameter should only be used when a Member is being recreated from a
  92. * backup/separate source..
  93. *
  94. * @param dateCreated The ISO 8601 date and time in GMT when the resource was
  95. * created
  96. * @return this
  97. */
  98. public MemberUpdater setDateCreated(final ZonedDateTime dateCreated) {
  99. this.dateCreated = dateCreated;
  100. return this;
  101. }
  102. /**
  103. * The date, specified in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO
  104. * 8601</a> format, to assign to the resource as the date it was last updated..
  105. *
  106. * @param dateUpdated The ISO 8601 date and time in GMT when the resource was
  107. * updated
  108. * @return this
  109. */
  110. public MemberUpdater setDateUpdated(final ZonedDateTime dateUpdated) {
  111. this.dateUpdated = dateUpdated;
  112. return this;
  113. }
  114. /**
  115. * A valid JSON string that contains application-specific data..
  116. *
  117. * @param attributes A valid JSON string that contains application-specific data
  118. * @return this
  119. */
  120. public MemberUpdater setAttributes(final String attributes) {
  121. this.attributes = attributes;
  122. return this;
  123. }
  124. /**
  125. * The X-Twilio-Webhook-Enabled HTTP request header.
  126. *
  127. * @param xTwilioWebhookEnabled The X-Twilio-Webhook-Enabled HTTP request header
  128. * @return this
  129. */
  130. public MemberUpdater setXTwilioWebhookEnabled(final Member.WebhookEnabledType xTwilioWebhookEnabled) {
  131. this.xTwilioWebhookEnabled = xTwilioWebhookEnabled;
  132. return this;
  133. }
  134. /**
  135. * Make the request to the Twilio API to perform the update.
  136. *
  137. * @param client TwilioRestClient with which to make the request
  138. * @return Updated Member
  139. */
  140. @Override
  141. @SuppressWarnings("checkstyle:linelength")
  142. public Member update(final TwilioRestClient client) {
  143. Request request = new Request(
  144. HttpMethod.POST,
  145. Domains.CHAT.toString(),
  146. "/v2/Services/" + this.pathServiceSid + "/Channels/" + this.pathChannelSid + "/Members/" + this.pathSid + ""
  147. );
  148. addPostParams(request);
  149. addHeaderParams(request);
  150. Response response = client.request(request);
  151. if (response == null) {
  152. throw new ApiConnectionException("Member update failed: Unable to connect to server");
  153. } else if (!TwilioRestClient.SUCCESS.test(response.getStatusCode())) {
  154. RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
  155. if (restException == null) {
  156. throw new ApiException("Server Error, no content");
  157. }
  158. throw new ApiException(restException);
  159. }
  160. return Member.fromJson(response.getStream(), client.getObjectMapper());
  161. }
  162. /**
  163. * Add the requested header parameters to the Request.
  164. *
  165. * @param request Request to add header params to
  166. */
  167. private void addHeaderParams(final Request request) {
  168. if (xTwilioWebhookEnabled != null) {
  169. request.addHeaderParam("X-Twilio-Webhook-Enabled", xTwilioWebhookEnabled.toString());
  170. }
  171. }
  172. /**
  173. * Add the requested post parameters to the Request.
  174. *
  175. * @param request Request to add post params to
  176. */
  177. private void addPostParams(final Request request) {
  178. if (roleSid != null) {
  179. request.addPostParam("RoleSid", roleSid);
  180. }
  181. if (lastConsumedMessageIndex != null) {
  182. request.addPostParam("LastConsumedMessageIndex", lastConsumedMessageIndex.toString());
  183. }
  184. if (lastConsumptionTimestamp != null) {
  185. request.addPostParam("LastConsumptionTimestamp", lastConsumptionTimestamp.toInstant().toString());
  186. }
  187. if (dateCreated != null) {
  188. request.addPostParam("DateCreated", dateCreated.toInstant().toString());
  189. }
  190. if (dateUpdated != null) {
  191. request.addPostParam("DateUpdated", dateUpdated.toInstant().toString());
  192. }
  193. if (attributes != null) {
  194. request.addPostParam("Attributes", attributes);
  195. }
  196. }
  197. }