1
22
23 package com.liferay.portlet.softwarecatalog.service.http;
24
25 import com.liferay.portal.kernel.json.JSONArray;
26 import com.liferay.portal.kernel.json.JSONFactoryUtil;
27 import com.liferay.portal.kernel.json.JSONObject;
28 import com.liferay.portal.kernel.util.StringPool;
29
30 import com.liferay.portlet.softwarecatalog.model.SCProductEntry;
31
32 import java.util.Date;
33 import java.util.List;
34
35
54 public class SCProductEntryJSONSerializer {
55 public static JSONObject toJSONObject(SCProductEntry model) {
56 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
57
58 jsonObj.put("productEntryId", model.getProductEntryId());
59 jsonObj.put("groupId", model.getGroupId());
60 jsonObj.put("companyId", model.getCompanyId());
61 jsonObj.put("userId", model.getUserId());
62 jsonObj.put("userName", model.getUserName());
63
64 Date createDate = model.getCreateDate();
65
66 String createDateJSON = StringPool.BLANK;
67
68 if (createDate != null) {
69 createDateJSON = String.valueOf(createDate.getTime());
70 }
71
72 jsonObj.put("createDate", createDateJSON);
73
74 Date modifiedDate = model.getModifiedDate();
75
76 String modifiedDateJSON = StringPool.BLANK;
77
78 if (modifiedDate != null) {
79 modifiedDateJSON = String.valueOf(modifiedDate.getTime());
80 }
81
82 jsonObj.put("modifiedDate", modifiedDateJSON);
83 jsonObj.put("name", model.getName());
84 jsonObj.put("type", model.getType());
85 jsonObj.put("tags", model.getTags());
86 jsonObj.put("shortDescription", model.getShortDescription());
87 jsonObj.put("longDescription", model.getLongDescription());
88 jsonObj.put("pageURL", model.getPageURL());
89 jsonObj.put("author", model.getAuthor());
90 jsonObj.put("repoGroupId", model.getRepoGroupId());
91 jsonObj.put("repoArtifactId", model.getRepoArtifactId());
92
93 return jsonObj;
94 }
95
96 public static JSONArray toJSONArray(
97 List<com.liferay.portlet.softwarecatalog.model.SCProductEntry> models) {
98 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
99
100 for (SCProductEntry model : models) {
101 jsonArray.put(toJSONObject(model));
102 }
103
104 return jsonArray;
105 }
106 }