1
14
15 package com.liferay.portlet.messageboards.service.http;
16
17 import com.liferay.portal.kernel.json.JSONArray;
18 import com.liferay.portal.kernel.json.JSONFactoryUtil;
19 import com.liferay.portal.kernel.json.JSONObject;
20 import com.liferay.portal.kernel.util.StringPool;
21
22 import com.liferay.portlet.messageboards.model.MBMessage;
23
24 import java.util.Date;
25 import java.util.List;
26
27
43 public class MBMessageJSONSerializer {
44 public static JSONObject toJSONObject(MBMessage model) {
45 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
46
47 jsonObj.put("uuid", model.getUuid());
48 jsonObj.put("messageId", model.getMessageId());
49 jsonObj.put("groupId", model.getGroupId());
50 jsonObj.put("companyId", model.getCompanyId());
51 jsonObj.put("userId", model.getUserId());
52 jsonObj.put("userName", model.getUserName());
53
54 Date createDate = model.getCreateDate();
55
56 String createDateJSON = StringPool.BLANK;
57
58 if (createDate != null) {
59 createDateJSON = String.valueOf(createDate.getTime());
60 }
61
62 jsonObj.put("createDate", createDateJSON);
63
64 Date modifiedDate = model.getModifiedDate();
65
66 String modifiedDateJSON = StringPool.BLANK;
67
68 if (modifiedDate != null) {
69 modifiedDateJSON = String.valueOf(modifiedDate.getTime());
70 }
71
72 jsonObj.put("modifiedDate", modifiedDateJSON);
73 jsonObj.put("classNameId", model.getClassNameId());
74 jsonObj.put("classPK", model.getClassPK());
75 jsonObj.put("categoryId", model.getCategoryId());
76 jsonObj.put("threadId", model.getThreadId());
77 jsonObj.put("parentMessageId", model.getParentMessageId());
78 jsonObj.put("subject", model.getSubject());
79 jsonObj.put("body", model.getBody());
80 jsonObj.put("attachments", model.getAttachments());
81 jsonObj.put("anonymous", model.getAnonymous());
82 jsonObj.put("priority", model.getPriority());
83 jsonObj.put("allowPingbacks", model.getAllowPingbacks());
84 jsonObj.put("status", model.getStatus());
85 jsonObj.put("statusByUserId", model.getStatusByUserId());
86 jsonObj.put("statusByUserName", model.getStatusByUserName());
87
88 Date statusDate = model.getStatusDate();
89
90 String statusDateJSON = StringPool.BLANK;
91
92 if (statusDate != null) {
93 statusDateJSON = String.valueOf(statusDate.getTime());
94 }
95
96 jsonObj.put("statusDate", statusDateJSON);
97
98 return jsonObj;
99 }
100
101 public static JSONArray toJSONArray(
102 com.liferay.portlet.messageboards.model.MBMessage[] models) {
103 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
104
105 for (MBMessage model : models) {
106 jsonArray.put(toJSONObject(model));
107 }
108
109 return jsonArray;
110 }
111
112 public static JSONArray toJSONArray(
113 com.liferay.portlet.messageboards.model.MBMessage[][] models) {
114 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
115
116 for (MBMessage[] model : models) {
117 jsonArray.put(toJSONArray(model));
118 }
119
120 return jsonArray;
121 }
122
123 public static JSONArray toJSONArray(
124 List<com.liferay.portlet.messageboards.model.MBMessage> models) {
125 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
126
127 for (MBMessage model : models) {
128 jsonArray.put(toJSONObject(model));
129 }
130
131 return jsonArray;
132 }
133 }