Search in sources :

Example 1 with Issue

use of com.epam.pipeline.entity.issue.Issue in project cloud-pipeline by epam.

the class IssueManager method updateComment.

/**
 * Updates comment specified by ID. If issue was closed or issue doesn't exist or comment doesn't exist an error
 * will be thrown. If text for comment is empty exception will be thrown.
 * @param issueId issue's ID
 * @param commentId comment's ID
 * @param commentVO comment's text
 * @return updated {@link IssueComment}
 */
@Transactional(propagation = Propagation.REQUIRED)
public IssueComment updateComment(Long issueId, Long commentId, IssueCommentVO commentVO) {
    IssueComment issueComment = loadComment(issueId, commentId);
    loadIssueAndCheckIfNotClosed(issueId);
    String text = commentVO.getText();
    ensureNotEmptyString(text, MessageConstants.ERROR_INVALID_COMMENT_TEXT);
    issueComment.setText(text);
    commentDao.updateComment(issueComment);
    // Find the attachments that were removed during update and delete them
    HashSet<Attachment> newAttachments = new HashSet<>(commentVO.getAttachments());
    List<Attachment> allAttachments = attachmentDao.loadAttachmentsByCommentId(commentId);
    List<Attachment> toDelete = allAttachments.stream().filter(a -> !newAttachments.contains(a)).collect(Collectors.toList());
    attachmentFileManager.deleteAttachments(toDelete);
    // New attachments might be added so we need to link them to this comment
    commentVO.getAttachments().forEach(a -> attachmentDao.updateAttachmentCommentId(a.getId(), commentId));
    return issueComment;
}
Also used : MessageConstants(com.epam.pipeline.common.MessageConstants) IssueVO(com.epam.pipeline.controller.vo.IssueVO) AttachmentDao(com.epam.pipeline.dao.issue.AttachmentDao) Autowired(org.springframework.beans.factory.annotation.Autowired) Supplier(java.util.function.Supplier) StringUtils(org.apache.commons.lang3.StringUtils) HashSet(java.util.HashSet) MessageHelper(com.epam.pipeline.common.MessageHelper) IssueCommentDao(com.epam.pipeline.dao.issue.IssueCommentDao) CollectionUtils(org.apache.commons.collections.CollectionUtils) Propagation(org.springframework.transaction.annotation.Propagation) Service(org.springframework.stereotype.Service) Map(java.util.Map) IssueComment(com.epam.pipeline.entity.issue.IssueComment) EntityManager(com.epam.pipeline.manager.EntityManager) IssueCommentVO(com.epam.pipeline.controller.vo.IssueCommentVO) AbstractSecuredEntity(com.epam.pipeline.entity.AbstractSecuredEntity) IssueStatus(com.epam.pipeline.entity.issue.IssueStatus) Attachment(com.epam.pipeline.entity.issue.Attachment) Collectors(java.util.stream.Collectors) PagedResult(com.epam.pipeline.controller.PagedResult) List(java.util.List) IssueMapper(com.epam.pipeline.mapper.IssueMapper) IssueDao(com.epam.pipeline.dao.issue.IssueDao) Optional(java.util.Optional) AclClass(com.epam.pipeline.entity.security.acl.AclClass) NotificationManager(com.epam.pipeline.manager.notification.NotificationManager) AuthManager(com.epam.pipeline.manager.security.AuthManager) Issue(com.epam.pipeline.entity.issue.Issue) Collections(java.util.Collections) EntityVO(com.epam.pipeline.controller.vo.EntityVO) Transactional(org.springframework.transaction.annotation.Transactional) Assert(org.springframework.util.Assert) IssueComment(com.epam.pipeline.entity.issue.IssueComment) Attachment(com.epam.pipeline.entity.issue.Attachment) HashSet(java.util.HashSet) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with Issue

use of com.epam.pipeline.entity.issue.Issue in project cloud-pipeline by epam.

the class IssueManager method createIssue.

/**
 * Creates a new issue that refers to existing {@link com.epam.pipeline.entity.AbstractSecuredEntity}.
 * If {@link com.epam.pipeline.entity.AbstractSecuredEntity} doesn't exist an error will be occurred.
 * @param issueVO {@link IssueVO} to create
 * @return create {@link Issue}
 */
@Transactional(propagation = Propagation.REQUIRED)
public Issue createIssue(IssueVO issueVO) {
    validateIssueParameters(issueVO);
    EntityVO entityVO = issueVO.getEntity();
    validateEntityParameters(entityVO);
    AbstractSecuredEntity entity = ensureEntityExists(entityVO);
    Issue issue = issueMapper.toIssue(issueVO);
    issue.setAuthor(authManager.getAuthorizedUser());
    issueDao.createIssue(issue);
    issueVO.getAttachments().forEach(a -> attachmentDao.updateAttachmentIssueId(a.getId(), issue.getId()));
    notificationManager.notifyIssue(issue, entity, StringUtils.defaultIfBlank(issueVO.getHtmlText(), issue.getText()));
    return issue;
}
Also used : EntityVO(com.epam.pipeline.controller.vo.EntityVO) Issue(com.epam.pipeline.entity.issue.Issue) AbstractSecuredEntity(com.epam.pipeline.entity.AbstractSecuredEntity) Transactional(org.springframework.transaction.annotation.Transactional)

Example 3 with Issue

use of com.epam.pipeline.entity.issue.Issue in project cloud-pipeline by epam.

the class IssueManager method updateIssue.

/**
 * Updates an {@link Issue} specified by ID. If issue was closed or doesn't exist an error will be occurred.
 * @param issueId issue ID
 * @param issueVO issue content to update
 * @return updated issue
 */
@Transactional(propagation = Propagation.REQUIRED)
public Issue updateIssue(Long issueId, IssueVO issueVO) {
    validateIssueParameters(issueVO);
    Issue existingIssue = loadIssueAndCheckIfNotClosed(issueId);
    Issue issue = updateIssueObject(existingIssue, issueVO);
    issueDao.updateIssue(issue);
    // Find the attachments that were removed during update and delete them
    HashSet<Attachment> newAttachments = new HashSet<>(issueVO.getAttachments());
    List<Attachment> allAttachments = attachmentDao.loadAttachmentsByIssueId(issueId);
    List<Attachment> toDelete = allAttachments.stream().filter(a -> !newAttachments.contains(a)).collect(Collectors.toList());
    attachmentFileManager.deleteAttachments(toDelete);
    // Link new attachments to this issue
    issueVO.getAttachments().forEach(a -> attachmentDao.updateAttachmentIssueId(a.getId(), issueId));
    return issue;
}
Also used : MessageConstants(com.epam.pipeline.common.MessageConstants) IssueVO(com.epam.pipeline.controller.vo.IssueVO) AttachmentDao(com.epam.pipeline.dao.issue.AttachmentDao) Autowired(org.springframework.beans.factory.annotation.Autowired) Supplier(java.util.function.Supplier) StringUtils(org.apache.commons.lang3.StringUtils) HashSet(java.util.HashSet) MessageHelper(com.epam.pipeline.common.MessageHelper) IssueCommentDao(com.epam.pipeline.dao.issue.IssueCommentDao) CollectionUtils(org.apache.commons.collections.CollectionUtils) Propagation(org.springframework.transaction.annotation.Propagation) Service(org.springframework.stereotype.Service) Map(java.util.Map) IssueComment(com.epam.pipeline.entity.issue.IssueComment) EntityManager(com.epam.pipeline.manager.EntityManager) IssueCommentVO(com.epam.pipeline.controller.vo.IssueCommentVO) AbstractSecuredEntity(com.epam.pipeline.entity.AbstractSecuredEntity) IssueStatus(com.epam.pipeline.entity.issue.IssueStatus) Attachment(com.epam.pipeline.entity.issue.Attachment) Collectors(java.util.stream.Collectors) PagedResult(com.epam.pipeline.controller.PagedResult) List(java.util.List) IssueMapper(com.epam.pipeline.mapper.IssueMapper) IssueDao(com.epam.pipeline.dao.issue.IssueDao) Optional(java.util.Optional) AclClass(com.epam.pipeline.entity.security.acl.AclClass) NotificationManager(com.epam.pipeline.manager.notification.NotificationManager) AuthManager(com.epam.pipeline.manager.security.AuthManager) Issue(com.epam.pipeline.entity.issue.Issue) Collections(java.util.Collections) EntityVO(com.epam.pipeline.controller.vo.EntityVO) Transactional(org.springframework.transaction.annotation.Transactional) Assert(org.springframework.util.Assert) Issue(com.epam.pipeline.entity.issue.Issue) Attachment(com.epam.pipeline.entity.issue.Attachment) HashSet(java.util.HashSet) Transactional(org.springframework.transaction.annotation.Transactional)

Example 4 with Issue

use of com.epam.pipeline.entity.issue.Issue in project cloud-pipeline by epam.

the class IssueManager method createComment.

/**
 * Creates comment for issue. If issue was closed or doesn't exist an error will be occurred.
 * @param issueId issue's ID
 * @param commentVO comment text
 * @return created {@link IssueComment}
 */
@Transactional(propagation = Propagation.REQUIRED)
public IssueComment createComment(Long issueId, IssueCommentVO commentVO) {
    Issue issue = loadIssueAndCheckIfNotClosed(issueId);
    validateComment(commentVO);
    IssueComment comment = issueMapper.toIssueComment(commentVO);
    comment.setIssueId(issueId);
    comment.setAuthor(authManager.getAuthorizedUser());
    commentDao.createComment(comment);
    commentVO.getAttachments().forEach(a -> attachmentDao.updateAttachmentCommentId(a.getId(), comment.getId()));
    notificationManager.notifyIssueComment(comment, issue, StringUtils.defaultIfBlank(commentVO.getHtmlText(), comment.getText()));
    return comment;
}
Also used : Issue(com.epam.pipeline.entity.issue.Issue) IssueComment(com.epam.pipeline.entity.issue.IssueComment) Transactional(org.springframework.transaction.annotation.Transactional)

Example 5 with Issue

use of com.epam.pipeline.entity.issue.Issue in project cloud-pipeline by epam.

the class IssueDaoTest method getIssue.

public static Issue getIssue(String name, EntityVO entity) {
    Issue issue = new Issue();
    issue.setName(name);
    issue.setAuthor(AUTHOR);
    issue.setEntity(entity);
    issue.setText(TEXT);
    issue.setLabels(Arrays.asList(LABEL1, LABEL2));
    return issue;
}
Also used : Issue(com.epam.pipeline.entity.issue.Issue)

Aggregations

Issue (com.epam.pipeline.entity.issue.Issue)44 Transactional (org.springframework.transaction.annotation.Transactional)30 Test (org.junit.Test)25 AbstractSpringTest (com.epam.pipeline.AbstractSpringTest)21 IssueComment (com.epam.pipeline.entity.issue.IssueComment)17 EntityVO (com.epam.pipeline.controller.vo.EntityVO)16 IssueCommentVO (com.epam.pipeline.controller.vo.IssueCommentVO)13 IssueVO (com.epam.pipeline.controller.vo.IssueVO)11 List (java.util.List)9 Attachment (com.epam.pipeline.entity.issue.Attachment)7 Map (java.util.Map)7 Autowired (org.springframework.beans.factory.annotation.Autowired)7 Propagation (org.springframework.transaction.annotation.Propagation)7 AclClass (com.epam.pipeline.entity.security.acl.AclClass)6 Collections (java.util.Collections)6 IssueStatus (com.epam.pipeline.entity.issue.IssueStatus)5 Collectors (java.util.stream.Collectors)5 AttachmentDao (com.epam.pipeline.dao.issue.AttachmentDao)4 AbstractSecuredEntity (com.epam.pipeline.entity.AbstractSecuredEntity)4 Folder (com.epam.pipeline.entity.pipeline.Folder)4