/clients/android/NewsBlur/src/com/newsblur/domain/Comment.java

https://github.com/samuelclay/NewsBlur · Java · 87 lines · 61 code · 21 blank · 5 comment · 0 complexity · 47ce6289307ac63294208360d43d7e12 MD5 · raw file

  1. package com.newsblur.domain;
  2. import java.io.Serializable;
  3. import android.content.ContentValues;
  4. import android.database.Cursor;
  5. import android.text.TextUtils;
  6. import com.google.gson.annotations.SerializedName;
  7. import com.newsblur.database.DatabaseConstants;
  8. public class Comment implements Serializable {
  9. // new comments cannot possibly have the server-generated ID, so are inserted with partial info until reconciled
  10. public static final String PLACEHOLDER_COMMENT_ID = "__PLACEHOLDER_ID__";
  11. private static final long serialVersionUID = -2018705258520565390L;
  12. @SerializedName("id")
  13. public String id;
  14. @SerializedName("comments")
  15. public String commentText;
  16. @SerializedName("user_id")
  17. public String userId;
  18. @SerializedName("shared_date")
  19. public String sharedDate;
  20. @SerializedName("source_user_id")
  21. public String sourceUserId;
  22. @SerializedName("date")
  23. public String date;
  24. @SerializedName("liking_users")
  25. public String[] likingUsers = new String[]{};
  26. public Reply[] replies;
  27. // not vended by API directly, but comments always appear in the context of a story
  28. public String storyId;
  29. // not vended by API, but we set it depending on which comment block of the response in which it appeared
  30. public boolean byFriend = false;
  31. // means this "comment" is actually a text-less share, which is identical to a comment, but included in a different list in the story member
  32. public boolean isPseudo = false;
  33. // not vended by API, indicates this is a client-side placeholder for until we can get an ID from the server
  34. public boolean isPlaceholder = false;
  35. public ContentValues getValues() {
  36. ContentValues values = new ContentValues();
  37. values.put(DatabaseConstants.COMMENT_DATE, date);
  38. values.put(DatabaseConstants.COMMENT_STORYID, storyId);
  39. values.put(DatabaseConstants.COMMENT_LIKING_USERS, TextUtils.join(",", likingUsers));
  40. values.put(DatabaseConstants.COMMENT_TEXT, commentText);
  41. values.put(DatabaseConstants.COMMENT_SHAREDDATE, sharedDate);
  42. values.put(DatabaseConstants.COMMENT_BYFRIEND, byFriend ? "true" : "false");
  43. values.put(DatabaseConstants.COMMENT_SOURCE_USERID, sourceUserId);
  44. values.put(DatabaseConstants.COMMENT_USERID, userId);
  45. values.put(DatabaseConstants.COMMENT_ID, id);
  46. values.put(DatabaseConstants.COMMENT_ISPSEUDO, isPseudo ? "true" : "false");
  47. values.put(DatabaseConstants.COMMENT_ISPLACEHOLDER, isPlaceholder ? "true" : "false");
  48. return values;
  49. }
  50. public static Comment fromCursor(final Cursor cursor) {
  51. Comment comment = new Comment();
  52. comment.date = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_DATE));
  53. comment.sharedDate = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_SHAREDDATE));
  54. comment.commentText = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_TEXT));
  55. comment.storyId = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_STORYID));
  56. comment.userId = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_USERID));
  57. comment.byFriend = Boolean.parseBoolean(cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_BYFRIEND)));
  58. String likingUsers = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_LIKING_USERS));
  59. comment.likingUsers = TextUtils.split(likingUsers, ",");
  60. comment.sourceUserId = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_SOURCE_USERID));
  61. comment.id = cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_ID));
  62. comment.isPseudo = Boolean.parseBoolean(cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_ISPSEUDO)));
  63. comment.isPlaceholder = Boolean.parseBoolean(cursor.getString(cursor.getColumnIndex(DatabaseConstants.COMMENT_ISPLACEHOLDER)));
  64. return comment;
  65. }
  66. }