/src/main/java/com/twilio/rest/preview/trustedComms/PhoneCallCreator.java

http://github.com/twilio/twilio-java · Java · 583 lines · 271 code · 66 blank · 246 comment · 62 complexity · 0e0904544369855b0e7754750761f0b5 MD5 · raw file

  1. /**
  2. * This code was generated by
  3. * \ / _ _ _| _ _
  4. * | (_)\/(_)(_|\/| |(/_ v1.0.0
  5. * / /
  6. */
  7. package com.twilio.rest.preview.trustedComms;
  8. import com.twilio.base.Creator;
  9. import com.twilio.converter.Promoter;
  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.net.URI;
  19. import java.util.List;
  20. /**
  21. * PLEASE NOTE that this class contains preview products that are subject to
  22. * change. Use them with caution. If you currently do not have developer preview
  23. * access, please contact help@twilio.com.
  24. */
  25. public class PhoneCallCreator extends Creator<PhoneCall> {
  26. private final String from;
  27. private final String to;
  28. private String reason;
  29. private String applicationSid;
  30. private String callerId;
  31. private HttpMethod fallbackMethod;
  32. private URI fallbackUrl;
  33. private String machineDetection;
  34. private Integer machineDetectionSilenceTimeout;
  35. private Integer machineDetectionSpeechEndThreshold;
  36. private Integer machineDetectionSpeechThreshold;
  37. private Integer machineDetectionTimeout;
  38. private HttpMethod method;
  39. private Boolean record;
  40. private String recordingChannels;
  41. private String recordingStatusCallback;
  42. private List<String> recordingStatusCallbackEvent;
  43. private HttpMethod recordingStatusCallbackMethod;
  44. private String sendDigits;
  45. private String sipAuthPassword;
  46. private String sipAuthUsername;
  47. private URI statusCallback;
  48. private List<String> statusCallbackEvent;
  49. private HttpMethod statusCallbackMethod;
  50. private Integer timeout;
  51. private String trim;
  52. private URI url;
  53. /**
  54. * Construct a new PhoneCallCreator.
  55. *
  56. * @param from Twilio number from which to originate the call
  57. * @param to The terminating Phone Number
  58. */
  59. public PhoneCallCreator(final String from,
  60. final String to) {
  61. this.from = from;
  62. this.to = to;
  63. }
  64. /**
  65. * The business reason for this phone call that will appear in the terminating
  66. * device's screen. Max 50 characters..
  67. *
  68. * @param reason The business reason for this phone call
  69. * @return this
  70. */
  71. public PhoneCallCreator setReason(final String reason) {
  72. this.reason = reason;
  73. return this;
  74. }
  75. /**
  76. * Refers to the parameter with the same name when [initiating a call via Voice
  77. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  78. *
  79. * @param applicationSid Refers to the Voice API Initiate Call parameter
  80. * @return this
  81. */
  82. public PhoneCallCreator setApplicationSid(final String applicationSid) {
  83. this.applicationSid = applicationSid;
  84. return this;
  85. }
  86. /**
  87. * Refers to the parameter with the same name when [initiating a call via Voice
  88. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  89. *
  90. * @param callerId Refers to the Voice API Initiate Call parameter
  91. * @return this
  92. */
  93. public PhoneCallCreator setCallerId(final String callerId) {
  94. this.callerId = callerId;
  95. return this;
  96. }
  97. /**
  98. * Refers to the parameter with the same name when [initiating a call via Voice
  99. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  100. *
  101. * @param fallbackMethod Refers to the Voice API Initiate Call parameter
  102. * @return this
  103. */
  104. public PhoneCallCreator setFallbackMethod(final HttpMethod fallbackMethod) {
  105. this.fallbackMethod = fallbackMethod;
  106. return this;
  107. }
  108. /**
  109. * Refers to the parameter with the same name when [initiating a call via Voice
  110. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  111. *
  112. * @param fallbackUrl Refers to the Voice API Initiate Call parameter
  113. * @return this
  114. */
  115. public PhoneCallCreator setFallbackUrl(final URI fallbackUrl) {
  116. this.fallbackUrl = fallbackUrl;
  117. return this;
  118. }
  119. /**
  120. * Refers to the parameter with the same name when [initiating a call via Voice
  121. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  122. *
  123. * @param fallbackUrl Refers to the Voice API Initiate Call parameter
  124. * @return this
  125. */
  126. public PhoneCallCreator setFallbackUrl(final String fallbackUrl) {
  127. return setFallbackUrl(Promoter.uriFromString(fallbackUrl));
  128. }
  129. /**
  130. * Refers to the parameter with the same name when [initiating a call via Voice
  131. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  132. *
  133. * @param machineDetection Refers to the Voice API Initiate Call parameter
  134. * @return this
  135. */
  136. public PhoneCallCreator setMachineDetection(final String machineDetection) {
  137. this.machineDetection = machineDetection;
  138. return this;
  139. }
  140. /**
  141. * Refers to the parameter with the same name when [initiating a call via Voice
  142. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  143. *
  144. * @param machineDetectionSilenceTimeout Refers to the Voice API Initiate Call
  145. * parameter
  146. * @return this
  147. */
  148. public PhoneCallCreator setMachineDetectionSilenceTimeout(final Integer machineDetectionSilenceTimeout) {
  149. this.machineDetectionSilenceTimeout = machineDetectionSilenceTimeout;
  150. return this;
  151. }
  152. /**
  153. * Refers to the parameter with the same name when [initiating a call via Voice
  154. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  155. *
  156. * @param machineDetectionSpeechEndThreshold Refers to the Voice API Initiate
  157. * Call parameter
  158. * @return this
  159. */
  160. public PhoneCallCreator setMachineDetectionSpeechEndThreshold(final Integer machineDetectionSpeechEndThreshold) {
  161. this.machineDetectionSpeechEndThreshold = machineDetectionSpeechEndThreshold;
  162. return this;
  163. }
  164. /**
  165. * Refers to the parameter with the same name when [initiating a call via Voice
  166. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  167. *
  168. * @param machineDetectionSpeechThreshold Refers to the Voice API Initiate Call
  169. * parameter
  170. * @return this
  171. */
  172. public PhoneCallCreator setMachineDetectionSpeechThreshold(final Integer machineDetectionSpeechThreshold) {
  173. this.machineDetectionSpeechThreshold = machineDetectionSpeechThreshold;
  174. return this;
  175. }
  176. /**
  177. * Refers to the parameter with the same name when [initiating a call via Voice
  178. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  179. *
  180. * @param machineDetectionTimeout Refers to the Voice API Initiate Call
  181. * parameter
  182. * @return this
  183. */
  184. public PhoneCallCreator setMachineDetectionTimeout(final Integer machineDetectionTimeout) {
  185. this.machineDetectionTimeout = machineDetectionTimeout;
  186. return this;
  187. }
  188. /**
  189. * Refers to the parameter with the same name when [initiating a call via Voice
  190. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  191. *
  192. * @param method Refers to the Voice API Initiate Call parameter
  193. * @return this
  194. */
  195. public PhoneCallCreator setMethod(final HttpMethod method) {
  196. this.method = method;
  197. return this;
  198. }
  199. /**
  200. * Refers to the parameter with the same name when [initiating a call via Voice
  201. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  202. *
  203. * @param record Refers to the Voice API Initiate Call parameter
  204. * @return this
  205. */
  206. public PhoneCallCreator setRecord(final Boolean record) {
  207. this.record = record;
  208. return this;
  209. }
  210. /**
  211. * Refers to the parameter with the same name when [initiating a call via Voice
  212. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  213. *
  214. * @param recordingChannels Refers to the Voice API Initiate Call parameter
  215. * @return this
  216. */
  217. public PhoneCallCreator setRecordingChannels(final String recordingChannels) {
  218. this.recordingChannels = recordingChannels;
  219. return this;
  220. }
  221. /**
  222. * Refers to the parameter with the same name when [initiating a call via Voice
  223. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  224. *
  225. * @param recordingStatusCallback Refers to the Voice API Initiate Call
  226. * parameter
  227. * @return this
  228. */
  229. public PhoneCallCreator setRecordingStatusCallback(final String recordingStatusCallback) {
  230. this.recordingStatusCallback = recordingStatusCallback;
  231. return this;
  232. }
  233. /**
  234. * Refers to the parameter with the same name when [initiating a call via Voice
  235. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  236. *
  237. * @param recordingStatusCallbackEvent Refers to the Voice API Initiate Call
  238. * parameter
  239. * @return this
  240. */
  241. public PhoneCallCreator setRecordingStatusCallbackEvent(final List<String> recordingStatusCallbackEvent) {
  242. this.recordingStatusCallbackEvent = recordingStatusCallbackEvent;
  243. return this;
  244. }
  245. /**
  246. * Refers to the parameter with the same name when [initiating a call via Voice
  247. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  248. *
  249. * @param recordingStatusCallbackEvent Refers to the Voice API Initiate Call
  250. * parameter
  251. * @return this
  252. */
  253. public PhoneCallCreator setRecordingStatusCallbackEvent(final String recordingStatusCallbackEvent) {
  254. return setRecordingStatusCallbackEvent(Promoter.listOfOne(recordingStatusCallbackEvent));
  255. }
  256. /**
  257. * Refers to the parameter with the same name when [initiating a call via Voice
  258. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  259. *
  260. * @param recordingStatusCallbackMethod Refers to the Voice API Initiate Call
  261. * parameter
  262. * @return this
  263. */
  264. public PhoneCallCreator setRecordingStatusCallbackMethod(final HttpMethod recordingStatusCallbackMethod) {
  265. this.recordingStatusCallbackMethod = recordingStatusCallbackMethod;
  266. return this;
  267. }
  268. /**
  269. * Refers to the parameter with the same name when [initiating a call via Voice
  270. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  271. *
  272. * @param sendDigits Refers to the Voice API Initiate Call parameter
  273. * @return this
  274. */
  275. public PhoneCallCreator setSendDigits(final String sendDigits) {
  276. this.sendDigits = sendDigits;
  277. return this;
  278. }
  279. /**
  280. * Refers to the parameter with the same name when [initiating a call via Voice
  281. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  282. *
  283. * @param sipAuthPassword Refers to the Voice API Initiate Call parameter
  284. * @return this
  285. */
  286. public PhoneCallCreator setSipAuthPassword(final String sipAuthPassword) {
  287. this.sipAuthPassword = sipAuthPassword;
  288. return this;
  289. }
  290. /**
  291. * Refers to the parameter with the same name when [initiating a call via Voice
  292. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  293. *
  294. * @param sipAuthUsername Refers to the Voice API Initiate Call parameter
  295. * @return this
  296. */
  297. public PhoneCallCreator setSipAuthUsername(final String sipAuthUsername) {
  298. this.sipAuthUsername = sipAuthUsername;
  299. return this;
  300. }
  301. /**
  302. * Refers to the parameter with the same name when [initiating a call via Voice
  303. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  304. *
  305. * @param statusCallback Refers to the Voice API Initiate Call parameter
  306. * @return this
  307. */
  308. public PhoneCallCreator setStatusCallback(final URI statusCallback) {
  309. this.statusCallback = statusCallback;
  310. return this;
  311. }
  312. /**
  313. * Refers to the parameter with the same name when [initiating a call via Voice
  314. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  315. *
  316. * @param statusCallback Refers to the Voice API Initiate Call parameter
  317. * @return this
  318. */
  319. public PhoneCallCreator setStatusCallback(final String statusCallback) {
  320. return setStatusCallback(Promoter.uriFromString(statusCallback));
  321. }
  322. /**
  323. * Refers to the parameter with the same name when [initiating a call via Voice
  324. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  325. *
  326. * @param statusCallbackEvent Refers to the Voice API Initiate Call parameter
  327. * @return this
  328. */
  329. public PhoneCallCreator setStatusCallbackEvent(final List<String> statusCallbackEvent) {
  330. this.statusCallbackEvent = statusCallbackEvent;
  331. return this;
  332. }
  333. /**
  334. * Refers to the parameter with the same name when [initiating a call via Voice
  335. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  336. *
  337. * @param statusCallbackEvent Refers to the Voice API Initiate Call parameter
  338. * @return this
  339. */
  340. public PhoneCallCreator setStatusCallbackEvent(final String statusCallbackEvent) {
  341. return setStatusCallbackEvent(Promoter.listOfOne(statusCallbackEvent));
  342. }
  343. /**
  344. * Refers to the parameter with the same name when [initiating a call via Voice
  345. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  346. *
  347. * @param statusCallbackMethod Refers to the Voice API Initiate Call parameter
  348. * @return this
  349. */
  350. public PhoneCallCreator setStatusCallbackMethod(final HttpMethod statusCallbackMethod) {
  351. this.statusCallbackMethod = statusCallbackMethod;
  352. return this;
  353. }
  354. /**
  355. * Refers to the parameter with the same name when [initiating a call via Voice
  356. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  357. *
  358. * @param timeout Refers to the Voice API Initiate Call parameter
  359. * @return this
  360. */
  361. public PhoneCallCreator setTimeout(final Integer timeout) {
  362. this.timeout = timeout;
  363. return this;
  364. }
  365. /**
  366. * Refers to the parameter with the same name when [initiating a call via Voice
  367. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  368. *
  369. * @param trim Refers to the Voice API Initiate Call parameter
  370. * @return this
  371. */
  372. public PhoneCallCreator setTrim(final String trim) {
  373. this.trim = trim;
  374. return this;
  375. }
  376. /**
  377. * Refers to the parameter with the same name when [initiating a call via Voice
  378. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  379. *
  380. * @param url Refers to the Voice API Initiate Call parameter
  381. * @return this
  382. */
  383. public PhoneCallCreator setUrl(final URI url) {
  384. this.url = url;
  385. return this;
  386. }
  387. /**
  388. * Refers to the parameter with the same name when [initiating a call via Voice
  389. * API](https://www.twilio.com/docs/voice/api/call#create-a-call-resource).
  390. *
  391. * @param url Refers to the Voice API Initiate Call parameter
  392. * @return this
  393. */
  394. public PhoneCallCreator setUrl(final String url) {
  395. return setUrl(Promoter.uriFromString(url));
  396. }
  397. /**
  398. * Make the request to the Twilio API to perform the create.
  399. *
  400. * @param client TwilioRestClient with which to make the request
  401. * @return Created PhoneCall
  402. */
  403. @Override
  404. @SuppressWarnings("checkstyle:linelength")
  405. public PhoneCall create(final TwilioRestClient client) {
  406. Request request = new Request(
  407. HttpMethod.POST,
  408. Domains.PREVIEW.toString(),
  409. "/TrustedComms/Business/PhoneCalls",
  410. client.getRegion()
  411. );
  412. addPostParams(request);
  413. Response response = client.request(request);
  414. if (response == null) {
  415. throw new ApiConnectionException("PhoneCall creation failed: Unable to connect to server");
  416. } else if (!TwilioRestClient.SUCCESS.apply(response.getStatusCode())) {
  417. RestException restException = RestException.fromJson(response.getStream(), client.getObjectMapper());
  418. if (restException == null) {
  419. throw new ApiException("Server Error, no content");
  420. }
  421. throw new ApiException(restException);
  422. }
  423. return PhoneCall.fromJson(response.getStream(), client.getObjectMapper());
  424. }
  425. /**
  426. * Add the requested post parameters to the Request.
  427. *
  428. * @param request Request to add post params to
  429. */
  430. private void addPostParams(final Request request) {
  431. if (from != null) {
  432. request.addPostParam("From", from);
  433. }
  434. if (to != null) {
  435. request.addPostParam("To", to);
  436. }
  437. if (reason != null) {
  438. request.addPostParam("Reason", reason);
  439. }
  440. if (applicationSid != null) {
  441. request.addPostParam("ApplicationSid", applicationSid);
  442. }
  443. if (callerId != null) {
  444. request.addPostParam("CallerId", callerId);
  445. }
  446. if (fallbackMethod != null) {
  447. request.addPostParam("FallbackMethod", fallbackMethod.toString());
  448. }
  449. if (fallbackUrl != null) {
  450. request.addPostParam("FallbackUrl", fallbackUrl.toString());
  451. }
  452. if (machineDetection != null) {
  453. request.addPostParam("MachineDetection", machineDetection);
  454. }
  455. if (machineDetectionSilenceTimeout != null) {
  456. request.addPostParam("MachineDetectionSilenceTimeout", machineDetectionSilenceTimeout.toString());
  457. }
  458. if (machineDetectionSpeechEndThreshold != null) {
  459. request.addPostParam("MachineDetectionSpeechEndThreshold", machineDetectionSpeechEndThreshold.toString());
  460. }
  461. if (machineDetectionSpeechThreshold != null) {
  462. request.addPostParam("MachineDetectionSpeechThreshold", machineDetectionSpeechThreshold.toString());
  463. }
  464. if (machineDetectionTimeout != null) {
  465. request.addPostParam("MachineDetectionTimeout", machineDetectionTimeout.toString());
  466. }
  467. if (method != null) {
  468. request.addPostParam("Method", method.toString());
  469. }
  470. if (record != null) {
  471. request.addPostParam("Record", record.toString());
  472. }
  473. if (recordingChannels != null) {
  474. request.addPostParam("RecordingChannels", recordingChannels);
  475. }
  476. if (recordingStatusCallback != null) {
  477. request.addPostParam("RecordingStatusCallback", recordingStatusCallback);
  478. }
  479. if (recordingStatusCallbackEvent != null) {
  480. for (String prop : recordingStatusCallbackEvent) {
  481. request.addPostParam("RecordingStatusCallbackEvent", prop);
  482. }
  483. }
  484. if (recordingStatusCallbackMethod != null) {
  485. request.addPostParam("RecordingStatusCallbackMethod", recordingStatusCallbackMethod.toString());
  486. }
  487. if (sendDigits != null) {
  488. request.addPostParam("SendDigits", sendDigits);
  489. }
  490. if (sipAuthPassword != null) {
  491. request.addPostParam("SipAuthPassword", sipAuthPassword);
  492. }
  493. if (sipAuthUsername != null) {
  494. request.addPostParam("SipAuthUsername", sipAuthUsername);
  495. }
  496. if (statusCallback != null) {
  497. request.addPostParam("StatusCallback", statusCallback.toString());
  498. }
  499. if (statusCallbackEvent != null) {
  500. for (String prop : statusCallbackEvent) {
  501. request.addPostParam("StatusCallbackEvent", prop);
  502. }
  503. }
  504. if (statusCallbackMethod != null) {
  505. request.addPostParam("StatusCallbackMethod", statusCallbackMethod.toString());
  506. }
  507. if (timeout != null) {
  508. request.addPostParam("Timeout", timeout.toString());
  509. }
  510. if (trim != null) {
  511. request.addPostParam("Trim", trim);
  512. }
  513. if (url != null) {
  514. request.addPostParam("Url", url.toString());
  515. }
  516. }
  517. }