rename package
This commit is contained in:
parent
4e25adba5b
commit
9c97344bf5
@ -2,14 +2,14 @@ package org.sadtech.bot.vcs.bitbucket.core;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.PullRequestJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.sheet.PullRequestSheetJson;
|
||||
import org.sadtech.bot.vcs.core.utils.Pair;
|
||||
import org.sadtech.bot.vcs.core.utils.Utils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.gitlab.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.core.utils.Pair;
|
||||
import org.sadtech.bot.gitlab.core.utils.Utils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.PullRequestJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.sheet.PullRequestSheetJson;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.service.PullRequestParser;
|
||||
import org.springframework.core.convert.ConversionService;
|
||||
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.core.service.converter;
|
||||
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Severity;
|
||||
import org.sadtech.bot.vcs.core.utils.StringUtils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.core.utils.StringUtils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.Severity;
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.core.service.converter;
|
||||
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentState;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Severity;
|
||||
import org.sadtech.bot.vcs.core.utils.StringUtils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.core.utils.StringUtils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentState;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.Severity;
|
||||
import org.sadtech.haiti.context.exception.ConvertException;
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
@ -1,15 +1,15 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.core.service.converter;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Outcome;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Properties;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.PullRequestJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.PullRequestState;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.UserDecisionJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.UserPullRequestStatus;
|
||||
import org.sadtech.bot.vcs.core.utils.StringUtils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Reviewer;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Reviewer;
|
||||
import org.sadtech.bot.gitlab.core.utils.StringUtils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.Outcome;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.Properties;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.PullRequestJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.PullRequestState;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.UserDecisionJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.UserPullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.ReviewerStatus;
|
||||
import org.sadtech.haiti.context.exception.ConvertException;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.core.service.converter;
|
||||
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.UserJson;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.UserJson;
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
|
@ -47,7 +47,7 @@
|
||||
|
||||
<dependency>
|
||||
<groupId>org.sadtech.bot.gitlab</groupId>
|
||||
<artifactId>bot-core</artifactId>
|
||||
<artifactId>gitlab-core</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
@ -1,12 +1,12 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.app.scheduler;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.SimpleTextNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PersonService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.RatingService;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.SimpleTextNotify;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.context.service.RatingService;
|
||||
import org.springframework.scheduling.annotation.Scheduled;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
|
@ -1,21 +1,21 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.app.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.gitlab.context.service.CommentService;
|
||||
import org.sadtech.bot.gitlab.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.context.service.TaskService;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.InitProperty;
|
||||
import org.sadtech.bot.gitlab.core.utils.Utils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.Severity;
|
||||
import org.sadtech.bot.vcs.bitbucket.app.config.property.CommentSchedulerProperty;
|
||||
import org.sadtech.bot.vcs.bitbucket.app.service.executor.DataScan;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.Severity;
|
||||
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.vcs.core.config.properties.InitProperty;
|
||||
import org.sadtech.bot.vcs.core.utils.Utils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.CommentService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.TaskService;
|
||||
import org.sadtech.haiti.context.page.Sheet;
|
||||
import org.sadtech.haiti.core.page.PaginationImpl;
|
||||
import org.springframework.core.convert.ConversionService;
|
||||
|
@ -3,11 +3,11 @@ package org.sadtech.bot.vcs.bitbucket.app.service;
|
||||
import lombok.NonNull;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.app.service.executor.DataScan;
|
||||
import org.sadtech.bot.vcs.bitbucket.app.service.executor.Executor;
|
||||
import org.sadtech.bot.vcs.bitbucket.app.service.executor.Seeker;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -2,7 +2,7 @@ package org.sadtech.bot.vcs.bitbucket.app.service.executor;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentJson;
|
||||
|
||||
@Getter
|
||||
@RequiredArgsConstructor
|
||||
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.app.service.executor;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.CommentJson;
|
||||
import org.sadtech.bot.vcs.core.utils.Utils;
|
||||
import org.sadtech.bot.gitlab.core.utils.Utils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.CommentJson;
|
||||
|
||||
import java.util.Optional;
|
||||
import java.util.concurrent.Callable;
|
||||
|
@ -1,13 +1,13 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.app.service.parser;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.UserJson;
|
||||
import org.sadtech.bot.vcs.bitbucket.sdk.domain.sheet.UserSheetJson;
|
||||
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.vcs.core.utils.Utils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PersonService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.parser.PersonParser;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.context.service.parser.PersonParser;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.gitlab.core.utils.Utils;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.UserJson;
|
||||
import org.sadtech.bot.gitlab.sdk.domain.sheet.UserSheetJson;
|
||||
import org.springframework.core.convert.ConversionService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
package org.sadtech.bot.vcs.bitbucket.app.service.parser;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.vcs.bitbucket.core.AbstractPullRequestBitbucketParser;
|
||||
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PersonService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.vsc.context.service.PullRequestParser;
|
||||
import org.springframework.core.convert.ConversionService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain;
|
||||
package org.sadtech.bot.gitlab.context.domain;
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain;
|
||||
package org.sadtech.bot.gitlab.context.domain;
|
||||
|
||||
/**
|
||||
* // TODO: 21.09.2020 Добавить описание.
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain;
|
||||
package org.sadtech.bot.gitlab.context.domain;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain;
|
||||
package org.sadtech.bot.gitlab.context.domain;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain;
|
||||
package org.sadtech.bot.gitlab.context.domain;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
@ -0,0 +1,8 @@
|
||||
package org.sadtech.bot.gitlab.context.domain;
|
||||
|
||||
public enum TaskStatus {
|
||||
|
||||
OPEN,
|
||||
RESOLVED
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.PointType;
|
||||
import org.sadtech.bot.gitlab.context.domain.PointType;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.entity;
|
||||
package org.sadtech.bot.gitlab.context.domain.entity;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
|
||||
import javax.persistence.CollectionTable;
|
||||
import javax.persistence.Column;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.filter;
|
||||
package org.sadtech.bot.gitlab.context.domain.filter;
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.AllArgsConstructor;
|
@ -1,12 +1,12 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.MessageUtils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.UpdateDataComparator;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.utils.MessageUtils;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.UpdateDataComparator;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.NonNull;
|
||||
import lombok.Setter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.stream.Collectors;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
|
||||
import java.util.Set;
|
||||
|
@ -1,11 +1,11 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.comment;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.comment;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.Answer;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.domain.Answer;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.List;
|
@ -1,10 +1,10 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.comment;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.comment;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
|
||||
import java.util.Set;
|
||||
|
@ -1,18 +1,18 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.util.ReviewerChange;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.domain.util.ReviewerChange;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import static org.sadtech.bot.vsc.bitbucketbot.context.domain.util.ReviewerChange.Type.DELETED;
|
||||
import static org.sadtech.bot.vsc.bitbucketbot.context.domain.util.ReviewerChange.Type.NEW;
|
||||
import static org.sadtech.bot.vsc.bitbucketbot.context.domain.util.ReviewerChange.Type.OLD;
|
||||
import static org.sadtech.bot.gitlab.context.domain.util.ReviewerChange.Type.DELETED;
|
||||
import static org.sadtech.bot.gitlab.context.domain.util.ReviewerChange.Type.NEW;
|
||||
import static org.sadtech.bot.gitlab.context.domain.util.ReviewerChange.Type.OLD;
|
||||
|
||||
@Getter
|
||||
public class ReviewersPrNotify extends PrNotify {
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Reviewer;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Reviewer;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
|
||||
import java.text.MessageFormat;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.pullrequest;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.task;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.task;
|
||||
|
||||
import lombok.Builder;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.task;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.task;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
import java.util.Set;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.task;
|
||||
package org.sadtech.bot.gitlab.context.domain.notify.task;
|
||||
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
|
||||
import java.util.Set;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain.util;
|
||||
package org.sadtech.bot.gitlab.context.domain.util;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.NonNull;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.exception;
|
||||
package org.sadtech.bot.gitlab.context.exception;
|
||||
|
||||
abstract class BitbucketBotException extends RuntimeException {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.exception;
|
||||
package org.sadtech.bot.gitlab.context.exception;
|
||||
|
||||
public class NotFoundException extends BitbucketBotException {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.exception;
|
||||
package org.sadtech.bot.gitlab.context.exception;
|
||||
|
||||
public class RegException extends BitbucketBotException {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.exception;
|
||||
package org.sadtech.bot.gitlab.context.exception;
|
||||
|
||||
public class UpdateException extends BitbucketBotException {
|
||||
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Chat;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Chat;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
||||
|
||||
import java.util.Set;
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
||||
|
||||
import java.time.LocalDateTime;
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
||||
|
||||
import java.util.Set;
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.gitlab.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.ReviewerStatus;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.RatingHistory;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.RatingHistory;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
||||
|
||||
import java.time.LocalDateTime;
|
@ -1,6 +1,6 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.RatingList;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.RatingList;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
||||
|
||||
import java.util.List;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.repository;
|
||||
package org.sadtech.bot.gitlab.context.repository;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.haiti.context.repository.SimpleManagerRepository;
|
||||
|
||||
import java.time.LocalDateTime;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.haiti.context.service.SimpleManagerService;
|
||||
|
||||
import java.time.LocalDateTime;
|
@ -0,0 +1,11 @@
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface MessageSendService {
|
||||
|
||||
void send(@NonNull Notify notify);
|
||||
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
|
||||
import java.util.Optional;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
@ -1,10 +1,10 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.gitlab.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.gitlab.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.ReviewerStatus;
|
||||
import org.sadtech.haiti.context.service.SimpleManagerService;
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.PointType;
|
||||
import org.sadtech.bot.gitlab.context.domain.PointType;
|
||||
|
||||
/**
|
||||
* // TODO: 01.10.2020 Добавить описание.
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
package org.sadtech.bot.gitlab.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.haiti.context.service.SimpleManagerService;
|
||||
|
||||
import java.time.LocalDateTime;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service.parser;
|
||||
package org.sadtech.bot.gitlab.context.service.parser;
|
||||
|
||||
/**
|
||||
* // TODO: 06.09.2020 Добавить описание.
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.utils;
|
||||
package org.sadtech.bot.gitlab.context.utils;
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.utils;
|
||||
package org.sadtech.bot.gitlab.context.utils;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
@ -1,6 +1,6 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.utils;
|
||||
package org.sadtech.bot.gitlab.context.utils;
|
||||
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
|
||||
import java.util.Comparator;
|
||||
|
@ -1,8 +0,0 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.domain;
|
||||
|
||||
public enum TaskStatus {
|
||||
|
||||
OPEN,
|
||||
RESOLVED
|
||||
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
package org.sadtech.bot.vsc.bitbucketbot.context.service;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
|
||||
@FunctionalInterface
|
||||
public interface MessageSendService {
|
||||
|
||||
void send(@NonNull Notify notify);
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.config.properties;
|
||||
package org.sadtech.bot.gitlab.core.config.properties;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.config.properties;
|
||||
package org.sadtech.bot.gitlab.core.config.properties;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.config.properties;
|
||||
package org.sadtech.bot.gitlab.core.config.properties;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.config.properties;
|
||||
package org.sadtech.bot.gitlab.core.config.properties;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
@ -1,16 +1,16 @@
|
||||
package org.sadtech.bot.vcs.core.scheduler;
|
||||
package org.sadtech.bot.gitlab.core.scheduler;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vcs.core.config.properties.AppProperty;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.GoodMorningNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.SimpleTextNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PersonService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.GoodMorningNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.SimpleTextNotify;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.AppProperty;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.ReviewerStatus;
|
||||
import org.springframework.scheduling.annotation.Scheduled;
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vcs.core.service.converter;
|
||||
package org.sadtech.bot.gitlab.core.service.converter;
|
||||
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package org.sadtech.bot.vcs.core.service.converter;
|
||||
package org.sadtech.bot.gitlab.core.service.converter;
|
||||
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.ChatRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.ChatService;
|
||||
import org.sadtech.bot.gitlab.context.repository.ChatRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.ChatService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Set;
|
@ -1,18 +1,18 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.Answer;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.PointType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.comment.AnswerCommentNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.comment.CommentNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.CommentRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.CommentService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.RatingService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.TaskService;
|
||||
import org.sadtech.bot.gitlab.context.domain.Answer;
|
||||
import org.sadtech.bot.gitlab.context.domain.PointType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.comment.AnswerCommentNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.comment.CommentNotify;
|
||||
import org.sadtech.bot.gitlab.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.gitlab.context.repository.CommentRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.CommentService;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.service.RatingService;
|
||||
import org.sadtech.bot.gitlab.context.service.TaskService;
|
||||
import org.sadtech.haiti.core.service.AbstractSimpleManagerService;
|
||||
import org.sadtech.haiti.core.util.Assert;
|
||||
import org.springframework.context.annotation.Lazy;
|
@ -1,13 +1,13 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.EntityType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.NotifySettingRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.MessageSendService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.domain.EntityType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.Notify;
|
||||
import org.sadtech.bot.gitlab.context.repository.NotifySettingRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.MessageSendService;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Optional;
|
@ -1,15 +1,15 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.sadtech.bot.vcs.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.vcs.core.utils.Utils;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.exception.RegException;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.PersonRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.exception.RegException;
|
||||
import org.sadtech.bot.gitlab.context.repository.PersonRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.BitbucketProperty;
|
||||
import org.sadtech.bot.gitlab.core.utils.Utils;
|
||||
import org.sadtech.haiti.core.util.Assert;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.stereotype.Service;
|
@ -1,27 +1,26 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.core.config.properties.RatingProperty;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.PointType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest_;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Reviewer;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.ConflictPrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.ForgottenSmartPrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.NewPrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.ReviewersPrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.SmartPrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.StatusPrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.pullrequest.UpdatePrNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.util.ReviewerChange;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.exception.UpdateException;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.PullRequestsRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.RatingService;
|
||||
import org.sadtech.bot.gitlab.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.gitlab.context.domain.PointType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Reviewer;
|
||||
import org.sadtech.bot.gitlab.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.ConflictPrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.ForgottenSmartPrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.NewPrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.ReviewersPrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.SmartPrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.StatusPrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.pullrequest.UpdatePrNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.util.ReviewerChange;
|
||||
import org.sadtech.bot.gitlab.context.exception.UpdateException;
|
||||
import org.sadtech.bot.gitlab.context.repository.PullRequestsRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.context.service.RatingService;
|
||||
import org.sadtech.bot.gitlab.core.config.properties.RatingProperty;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.ReviewerStatus;
|
||||
import org.sadtech.haiti.context.page.Pagination;
|
||||
@ -351,8 +350,8 @@ public class PullRequestsServiceImpl extends AbstractSimpleManagerService<PullRe
|
||||
return pullRequestsRepository.findFirst(
|
||||
CriteriaFilter.create().and(
|
||||
CriteriaQuery.create()
|
||||
.matchPhrase(PullRequest_.BITBUCKET_ID, pullRequest.getBitbucketId())
|
||||
.matchPhrase(PullRequest_.REPOSITORY_ID, pullRequest.getRepositoryId())
|
||||
.matchPhrase("hyita", pullRequest.getBitbucketId())
|
||||
.matchPhrase("hyita", pullRequest.getRepositoryId())
|
||||
)
|
||||
).orElseThrow(() -> new UpdateException("ПР с таким id не существует"));
|
||||
}
|
@ -1,17 +1,17 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.PointType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.RatingHistory;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.RatingList;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.RatingHistoryRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.RatingListRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PersonService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.RatingService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.utils.Smile;
|
||||
import org.sadtech.bot.gitlab.context.domain.PointType;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.RatingHistory;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.RatingList;
|
||||
import org.sadtech.bot.gitlab.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.gitlab.context.repository.RatingHistoryRepository;
|
||||
import org.sadtech.bot.gitlab.context.repository.RatingListRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.PersonService;
|
||||
import org.sadtech.bot.gitlab.context.service.RatingService;
|
||||
import org.sadtech.bot.gitlab.context.utils.Smile;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.time.LocalDateTime;
|
@ -1,23 +1,23 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl;
|
||||
package org.sadtech.bot.gitlab.core.service.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.Answer;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.PointType;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.comment.AnswerCommentNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.comment.CommentNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.task.TaskCloseNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.notify.task.TaskNewNotify;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.TaskRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.CommentService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.NotifyService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.RatingService;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.service.TaskService;
|
||||
import org.sadtech.bot.gitlab.context.domain.Answer;
|
||||
import org.sadtech.bot.gitlab.context.domain.PointType;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.comment.AnswerCommentNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.comment.CommentNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.task.TaskCloseNotify;
|
||||
import org.sadtech.bot.gitlab.context.domain.notify.task.TaskNewNotify;
|
||||
import org.sadtech.bot.gitlab.context.exception.NotFoundException;
|
||||
import org.sadtech.bot.gitlab.context.repository.TaskRepository;
|
||||
import org.sadtech.bot.gitlab.context.service.CommentService;
|
||||
import org.sadtech.bot.gitlab.context.service.NotifyService;
|
||||
import org.sadtech.bot.gitlab.context.service.PullRequestsService;
|
||||
import org.sadtech.bot.gitlab.context.service.RatingService;
|
||||
import org.sadtech.bot.gitlab.context.service.TaskService;
|
||||
import org.sadtech.haiti.core.service.AbstractSimpleManagerService;
|
||||
import org.sadtech.haiti.core.util.Assert;
|
||||
import org.springframework.core.convert.ConversionService;
|
@ -1,10 +1,9 @@
|
||||
package org.sadtech.bot.vcs.core.service.impl.filter;
|
||||
package org.sadtech.bot.gitlab.core.service.impl.filter;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest_;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.PullRequestsRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.filter.PullRequestFilter;
|
||||
import org.sadtech.bot.gitlab.context.repository.PullRequestsRepository;
|
||||
import org.sadtech.haiti.core.service.AbstractFilterService;
|
||||
import org.sadtech.haiti.filter.Filter;
|
||||
import org.sadtech.haiti.filter.FilterQuery;
|
||||
@ -29,7 +28,7 @@ public class PullRequestFilterService extends AbstractFilterService<PullRequest,
|
||||
|
||||
private FilterQuery convertFilter(@NonNull PullRequestFilter filter) {
|
||||
return CriteriaQuery.<PullRequest>create()
|
||||
.matchPhrase(PullRequest_.BITBUCKET_ID, filter.getBitbucketId())
|
||||
.matchPhrase(PullRequest_.REPOSITORY_ID, filter.getBitbucketRepositoryId());
|
||||
.matchPhrase("hyita", filter.getBitbucketId())
|
||||
.matchPhrase("hyita", filter.getBitbucketRepositoryId());
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.utils;
|
||||
package org.sadtech.bot.gitlab.core.utils;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.utils;
|
||||
package org.sadtech.bot.gitlab.core.utils;
|
||||
|
||||
import lombok.AccessLevel;
|
||||
import lombok.NoArgsConstructor;
|
@ -1,4 +1,4 @@
|
||||
package org.sadtech.bot.vcs.core.utils;
|
||||
package org.sadtech.bot.gitlab.core.utils;
|
||||
|
||||
import com.fasterxml.jackson.databind.DeserializationFeature;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.ChatJpaRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Chat;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.ChatRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Chat;
|
||||
import org.sadtech.bot.gitlab.context.repository.ChatRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.ChatJpaRepository;
|
||||
import org.sadtech.haiti.database.repository.manager.AbstractSimpleManagerRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.CommentRepositoryJpa;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.CommentRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Comment;
|
||||
import org.sadtech.bot.gitlab.context.repository.CommentRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.CommentRepositoryJpa;
|
||||
import org.sadtech.haiti.database.repository.manager.AbstractSimpleManagerRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.NotifySettingJpaRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.NotifySettingRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.NotifySetting;
|
||||
import org.sadtech.bot.gitlab.context.repository.NotifySettingRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.NotifySettingJpaRepository;
|
||||
import org.sadtech.haiti.database.repository.manager.AbstractSimpleManagerRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,11 +1,11 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.PersonJpaRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Person;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.PersonRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Person;
|
||||
import org.sadtech.bot.gitlab.context.repository.PersonRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.PersonJpaRepository;
|
||||
import org.springframework.dao.InvalidDataAccessResourceUsageException;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,12 +1,12 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.PullRequestMiniRepositoryJpa;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.PullRequestsRepositoryJpa;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.PullRequestsRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.IdAndStatusPr;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequest;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.PullRequestMini;
|
||||
import org.sadtech.bot.gitlab.context.repository.PullRequestsRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.PullRequestMiniRepositoryJpa;
|
||||
import org.sadtech.bot.gitlab.data.jpa.PullRequestsRepositoryJpa;
|
||||
import org.sadtech.bot.vsc.context.domain.PullRequestStatus;
|
||||
import org.sadtech.bot.vsc.context.domain.ReviewerStatus;
|
||||
import org.sadtech.haiti.database.repository.manager.FilterManagerRepository;
|
@ -1,9 +1,9 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.RatingHistoryJpaRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.RatingHistory;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.RatingHistoryRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.RatingHistory;
|
||||
import org.sadtech.bot.gitlab.context.repository.RatingHistoryRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.RatingHistoryJpaRepository;
|
||||
import org.sadtech.haiti.database.repository.manager.AbstractSimpleManagerRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,8 +1,8 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.RatingListJpaRepository;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.RatingList;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.RatingListRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.RatingList;
|
||||
import org.sadtech.bot.gitlab.context.repository.RatingListRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.RatingListJpaRepository;
|
||||
import org.sadtech.haiti.database.repository.manager.AbstractSimpleManagerRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,10 +1,10 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.impl;
|
||||
package org.sadtech.bot.gitlab.data.impl;
|
||||
|
||||
import lombok.NonNull;
|
||||
import org.sadtech.bot.vcs.bitbucketbot.data.jpa.TaskRepositoryJpa;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Task;
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.repository.TaskRepository;
|
||||
import org.sadtech.bot.gitlab.context.domain.TaskStatus;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Task;
|
||||
import org.sadtech.bot.gitlab.context.repository.TaskRepository;
|
||||
import org.sadtech.bot.gitlab.data.jpa.TaskRepositoryJpa;
|
||||
import org.sadtech.haiti.database.repository.manager.AbstractSimpleManagerRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package org.sadtech.bot.vcs.bitbucketbot.data.jpa;
|
||||
package org.sadtech.bot.gitlab.data.jpa;
|
||||
|
||||
import org.sadtech.bot.vsc.bitbucketbot.context.domain.entity.Chat;
|
||||
import org.sadtech.bot.gitlab.context.domain.entity.Chat;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.repository.query.Param;
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user