/app/src/main/java/com/corpit/standard/model/Event.java

https://bitbucket.org/nhat-corp-it/standard-mobile-android · Java · 280 lines · 220 code · 57 blank · 3 comment · 62 complexity · 7ca6cac6ee5819cce88babe3bc78c0f4 MD5 · raw file

  1. package com.corpit.standard.model;
  2. import android.support.annotation.NonNull;
  3. import android.text.Html;
  4. import android.text.Spanned;
  5. import android.text.TextUtils;
  6. import com.corpit.standard.data.remote.WithImage;
  7. import com.corpit.standard.ui.base.databoundrecyclerview.ListItem;
  8. import com.corpit.standard.util.DateConverter;
  9. import com.google.gson.annotations.SerializedName;
  10. import org.greenrobot.greendao.annotation.Entity;
  11. import org.greenrobot.greendao.annotation.Generated;
  12. import org.greenrobot.greendao.annotation.Id;
  13. import java.util.Calendar;
  14. import static com.corpit.standard.share.ParameterNames.DELETE_FLAG;
  15. import static com.corpit.standard.share.ParameterNames.EVENT_BRIEF;
  16. import static com.corpit.standard.share.ParameterNames.EVENT_CAT;
  17. import static com.corpit.standard.share.ParameterNames.EVENT_DATE;
  18. import static com.corpit.standard.share.ParameterNames.EVENT_ID;
  19. import static com.corpit.standard.share.ParameterNames.EVENT_IMAGE;
  20. import static com.corpit.standard.share.ParameterNames.EVENT_TIME;
  21. import static com.corpit.standard.share.ParameterNames.EVENT_TITLE;
  22. import static com.corpit.standard.share.ParameterNames.EVENT_VENUE;
  23. import static com.corpit.standard.share.ParameterNames.UPDATED_DATE;
  24. /**
  25. * Created by nhatton on 23/3/18.
  26. */
  27. @Entity
  28. public class Event implements ListItem<Event>, WithImage {
  29. @Id
  30. @SerializedName(EVENT_ID)
  31. private String id;
  32. @SerializedName(EVENT_IMAGE)
  33. private String image;
  34. @SerializedName(EVENT_DATE)
  35. private String date;
  36. @SerializedName(EVENT_TIME)
  37. private String time;
  38. @SerializedName(EVENT_TITLE)
  39. private String title;
  40. @SerializedName(EVENT_CAT)
  41. private String category;
  42. @SerializedName(EVENT_VENUE)
  43. private String boothId;
  44. @SerializedName(EVENT_BRIEF)
  45. private String brief;
  46. @SerializedName(DELETE_FLAG)
  47. private String deleteFlag;
  48. @SerializedName(UPDATED_DATE)
  49. private String updatedDate;
  50. @Generated(hash = 816396123)
  51. public Event(String id, String image, String date, String time, String title, String category, String boothId,
  52. String brief, String deleteFlag, String updatedDate) {
  53. this.id = id;
  54. this.image = image;
  55. this.date = date;
  56. this.time = time;
  57. this.title = title;
  58. this.category = category;
  59. this.boothId = boothId;
  60. this.brief = brief;
  61. this.deleteFlag = deleteFlag;
  62. this.updatedDate = updatedDate;
  63. }
  64. @Generated(hash = 344677835)
  65. public Event() {
  66. }
  67. @Override
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getImage() {
  75. return image;
  76. }
  77. public void setImage(String image) {
  78. this.image = image;
  79. }
  80. public String getDate() {
  81. return date;
  82. }
  83. public void setDate(String date) {
  84. this.date = date;
  85. }
  86. public String getTime() {
  87. return time;
  88. }
  89. public void setTime(String time) {
  90. this.time = time;
  91. }
  92. public String getTitle() {
  93. return title;
  94. }
  95. public void setTitle(String title) {
  96. this.title = title;
  97. }
  98. public String getCategory() {
  99. return category;
  100. }
  101. public void setCategory(String category) {
  102. this.category = category;
  103. }
  104. public String getBoothId() {
  105. return boothId;
  106. }
  107. public void setBoothId(String boothId) {
  108. this.boothId = boothId;
  109. }
  110. public String getBrief() {
  111. return brief;
  112. }
  113. public void setBrief(String brief) {
  114. this.brief = brief;
  115. }
  116. public String getDeleteFlag() {
  117. return deleteFlag;
  118. }
  119. public void setDeleteFlag(String deleteFlag) {
  120. this.deleteFlag = deleteFlag;
  121. }
  122. public String getUpdatedDate() {
  123. return updatedDate;
  124. }
  125. public void setUpdatedDate(String updatedDate) {
  126. this.updatedDate = updatedDate;
  127. }
  128. private String getTimeToCalculate() {
  129. return time.trim().replace(" ", "")
  130. .replace(":", "")
  131. .replace("-", "");
  132. }
  133. public Calendar getCalendarStartTime() {
  134. String realTime = getTimeToCalculate();
  135. String startTime = "0000";
  136. if (!TextUtils.isEmpty(realTime) && realTime.length() == 8) {
  137. startTime = realTime.substring(0, 4);
  138. }
  139. return DateConverter.toCalendar(startTime, date);
  140. }
  141. public Calendar getCalendarEndTime() {
  142. String realTime = getTimeToCalculate();
  143. String endTime = "0000";
  144. if (!TextUtils.isEmpty(realTime) && realTime.length() == 8) {
  145. endTime = realTime.substring(4, 8);
  146. }
  147. return DateConverter.toCalendar(endTime, date);
  148. }
  149. public String getFormattedStartTime() {
  150. if (time.isEmpty() || time.length() < 9) return "";
  151. return time.substring(0, 2) + ":" + time.substring(2, 4);
  152. }
  153. public String getFormattedEndTime() {
  154. if (time.isEmpty() || time.length() < 9) return "";
  155. return time.substring(5, 7) + ":" + time.substring(7, 9);
  156. }
  157. public Calendar getDateObject() {
  158. return DateConverter.toCalendar(date);
  159. }
  160. public Spanned getBriefToDisplay() {
  161. StringBuilder html = new StringBuilder();
  162. html.append("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />");
  163. html.append("</head><body>");
  164. if (brief != null && !brief.isEmpty()) {
  165. brief = brief.replaceAll(" width: [0-9]*px;", "");
  166. brief = brief.replaceAll("font-family:[^;]*;", "");
  167. brief = brief.replaceAll("14px", "18px");
  168. brief = brief.replaceAll("13px", "18px");
  169. brief = brief.replaceAll("12px", "18px");
  170. brief = brief.replaceAll("background-color:[^;]*;", "");
  171. }
  172. html.append(brief);
  173. html.append("</body>");
  174. html.append("</html>");
  175. return Html.fromHtml(html.toString());
  176. }
  177. @Override
  178. public int compareTo(@NonNull Event e) {
  179. if (!getDateObject().equals(e.getDateObject())) {
  180. return getDateObject().compareTo(e.getDateObject());
  181. } else if (!getCalendarStartTime().equals(e.getCalendarStartTime())) {
  182. return getCalendarStartTime().compareTo(e.getCalendarStartTime());
  183. } else {
  184. return getCalendarEndTime().compareTo(e.getCalendarEndTime());
  185. }
  186. }
  187. @Override
  188. public String getUrl() {
  189. return image;
  190. }
  191. @Override
  192. public boolean equals(Object o) {
  193. if (this == o) return true;
  194. if (o == null || getClass() != o.getClass()) return false;
  195. Event event = (Event) o;
  196. if (id != null ? !id.equals(event.id) : event.id != null) return false;
  197. if (image != null ? !image.equals(event.image) : event.image != null) return false;
  198. if (date != null ? !date.equals(event.date) : event.date != null) return false;
  199. if (time != null ? !time.equals(event.time) : event.time != null) return false;
  200. if (title != null ? !title.equals(event.title) : event.title != null) return false;
  201. if (category != null ? !category.equals(event.category) : event.category != null)
  202. return false;
  203. if (boothId != null ? !boothId.equals(event.boothId) : event.boothId != null) return false;
  204. if (brief != null ? !brief.equals(event.brief) : event.brief != null) return false;
  205. if (deleteFlag != null ? !deleteFlag.equals(event.deleteFlag) : event.deleteFlag != null)
  206. return false;
  207. return updatedDate != null ? updatedDate.equals(event.updatedDate) : event.updatedDate == null;
  208. }
  209. @Override
  210. public int hashCode() {
  211. int result = id != null ? id.hashCode() : 0;
  212. result = 31 * result + (image != null ? image.hashCode() : 0);
  213. result = 31 * result + (date != null ? date.hashCode() : 0);
  214. result = 31 * result + (time != null ? time.hashCode() : 0);
  215. result = 31 * result + (title != null ? title.hashCode() : 0);
  216. result = 31 * result + (category != null ? category.hashCode() : 0);
  217. result = 31 * result + (boothId != null ? boothId.hashCode() : 0);
  218. result = 31 * result + (brief != null ? brief.hashCode() : 0);
  219. result = 31 * result + (deleteFlag != null ? deleteFlag.hashCode() : 0);
  220. result = 31 * result + (updatedDate != null ? updatedDate.hashCode() : 0);
  221. return result;
  222. }
  223. }