org.sakaiproject.commons.api.datamodel.Comment Maven / Gradle / Ivy
/*************************************************************************************
* Copyright 2006, 2008 Sakai Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.osedu.org/licenses/ECL-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*************************************************************************************/
package org.sakaiproject.commons.api.datamodel;
import java.time.Instant;
import java.time.ZoneId;
import java.util.Calendar;
import java.util.Stack;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.TimeZone;
import org.apache.commons.text.StringEscapeUtils;
import org.sakaiproject.commons.api.CommonsManager;
import org.sakaiproject.commons.api.CommonsReferenceReckoner;
import org.sakaiproject.entity.api.Entity;
import org.sakaiproject.entity.api.ResourceProperties;
import org.sakaiproject.util.BaseResourceProperties;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import lombok.Getter;
import lombok.Setter;
public class Comment implements Entity {
@Getter @Setter
private String id = "";
@Getter
private String content = "";
@Getter
private long createdDate = -1L;
@Getter @Setter
private long modifiedDate = -1L;
@Getter @Setter
private String creatorId;
@Getter @Setter
private String creatorDisplayName;
@Getter @Setter
private String postId;
@Getter @Setter
private Post post;
@Getter @Setter
private String url;
public Comment() {
this("");
}
public Comment(ResultSet rs) throws SQLException {
this.setId(rs.getString("ID"));
this.setPostId(rs.getString("POST_ID"));
this.setContent(rs.getString("CONTENT"));
this.setCreatorId(rs.getString("CREATOR_ID"));
// retrieve time's in UTC since that's how it's stored
this.setCreatedDate(rs.getTimestamp("CREATED_DATE", Calendar.getInstance(TimeZone.getTimeZone(ZoneId.of("UTC")))).getTime());
this.setModifiedDate(rs.getTimestamp("MODIFIED_DATE", Calendar.getInstance(TimeZone.getTimeZone(ZoneId.of("UTC")))).getTime());
}
public Comment(String text) {
this(text, Instant.now().toEpochMilli());
}
public Comment(String text, long createdDate) {
setContent(text);
this.createdDate = createdDate;
modifiedDate = createdDate;
}
/**
* If the supplied is different to the current, sets the modified date to
* the current date so ... be careful!
*
* @param text
*/
public void setContent(String text) {
setContent(text, true);
}
public void setContent(String text, boolean modified) {
if (!this.content.equals(text) && modified) {
modifiedDate = Instant.now().toEpochMilli();
}
this.content = StringEscapeUtils.unescapeHtml4(text.trim());
}
public void setCreatedDate(long createdDate) {
this.createdDate = createdDate;
this.modifiedDate = createdDate;
}
public ResourceProperties getProperties() {
ResourceProperties rp = new BaseResourceProperties();
rp.addProperty("id", getId());
return rp;
}
public String getReference() {
return CommonsReferenceReckoner.reckoner().comment(this).reckon().getReference();
}
public String getReference(String base) {
return getReference();
}
public String getUrl(String arg0) {
return getUrl();
}
public Element toXml(Document arg0, Stack arg1) {
return null;
}
}