| | |
| | | import org.eclipse.jgit.revwalk.RevSort;
|
| | | import org.eclipse.jgit.revwalk.RevTree;
|
| | | import org.eclipse.jgit.revwalk.RevWalk;
|
| | | import org.eclipse.jgit.revwalk.filter.CommitTimeRevFilter;
|
| | | import org.eclipse.jgit.revwalk.filter.RevFilter;
|
| | | import org.eclipse.jgit.storage.file.FileRepository;
|
| | | import org.eclipse.jgit.transport.CredentialsProvider;
|
| | |
| | | }
|
| | | list.addAll(getRepositoryList(repositoriesFolder.getAbsolutePath(), repositoriesFolder,
|
| | | exportAll, searchSubfolders));
|
| | | Collections.sort(list);
|
| | | StringUtils.sortRepositorynames(list);
|
| | | return list;
|
| | | }
|
| | |
|
| | |
| | | }
|
| | |
|
| | | /**
|
| | | * Returns a list of commits since the minimum date starting from the
|
| | | * specified object id.
|
| | | * |
| | | * @param repository
|
| | | * @param objectId
|
| | | * if unspecified, HEAD is assumed.
|
| | | * @param minimumDate
|
| | | * @return list of commits
|
| | | */
|
| | | public static List<RevCommit> getRevLog(Repository repository, String objectId, Date minimumDate) {
|
| | | List<RevCommit> list = new ArrayList<RevCommit>();
|
| | | if (!hasCommits(repository)) {
|
| | | return list;
|
| | | }
|
| | | try {
|
| | | // resolve branch
|
| | | ObjectId branchObject;
|
| | | if (StringUtils.isEmpty(objectId)) {
|
| | | branchObject = getDefaultBranch(repository);
|
| | | } else {
|
| | | branchObject = repository.resolve(objectId);
|
| | | }
|
| | |
|
| | | RevWalk rw = new RevWalk(repository);
|
| | | rw.markStart(rw.parseCommit(branchObject));
|
| | | rw.setRevFilter(CommitTimeRevFilter.after(minimumDate));
|
| | | Iterable<RevCommit> revlog = rw;
|
| | | for (RevCommit rev : revlog) {
|
| | | list.add(rev);
|
| | | }
|
| | | rw.dispose();
|
| | | } catch (Throwable t) {
|
| | | error(t, repository, "{0} failed to get {1} revlog for minimum date {2}", objectId,
|
| | | minimumDate);
|
| | | }
|
| | | return list;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Returns a list of commits starting from HEAD and working backwards.
|
| | | *
|
| | | * @param repository
|
| | |
| | | }
|
| | |
|
| | | /**
|
| | | * Enumeration of the search types.
|
| | | */
|
| | | public static enum SearchType {
|
| | | AUTHOR, COMMITTER, COMMIT;
|
| | |
|
| | | public static SearchType forName(String name) {
|
| | | for (SearchType type : values()) {
|
| | | if (type.name().equalsIgnoreCase(name)) {
|
| | | return type;
|
| | | }
|
| | | }
|
| | | return COMMIT;
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String toString() {
|
| | | return name().toLowerCase();
|
| | | }
|
| | | }
|
| | |
|
| | | /**
|
| | | * Search the commit history for a case-insensitive match to the value.
|
| | | * Search results require a specified SearchType of AUTHOR, COMMITTER, or
|
| | | * COMMIT. Results may be paginated using offset and maxCount. If the
|
| | |
| | | * @return matching list of commits
|
| | | */
|
| | | public static List<RevCommit> searchRevlogs(Repository repository, String objectId,
|
| | | String value, final SearchType type, int offset, int maxCount) {
|
| | | String value, final com.gitblit.Constants.SearchType type, int offset, int maxCount) {
|
| | | final String lcValue = value.toLowerCase();
|
| | | List<RevCommit> list = new ArrayList<RevCommit>();
|
| | | if (maxCount == 0) {
|