Search in sources :

Example 6 with Optional

use of com.gh4a.utils.Optional in project gh4a by slapperwan.

the class ReviewFragment method onCreateDataSingle.

@Override
protected Single<List<TimelineItem>> onCreateDataSingle(boolean bypassCache) {
    final PullRequestService prService = ServiceFactory.get(PullRequestService.class, bypassCache);
    final PullRequestReviewService reviewService = ServiceFactory.get(PullRequestReviewService.class, bypassCache);
    final PullRequestReviewCommentService commentService = ServiceFactory.get(PullRequestReviewCommentService.class, bypassCache);
    Single<TimelineItem.TimelineReview> reviewItemSingle = reviewService.getReview(mRepoOwner, mRepoName, mIssueNumber, mReview.id()).map(ApiHelpers::throwOnFailure).map(TimelineItem.TimelineReview::new);
    Single<List<ReviewComment>> reviewCommentsSingle = ApiHelpers.PageIterator.toSingle(page -> reviewService.getReviewComments(mRepoOwner, mRepoName, mIssueNumber, mReview.id())).compose(RxUtils.sortList(ApiHelpers.COMMENT_COMPARATOR)).cache();
    Single<Boolean> hasCommentsSingle = reviewCommentsSingle.map(comments -> !comments.isEmpty());
    Single<Optional<List<GitHubFile>>> filesSingle = hasCommentsSingle.flatMap(hasComments -> {
        if (!hasComments) {
            return Single.just(Optional.absent());
        }
        return ApiHelpers.PageIterator.toSingle(page -> prService.getPullRequestFiles(mRepoOwner, mRepoName, mIssueNumber, page)).map(Optional::of);
    });
    Single<Optional<List<ReviewComment>>> commentsSingle = hasCommentsSingle.flatMap(hasComments -> {
        if (!hasComments) {
            return Single.just(Optional.absent());
        }
        return ApiHelpers.PageIterator.toSingle(page -> commentService.getPullRequestComments(mRepoOwner, mRepoName, mIssueNumber, page)).compose(RxUtils.sortList(ApiHelpers.COMMENT_COMPARATOR)).map(Optional::of);
    });
    return Single.zip(reviewItemSingle, reviewCommentsSingle, filesSingle, commentsSingle, (reviewItem, reviewComments, filesOpt, commentsOpt) -> {
        if (!reviewComments.isEmpty()) {
            HashMap<String, GitHubFile> filesByName = new HashMap<>();
            if (filesOpt.isPresent()) {
                for (GitHubFile file : filesOpt.get()) {
                    filesByName.put(file.filename(), file);
                }
            }
            // Add all of the review comments to the review item creating necessary diff hunks
            for (ReviewComment reviewComment : reviewComments) {
                GitHubFile file = filesByName.get(reviewComment.path());
                reviewItem.addComment(reviewComment, file, true);
            }
            if (commentsOpt.isPresent()) {
                for (ReviewComment commitComment : commentsOpt.get()) {
                    if (reviewComments.contains(commitComment)) {
                        continue;
                    }
                    // Rest of the comments should be added only if they are under the same
                    // diff hunks as the original review comments.
                    GitHubFile file = filesByName.get(commitComment.path());
                    reviewItem.addComment(commitComment, file, false);
                }
            }
        }
        List<TimelineItem> items = new ArrayList<>();
        items.add(reviewItem);
        List<TimelineItem.Diff> diffHunks = new ArrayList<>(reviewItem.getDiffHunks());
        Collections.sort(diffHunks);
        for (TimelineItem.Diff diffHunk : diffHunks) {
            items.add(diffHunk);
            items.addAll(diffHunk.comments);
            if (!diffHunk.isReply()) {
                items.add(new TimelineItem.Reply(diffHunk.getInitialTimelineComment()));
            }
        }
        return items;
    });
}
Also used : CoordinatorLayout(android.support.design.widget.CoordinatorLayout) IssueCommentService(com.meisolsson.githubsdk.service.issues.IssueCommentService) Bundle(android.os.Bundle) PullRequestReviewService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewService) GitHubFile(com.meisolsson.githubsdk.model.GitHubFile) CreateReviewComment(com.meisolsson.githubsdk.model.request.pull_request.CreateReviewComment) FrameLayout(android.widget.FrameLayout) GitHubCommentBase(com.meisolsson.githubsdk.model.GitHubCommentBase) Intent(android.content.Intent) StringRes(android.support.annotation.StringRes) HashMap(java.util.HashMap) Response(retrofit2.Response) Single(io.reactivex.Single) ArrayList(java.util.ArrayList) PullRequestReviewCommentService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewCommentService) Reaction(com.meisolsson.githubsdk.model.Reaction) PullRequestService(com.meisolsson.githubsdk.service.pull_request.PullRequestService) R(com.gh4a.R) TimelineItemAdapter(com.gh4a.adapter.timeline.TimelineItemAdapter) View(android.view.View) IntentUtils(com.gh4a.utils.IntentUtils) Review(com.meisolsson.githubsdk.model.Review) ApiHelpers(com.gh4a.utils.ApiHelpers) ReactionService(com.meisolsson.githubsdk.service.reactions.ReactionService) LayoutInflater(android.view.LayoutInflater) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) EditPullRequestCommentActivity(com.gh4a.activities.EditPullRequestCommentActivity) ReactionRequest(com.meisolsson.githubsdk.model.request.ReactionRequest) ViewGroup(android.view.ViewGroup) RecyclerView(android.support.v7.widget.RecyclerView) RootAdapter(com.gh4a.adapter.RootAdapter) List(java.util.List) AlertDialog(android.support.v7.app.AlertDialog) RxUtils(com.gh4a.utils.RxUtils) EditorBottomSheet(com.gh4a.widget.EditorBottomSheet) Optional(com.gh4a.utils.Optional) EditIssueCommentActivity(com.gh4a.activities.EditIssueCommentActivity) TimelineItem(com.gh4a.model.TimelineItem) Nullable(android.support.annotation.Nullable) ServiceFactory(com.gh4a.ServiceFactory) Activity(android.app.Activity) Collections(java.util.Collections) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) PullRequestService(com.meisolsson.githubsdk.service.pull_request.PullRequestService) GitHubFile(com.meisolsson.githubsdk.model.GitHubFile) ArrayList(java.util.ArrayList) List(java.util.List) PullRequestReviewCommentService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewCommentService) Optional(com.gh4a.utils.Optional) CreateReviewComment(com.meisolsson.githubsdk.model.request.pull_request.CreateReviewComment) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) TimelineItem(com.gh4a.model.TimelineItem) PullRequestReviewService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewService)

Example 7 with Optional

use of com.gh4a.utils.Optional in project gh4a by slapperwan.

the class PullRequestFragment method loadHeadReference.

private void loadHeadReference(boolean force) {
    GitService service = ServiceFactory.get(GitService.class, force);
    PullRequestMarker head = mPullRequest.head();
    Repository repo = head.repo();
    Single<Optional<GitReference>> refSingle = repo == null ? Single.just(Optional.absent()) : service.getGitReference(repo.owner().login(), repo.name(), head.ref()).map(ApiHelpers::throwOnFailure).map(Optional::of).compose(RxUtils.mapFailureToValue(HttpURLConnection.HTTP_NOT_FOUND, Optional.<GitReference>absent())).compose(makeLoaderSingle(ID_LOADER_HEAD_REF, force));
    refSingle.subscribe(refOpt -> {
        mHeadReference = refOpt.orNull();
        mHasLoadedHeadReference = true;
        getActivity().invalidateOptionsMenu();
        bindSpecialViews(mListHeaderView);
    }, this::handleLoadFailure);
}
Also used : Repository(com.meisolsson.githubsdk.model.Repository) Optional(com.gh4a.utils.Optional) GitService(com.meisolsson.githubsdk.service.git.GitService) ApiHelpers(com.gh4a.utils.ApiHelpers) PullRequestMarker(com.meisolsson.githubsdk.model.PullRequestMarker) GitReference(com.meisolsson.githubsdk.model.git.GitReference) CreateGitReference(com.meisolsson.githubsdk.model.request.git.CreateGitReference)

Example 8 with Optional

use of com.gh4a.utils.Optional in project gh4a by slapperwan.

the class EventListFragment method onItemClick.

@Override
public void onItemClick(GitHubEvent event) {
    if (EventAdapter.hasInvalidPayload(event)) {
        return;
    }
    GitHubEvent.RepoIdentifier eventRepo = event.repo();
    String repoOwner = "";
    String repoName = "";
    Intent intent = null;
    Single<Optional<Intent>> intentSingle = null;
    if (eventRepo != null) {
        String[] repoNamePart = eventRepo.repoWithUserName().split("/");
        if (repoNamePart.length == 2) {
            repoOwner = repoNamePart[0];
            repoName = repoNamePart[1];
        }
    }
    if (Arrays.binarySearch(REPO_EVENTS, event.type()) >= 0 && eventRepo == null) {
        Toast.makeText(getActivity(), R.string.repo_not_found_toast, Toast.LENGTH_LONG).show();
        return;
    }
    switch(event.type()) {
        case CommitCommentEvent:
            {
                CommitCommentPayload payload = (CommitCommentPayload) event.payload();
                GitComment comment = payload.comment();
                if (comment != null) {
                    intentSingle = CommitCommentLoadTask.load(getActivity(), repoOwner, repoName, comment.commitId(), new IntentUtils.InitialCommentMarker(comment.id()));
                }
                break;
            }
        case CreateEvent:
            {
                CreatePayload payload = (CreatePayload) event.payload();
                String ref = null;
                if (payload.refType() == ReferenceType.Branch || payload.refType() == ReferenceType.Tag) {
                    ref = payload.ref();
                }
                intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName, ref);
                break;
            }
        case DeleteEvent:
            intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName);
            break;
        case DownloadEvent:
            {
                DownloadPayload payload = (DownloadPayload) event.payload();
                Download download = payload.download();
                UiUtils.enqueueDownloadWithPermissionCheck((BaseActivity) getActivity(), download.htmlUrl(), download.contentType(), download.name(), download.description(), null);
                break;
            }
        case FollowEvent:
            {
                FollowPayload payload = (FollowPayload) event.payload();
                intent = UserActivity.makeIntent(getActivity(), payload.target());
                break;
            }
        case ForkEvent:
            {
                ForkPayload payload = (ForkPayload) event.payload();
                Repository forkee = payload.forkee();
                if (forkee != null) {
                    intent = RepositoryActivity.makeIntent(getActivity(), forkee);
                } else {
                    Toast.makeText(getActivity(), R.string.repo_not_found_toast, Toast.LENGTH_LONG).show();
                }
                break;
            }
        case ForkApplyEvent:
            intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName);
            break;
        case GistEvent:
            {
                GistPayload payload = (GistPayload) event.payload();
                intent = GistActivity.makeIntent(getActivity(), payload.gist().id());
                break;
            }
        case GollumEvent:
            {
                GollumPayload payload = (GollumPayload) event.payload();
                intent = WikiListActivity.makeIntent(getActivity(), repoOwner, repoName, payload.pages().isEmpty() ? null : payload.pages().get(0));
                break;
            }
        case IssueCommentEvent:
            {
                IssueCommentPayload payload = (IssueCommentPayload) event.payload();
                Issue issue = payload.issue();
                PullRequest request = issue != null ? issue.pullRequest() : null;
                IntentUtils.InitialCommentMarker initialComment = payload.comment() != null ? new IntentUtils.InitialCommentMarker(payload.comment().id()) : null;
                if (request != null && request.htmlUrl() != null) {
                    intent = PullRequestActivity.makeIntent(getActivity(), repoOwner, repoName, issue.number(), initialComment != null ? PullRequestActivity.PAGE_CONVERSATION : -1, initialComment);
                } else if (issue != null) {
                    intent = IssueActivity.makeIntent(getActivity(), repoOwner, repoName, issue.number(), initialComment);
                }
                break;
            }
        case IssuesEvent:
            {
                IssuesPayload payload = (IssuesPayload) event.payload();
                startActivity(IssueActivity.makeIntent(getActivity(), repoOwner, repoName, payload.issue().number()));
                break;
            }
        case MemberEvent:
            intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName);
            break;
        case PublicEvent:
            intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName);
            break;
        case PullRequestEvent:
            {
                PullRequestPayload payload = (PullRequestPayload) event.payload();
                intent = PullRequestActivity.makeIntent(getActivity(), repoOwner, repoName, payload.number());
                break;
            }
        case PullRequestReviewCommentEvent:
            {
                PullRequestReviewCommentPayload payload = (PullRequestReviewCommentPayload) event.payload();
                PullRequest pr = payload.pullRequest();
                ReviewComment comment = payload.comment();
                IntentUtils.InitialCommentMarker initialComment = comment != null ? new IntentUtils.InitialCommentMarker(comment.id()) : null;
                if (pr != null) {
                    if (initialComment != null) {
                        intentSingle = PullRequestReviewCommentLoadTask.load(getActivity(), repoOwner, repoName, pr.number(), initialComment);
                    } else {
                        intent = PullRequestActivity.makeIntent(getActivity(), repoOwner, repoName, pr.number(), -1, null);
                    }
                } else if (comment != null) {
                    intent = CommitActivity.makeIntent(getActivity(), repoOwner, repoName, comment.commitId(), initialComment);
                }
                break;
            }
        case PushEvent:
            {
                PushPayload payload = (PushPayload) event.payload();
                List<GitCommit> commits = payload.commits();
                if (commits != null && !commits.isEmpty()) {
                    if (commits.size() > 1) {
                        // if commit > 1, then show compare activity
                        intent = CompareActivity.makeIntent(getActivity(), repoOwner, repoName, payload.before(), payload.head());
                    } else {
                        // only 1 commit, then show the commit details
                        intent = CommitActivity.makeIntent(getActivity(), repoOwner, repoName, commits.get(0).sha());
                    }
                } else {
                    intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName);
                }
                break;
            }
        case ReleaseEvent:
            {
                ReleasePayload payload = (ReleasePayload) event.payload();
                Release release = payload.release();
                if (release != null) {
                    intent = ReleaseInfoActivity.makeIntent(getActivity(), repoOwner, repoName, release.id());
                }
                break;
            }
        case WatchEvent:
            intent = RepositoryActivity.makeIntent(getActivity(), repoOwner, repoName);
            break;
    }
    if (intent != null) {
        startActivity(intent);
    } else if (intentSingle != null) {
        intentSingle.compose(RxUtils::doInBackground).compose(RxUtils.wrapWithProgressDialog(getActivity(), R.string.loading_msg)).subscribe(result -> {
            if (result.isPresent() && isAdded()) {
                startActivity(result.get());
            }
        }, error -> Log.d(Gh4Application.LOG_TAG, "Loading click intent failed", error));
    }
}
Also used : ForkPayload(com.meisolsson.githubsdk.model.payload.ForkPayload) CommitCommentLoadTask(com.gh4a.resolver.CommitCommentLoadTask) CommitCommentPayload(com.meisolsson.githubsdk.model.payload.CommitCommentPayload) Arrays(java.util.Arrays) Uri(android.net.Uri) PullRequest(com.meisolsson.githubsdk.model.PullRequest) UserActivity(com.gh4a.activities.UserActivity) WikiListActivity(com.gh4a.activities.WikiListActivity) EventAdapter(com.gh4a.adapter.EventAdapter) Issue(com.meisolsson.githubsdk.model.Issue) View(android.view.View) PullRequestReviewCommentPayload(com.meisolsson.githubsdk.model.payload.PullRequestReviewCommentPayload) Log(android.util.Log) IntentUtils(com.gh4a.utils.IntentUtils) ReferenceType(com.meisolsson.githubsdk.model.ReferenceType) IssueCommentPayload(com.meisolsson.githubsdk.model.payload.IssueCommentPayload) GistPayload(com.meisolsson.githubsdk.model.payload.GistPayload) IssuesPayload(com.meisolsson.githubsdk.model.payload.IssuesPayload) ReleaseInfoActivity(com.gh4a.activities.ReleaseInfoActivity) GistActivity(com.gh4a.activities.GistActivity) GitCommit(com.meisolsson.githubsdk.model.git.GitCommit) List(java.util.List) RxUtils(com.gh4a.utils.RxUtils) CommitActivity(com.gh4a.activities.CommitActivity) PullRequestPayload(com.meisolsson.githubsdk.model.payload.PullRequestPayload) Optional(com.gh4a.utils.Optional) GitHubEvent(com.meisolsson.githubsdk.model.GitHubEvent) IssueListActivity(com.gh4a.activities.IssueListActivity) Release(com.meisolsson.githubsdk.model.Release) ContextMenu(android.view.ContextMenu) FollowPayload(com.meisolsson.githubsdk.model.payload.FollowPayload) Repository(com.meisolsson.githubsdk.model.Repository) ReleasePayload(com.meisolsson.githubsdk.model.payload.ReleasePayload) ContextMenuInfo(android.view.ContextMenu.ContextMenuInfo) Intent(android.content.Intent) Download(com.meisolsson.githubsdk.model.Download) Single(io.reactivex.Single) PushPayload(com.meisolsson.githubsdk.model.payload.PushPayload) MenuItem(android.view.MenuItem) PullRequestReviewCommentLoadTask(com.gh4a.resolver.PullRequestReviewCommentLoadTask) UiUtils(com.gh4a.utils.UiUtils) User(com.meisolsson.githubsdk.model.User) ContextMenuAwareRecyclerView(com.gh4a.widget.ContextMenuAwareRecyclerView) Toast(android.widget.Toast) Menu(android.view.Menu) R(com.gh4a.R) GollumPayload(com.meisolsson.githubsdk.model.payload.GollumPayload) GitHubWikiPage(com.meisolsson.githubsdk.model.GitHubWikiPage) CompareActivity(com.gh4a.activities.CompareActivity) LayoutInflater(android.view.LayoutInflater) IssueActivity(com.gh4a.activities.IssueActivity) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) DownloadPayload(com.meisolsson.githubsdk.model.payload.DownloadPayload) PullRequestActivity(com.gh4a.activities.PullRequestActivity) CreatePayload(com.meisolsson.githubsdk.model.payload.CreatePayload) RecyclerView(android.support.v7.widget.RecyclerView) RootAdapter(com.gh4a.adapter.RootAdapter) ReleaseAsset(com.meisolsson.githubsdk.model.ReleaseAsset) GitComment(com.meisolsson.githubsdk.model.git.GitComment) RepositoryActivity(com.gh4a.activities.RepositoryActivity) Gh4Application(com.gh4a.Gh4Application) BaseActivity(com.gh4a.BaseActivity) GitHubEventType(com.meisolsson.githubsdk.model.GitHubEventType) ForkPayload(com.meisolsson.githubsdk.model.payload.ForkPayload) GollumPayload(com.meisolsson.githubsdk.model.payload.GollumPayload) ReleasePayload(com.meisolsson.githubsdk.model.payload.ReleasePayload) FollowPayload(com.meisolsson.githubsdk.model.payload.FollowPayload) Issue(com.meisolsson.githubsdk.model.Issue) PullRequest(com.meisolsson.githubsdk.model.PullRequest) GistPayload(com.meisolsson.githubsdk.model.payload.GistPayload) IssueCommentPayload(com.meisolsson.githubsdk.model.payload.IssueCommentPayload) PullRequestPayload(com.meisolsson.githubsdk.model.payload.PullRequestPayload) List(java.util.List) GitComment(com.meisolsson.githubsdk.model.git.GitComment) Download(com.meisolsson.githubsdk.model.Download) Release(com.meisolsson.githubsdk.model.Release) PushPayload(com.meisolsson.githubsdk.model.payload.PushPayload) Optional(com.gh4a.utils.Optional) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) IssuesPayload(com.meisolsson.githubsdk.model.payload.IssuesPayload) Intent(android.content.Intent) GitHubEvent(com.meisolsson.githubsdk.model.GitHubEvent) PullRequestReviewCommentPayload(com.meisolsson.githubsdk.model.payload.PullRequestReviewCommentPayload) CommitCommentPayload(com.meisolsson.githubsdk.model.payload.CommitCommentPayload) CreatePayload(com.meisolsson.githubsdk.model.payload.CreatePayload) Repository(com.meisolsson.githubsdk.model.Repository) IntentUtils(com.gh4a.utils.IntentUtils) BaseActivity(com.gh4a.BaseActivity) DownloadPayload(com.meisolsson.githubsdk.model.payload.DownloadPayload)

Example 9 with Optional

use of com.gh4a.utils.Optional in project gh4a by slapperwan.

the class PullRequestDiffCommentLoadTask method getSingle.

@Override
protected Single<Optional<Intent>> getSingle() {
    PullRequestService service = ServiceFactory.get(PullRequestService.class, false);
    Single<PullRequest> pullRequestSingle = service.getPullRequest(mRepoOwner, mRepoName, mPullRequestNumber).map(ApiHelpers::throwOnFailure);
    final PullRequestReviewCommentService commentService = ServiceFactory.get(PullRequestReviewCommentService.class, false);
    Single<List<ReviewComment>> commentsSingle = ApiHelpers.PageIterator.toSingle(page -> commentService.getPullRequestComments(mRepoOwner, mRepoName, mPullRequestNumber, page)).compose(RxUtils.filter(c -> c.position() != null)).cache();
    Single<List<GitHubFile>> filesSingle = ApiHelpers.PageIterator.toSingle(page -> service.getPullRequestFiles(mRepoOwner, mRepoName, mPullRequestNumber, page));
    return commentsSingle.compose(RxUtils.filterAndMapToFirst(c -> mMarker.matches(c.id(), c.createdAt()))).zipWith(filesSingle, (commentOpt, files) -> commentOpt.map(comment -> {
        for (GitHubFile commitFile : files) {
            if (commitFile.filename().equals(comment.path())) {
                return Pair.create(true, commitFile);
            }
        }
        return Pair.create(comment != null, (GitHubFile) null);
    })).flatMap(result -> {
        if (result.isPresent()) {
            boolean foundComment = result.get().first;
            GitHubFile file = result.get().second;
            if (foundComment && file != null && !FileUtils.isImage(file.filename())) {
                return Single.zip(pullRequestSingle, commentsSingle, (pr, comments) -> {
                    // noinspection CodeBlock2Expr
                    return Optional.of(PullRequestDiffViewerActivity.makeIntent(mActivity, mRepoOwner, mRepoName, mPullRequestNumber, pr.head().sha(), file.filename(), file.patch(), comments, -1, -1, -1, false, mMarker));
                });
            }
            if (foundComment && file == null) {
                return Single.just(Optional.of(PullRequestActivity.makeIntent(mActivity, mRepoOwner, mRepoName, mPullRequestNumber, mPage, mMarker)));
            }
        }
        return Single.just(Optional.absent());
    });
}
Also used : PullRequestService(com.meisolsson.githubsdk.service.pull_request.PullRequestService) FileUtils(com.gh4a.utils.FileUtils) ApiHelpers(com.gh4a.utils.ApiHelpers) GitHubFile(com.meisolsson.githubsdk.model.GitHubFile) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) PullRequest(com.meisolsson.githubsdk.model.PullRequest) Intent(android.content.Intent) PullRequestDiffViewerActivity(com.gh4a.activities.PullRequestDiffViewerActivity) Single(io.reactivex.Single) PullRequestActivity(com.gh4a.activities.PullRequestActivity) PullRequestReviewCommentService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewCommentService) VisibleForTesting(android.support.annotation.VisibleForTesting) List(java.util.List) RxUtils(com.gh4a.utils.RxUtils) PullRequestService(com.meisolsson.githubsdk.service.pull_request.PullRequestService) FragmentActivity(android.support.v4.app.FragmentActivity) Pair(android.support.v4.util.Pair) Optional(com.gh4a.utils.Optional) ServiceFactory(com.gh4a.ServiceFactory) IntentUtils(com.gh4a.utils.IntentUtils) PullRequest(com.meisolsson.githubsdk.model.PullRequest) ApiHelpers(com.gh4a.utils.ApiHelpers) GitHubFile(com.meisolsson.githubsdk.model.GitHubFile) List(java.util.List) PullRequestReviewCommentService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewCommentService)

Example 10 with Optional

use of com.gh4a.utils.Optional in project gh4a by slapperwan.

the class PullRequestReviewCommentLoadTask method load.

public static Single<Optional<Intent>> load(Context context, String repoOwner, String repoName, int pullRequestNumber, IntentUtils.InitialCommentMarker marker) {
    final PullRequestReviewService reviewService = ServiceFactory.get(PullRequestReviewService.class, false);
    final PullRequestReviewCommentService commentService = ServiceFactory.get(PullRequestReviewCommentService.class, false);
    return ApiHelpers.PageIterator.toSingle(page -> commentService.getPullRequestComments(repoOwner, repoName, pullRequestNumber, page)).compose(RxUtils.sortList(ApiHelpers.COMMENT_COMPARATOR)).flatMap(comments -> {
        Map<String, ReviewComment> commentsByDiffHunkId = new HashMap<>();
        for (ReviewComment comment : comments) {
            String id = TimelineItem.Diff.getDiffHunkId(comment);
            if (!commentsByDiffHunkId.containsKey(id)) {
                // Because the comment we are looking for could be a reply to another
                // review we have to keep track of initial comments for each diff hunk
                commentsByDiffHunkId.put(id, comment);
            }
            if (marker.matches(comment.id(), null)) {
                // Once found the comment we are looking for get a correct review id from
                // the initial diff hunk comment
                ReviewComment initialComment = commentsByDiffHunkId.get(id);
                long reviewId = initialComment.pullRequestReviewId();
                return reviewService.getReview(repoOwner, repoName, pullRequestNumber, reviewId).map(ApiHelpers::throwOnFailure).map(Optional::of);
            }
        }
        return Single.just(Optional.<Review>absent());
    }).map(reviewOpt -> reviewOpt.map(review -> ReviewActivity.makeIntent(context, repoOwner, repoName, pullRequestNumber, review, marker)));
}
Also used : Context(android.content.Context) ReviewActivity(com.gh4a.activities.ReviewActivity) Review(com.meisolsson.githubsdk.model.Review) PullRequestReviewService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewService) ApiHelpers(com.gh4a.utils.ApiHelpers) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) Intent(android.content.Intent) HashMap(java.util.HashMap) Single(io.reactivex.Single) PullRequestReviewCommentService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewCommentService) VisibleForTesting(android.support.annotation.VisibleForTesting) RxUtils(com.gh4a.utils.RxUtils) FragmentActivity(android.support.v4.app.FragmentActivity) Optional(com.gh4a.utils.Optional) Map(java.util.Map) TimelineItem(com.gh4a.model.TimelineItem) ServiceFactory(com.gh4a.ServiceFactory) IntentUtils(com.gh4a.utils.IntentUtils) ReviewComment(com.meisolsson.githubsdk.model.ReviewComment) ApiHelpers(com.gh4a.utils.ApiHelpers) Review(com.meisolsson.githubsdk.model.Review) HashMap(java.util.HashMap) Map(java.util.Map) PullRequestReviewService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewService) PullRequestReviewCommentService(com.meisolsson.githubsdk.service.pull_request.PullRequestReviewCommentService)

Aggregations

Optional (com.gh4a.utils.Optional)12 ApiHelpers (com.gh4a.utils.ApiHelpers)11 ServiceFactory (com.gh4a.ServiceFactory)9 RxUtils (com.gh4a.utils.RxUtils)9 Intent (android.content.Intent)8 Single (io.reactivex.Single)8 List (java.util.List)7 IntentUtils (com.gh4a.utils.IntentUtils)6 Context (android.content.Context)5 VisibleForTesting (android.support.annotation.VisibleForTesting)5 FragmentActivity (android.support.v4.app.FragmentActivity)5 LayoutInflater (android.view.LayoutInflater)5 View (android.view.View)5 R (com.gh4a.R)5 ViewGroup (android.view.ViewGroup)4 RepositoryActivity (com.gh4a.activities.RepositoryActivity)4 Repository (com.meisolsson.githubsdk.model.Repository)4 ReviewComment (com.meisolsson.githubsdk.model.ReviewComment)4 Bundle (android.os.Bundle)3 Nullable (android.support.annotation.Nullable)3