/src/api/requests/Comment.java

http://github.com/Gwindow/WhatAPI · Java · 166 lines · 88 code · 32 blank · 46 comment · 0 complexity · ebfa421817336e8e054a3b9b7558dc4f MD5 · raw file

  1. package api.requests;
  2. import api.comments.SimpleComment;
  3. import api.soup.MySoup;
  4. import com.google.gson.annotations.SerializedName;
  5. import java.util.Date;
  6. /**
  7. * The Class SimpleComment.
  8. * Stores information about a user's comment on a Request
  9. *
  10. * @author Gwindow
  11. */
  12. public class Comment implements SimpleComment {
  13. /**
  14. * The time the comment was made
  15. */
  16. private String addedTime;
  17. /**
  18. * The author's user id
  19. */
  20. private Number authorId;
  21. /**
  22. * The author's avatar url.
  23. */
  24. private String avatar;
  25. /**
  26. * The author's user class.
  27. */
  28. @SerializedName("class")
  29. private String userClass;
  30. /**
  31. * The comment text
  32. */
  33. private String comment;
  34. /**
  35. * If the user is a donor.
  36. */
  37. private boolean donor;
  38. /**
  39. * The time the comment was edited.
  40. */
  41. private String editedTime;
  42. /**
  43. * The editor's user id
  44. */
  45. private Number editedUserId;
  46. /**
  47. * The editor's user name
  48. */
  49. private String editedUsername;
  50. /**
  51. * If the author's account is enabled
  52. */
  53. private boolean enabled;
  54. /**
  55. * The author's user name
  56. */
  57. private String name;
  58. /**
  59. * The comment post id
  60. */
  61. private Number postId;
  62. /**
  63. * If the author is warned
  64. */
  65. private boolean warned;
  66. public String getUserClass(){
  67. return userClass;
  68. }
  69. @Override
  70. public String getAuthor(){
  71. return name;
  72. }
  73. @Override
  74. public int getAuthorId(){
  75. return authorId.intValue();
  76. }
  77. @Override
  78. public String getAvatar(){
  79. return avatar;
  80. }
  81. @Override
  82. public Date getTimePosted(){
  83. return MySoup.parseDate(addedTime);
  84. }
  85. @Override
  86. public String getEditor(){
  87. return editedUsername;
  88. }
  89. @Override
  90. public int getEditorId(){
  91. return editedUserId.intValue();
  92. }
  93. @Override
  94. public Date getTimeEdited(){
  95. return MySoup.parseDate(editedTime);
  96. }
  97. @Override
  98. public String getBBbody(){
  99. //We don't get this field from the api for request comments
  100. return null;
  101. }
  102. @Override
  103. public String getBody(){
  104. return comment;
  105. }
  106. @Override
  107. public String getQuote(){
  108. return "[quote=" + name + "]" + comment + "[/quote]";
  109. }
  110. @Override
  111. public int getPostId(){
  112. return postId.intValue();
  113. }
  114. public boolean isDonor(){
  115. return donor;
  116. }
  117. public boolean isWarned(){
  118. return warned;
  119. }
  120. public boolean isBanned(){
  121. return !enabled;
  122. }
  123. public void setBody(String body){
  124. comment = body;
  125. }
  126. @Override
  127. public String toString(){
  128. return "Comment [getAddedTime=" + addedTime + ", getAuthorId=" + getAuthorId() + ", getAvatar=" + getAvatar()
  129. + ", getUserClass=" + userClass + ", getComment=" + comment + ", isDonor=" + isDonor()
  130. + ", getEditedTime=" + editedTime + ", getEditedUserId=" + editedUserId + ", getEditedUsername="
  131. + editedUsername + ", isEnabled=" + enabled + ", getName=" + name + ", getPostId=" + getPostId()
  132. + ", isWarned=" + isWarned() + "]";
  133. }
  134. }