private Map<Repository, List<RepositoryBranch>> getHeadRepositories(
        GitHubRepository repository, List<RepositoryBranch> baseBranches) {
      Map<Repository, List<RepositoryBranch>> myRepositories = new HashMap<>();
      GitHubCache cache = GitHubCache.create(repository);
      final User mySelf = cache.getMySelf();
      String repositoryAuthor = repository.getRepositoryAuthor();
      if (repositoryAuthor.equals(mySelf.getLogin())) {
        myRepositories.put(repository.getRepository(), baseBranches);
      } else {
        if (repository.isCollaborator()) {
          myRepositories.put(repository.getRepository(), baseBranches);
        }
        List<Repository> forks = cache.getForks();
        Repository myRepository = null;
        for (Repository fork : forks) {
          User owner = fork.getOwner();
          if (owner.getLogin().equals(mySelf.getLogin())) {
            myRepository = fork;
            break;
          }
        }
        if (myRepository == null) {
          return Collections.emptyMap();
        }

        // get my branches
        GitHubClient client = repository.createGitHubClient();
        List<RepositoryBranch> myRepositoryBranches = getMyRepositoryBranches(client, myRepository);
        myRepositories.put(myRepository, myRepositoryBranches);
      }
      return myRepositories;
    }
  /** Fill combobox with forks of repository */
  public ComboBoxModel doFillForkItems(@QueryParameter String value, @QueryParameter String name) {
    ComboBoxModel aux = new ComboBoxModel();

    if (this.githubClient.getUser() == null) {
      setGithubConfig();
    }

    try {
      RepositoryService githubRepoSrv = new RepositoryService(this.githubClient);
      List<org.eclipse.egit.github.core.Repository> forks;

      try {
        // get parent repository if repository itself is forked
        org.eclipse.egit.github.core.Repository parent =
            githubRepoSrv.getRepository(value, name).getParent();

        if (parent != null) {
          // get fork of parent repository
          forks = githubRepoSrv.getForks(parent);
          for (org.eclipse.egit.github.core.Repository fork : forks) {
            org.eclipse.egit.github.core.User user = fork.getOwner();
            aux.add(user.getLogin());
          }
        }

        if (aux.isEmpty()) {
          // add forks of repository
          forks = githubRepoSrv.getForks(new RepositoryId(value, name));
          for (org.eclipse.egit.github.core.Repository fork : forks) {
            org.eclipse.egit.github.core.User user = fork.getOwner();
            aux.add(user.getLogin());
          }
        }
        aux.add(0, value);
      } catch (Exception ex) {
      }

      try {
        // try to use global githubLogin, find repository and add forks
        forks = githubRepoSrv.getForks(new RepositoryId(this.githubLogin, name));
        for (org.eclipse.egit.github.core.Repository fork : forks) {
          org.eclipse.egit.github.core.User user = fork.getOwner();
          if (!aux.contains(user.getLogin())) {
            aux.add(user.getLogin());
          }
        }
      } catch (Exception ex) {
      }

    } catch (Exception ex) {
      // TODO: handle exception
    }
    Collections.sort(aux);
    return this.forkItems = aux;
  }
  private void prepareData(GitData gitData, List<Repository> repositories, User user)
      throws IOException {
    UserDetail userDetail = new UserDetail();
    userDetail.setName(user.getLogin());
    userDetail.setAvatarUrl(user.getAvatarUrl());
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd.MM.yyyy");
    userDetail.setCreatedAt(simpleDateFormat.format(user.getCreatedAt()));
    userDetail.setEmail(user.getEmail());
    userDetail.setFollower(user.getFollowers());
    userDetail.setDiskUsage(user.getDiskUsage());

    gitData.setUser(userDetail);

    Map<String, Integer> usedLanguages = new HashMap<>();
    for (Repository repository : repositories) {
      String language = (repository.getLanguage() == null) ? "Unknown" : repository.getLanguage();
      if (usedLanguages.containsKey(language)) {
        int count = usedLanguages.get(language);
        usedLanguages.replace(language, ++count);
      } else {
        usedLanguages.put(language, 1);
      }
    }

    gitData.setUsedLanguages(usedLanguages);
  }
Пример #4
0
  @Override
  public void run() {
    List<User> orgs;
    try {
      orgs = cache.requestAndStore(persistedOrgs);
      syncResult.stats.numUpdates++;
    } catch (IOException | SQLException e) {
      syncResult.stats.numIoExceptions++;
      Log.d(TAG, "Exception requesting users and orgs", e);
      return;
    }

    Log.d(TAG, "Syncing " + orgs.size() + " users and orgs");
    for (User org : orgs) {
      if (cancelled) return;

      Log.d(TAG, "Syncing repos for " + org.getLogin());
      try {
        cache.requestAndStore(repos.under(org));
        syncResult.stats.numUpdates++;
      } catch (IOException | SQLException e) {
        syncResult.stats.numIoExceptions++;
        Log.d(TAG, "Exception requesting repositories", e);
      }
    }

    Log.d(TAG, "Sync campaign finished");
  }
 @Override
 public String getValue() throws IllegalAccessException, InvocationTargetException {
   User user = getIssueData().getAssignee();
   if (user == null) {
     return ""; // NOI18N
   }
   return user.getLogin();
 }
 private void fillData(List<User> organizations) {
   if (organizations != null && organizations.size() > 0) {
     for (User org : organizations) {
       mAdapter.add(org.getLogin());
     }
   }
   mAdapter.notifyDataSetChanged();
 }
Пример #7
0
 @Override
 public void process(Exchange exchange) throws Exception {
   Message in = exchange.getIn();
   RepositoryCommit commit = (RepositoryCommit) in.getBody();
   User author = commit.getAuthor();
   log.debug(
       "Got commit with author: "
           + author.getLogin()
           + ": "
           + author.getHtmlUrl()
           + " SHA "
           + commit.getSha());
 }
Пример #8
0
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    User owner = repository.getOwner();

    ActionBar actionBar = getSupportActionBar();
    actionBar.setTitle(repository.getName());
    actionBar.setSubtitle(owner.getLogin());
    actionBar.setDisplayHomeAsUpEnabled(true);

    if (owner.getAvatarUrl() != null && RepositoryUtils.isComplete(repository)) configurePager();
    else {
      avatars.bind(getSupportActionBar(), owner);
      ViewUtils.setGone(loadingBar, false);
      setGone(true);
      new RefreshRepositoryTask(this, repository) {

        @Override
        protected void onSuccess(Repository fullRepository) throws Exception {
          super.onSuccess(fullRepository);

          repository = fullRepository;
          configurePager();
        }

        @Override
        protected void onException(Exception e) throws RuntimeException {
          super.onException(e);

          ToastUtils.show(RepositoryViewActivity.this, string.error_repo_load);
          ViewUtils.setGone(loadingBar, true);
        }
      }.execute();
    }
  }
Пример #9
0
 @Override
 protected void update(int position, User item) {
   setText(0, item.getLogin());
   loader.bind(imageView(1), item);
   setChecked(2, selected == position);
 }
  private void updateHeader(final Issue issue) {
    if (!isUsable()) return;

    boolean isPullRequest = IssueUtils.isPullRequest(issue);
    titleText.setText(issue.getTitle());

    String body = issue.getBodyHtml();
    if (!TextUtils.isEmpty(body)) bodyImageGetter.bind(bodyText, body, issue.getId());
    else bodyText.setText(R.string.no_description_given);

    authorText.setText(issue.getUser().getLogin());
    createdDateText.setText(
        new StyledText().append(getString(R.string.prefix_opened)).append(issue.getCreatedAt()));
    avatars.bind(creatorAvatar, issue.getUser());

    if (isPullRequest && issue.getPullRequest().getCommits() > 0) {
      ViewUtils.setGone(commitsView, false);

      TextView icon = (TextView) headerView.findViewById(R.id.tv_commit_icon);
      TypefaceUtils.setOcticons(icon);
      icon.setText(TypefaceUtils.ICON_GIT_COMMIT);

      String commits =
          getString(R.string.pull_request_commits, issue.getPullRequest().getCommits());
      ((TextView) headerView.findViewById(R.id.tv_pull_request_commits)).setText(commits);
    } else ViewUtils.setGone(commitsView, true);

    boolean open = STATE_OPEN.equals(issue.getState());
    if (!open) {
      StyledText text = new StyledText();
      if (isPullRequest && issue.getPullRequest().isMerged()) {
        text.bold(getString(R.string.merged));
        stateText.setBackgroundResource(R.color.state_background_merged);
      } else {
        text.bold(getString(R.string.closed));
        stateText.setBackgroundResource(R.color.state_background_closed);
      }
      Date closedAt = issue.getClosedAt();
      if (closedAt != null) text.append(' ').append(closedAt);
      stateText.setText(text);
    }
    ViewUtils.setGone(stateText, open);

    User assignee = issue.getAssignee();
    if (assignee != null) {
      StyledText name = new StyledText();
      name.bold(assignee.getLogin());
      name.append(' ').append(getString(R.string.assigned));
      assigneeText.setText(name);
      assigneeAvatar.setVisibility(VISIBLE);
      avatars.bind(assigneeAvatar, assignee);
    } else {
      assigneeAvatar.setVisibility(GONE);
      assigneeText.setText(R.string.unassigned);
    }

    List<Label> labels = issue.getLabels();
    if (labels != null && !labels.isEmpty()) {
      LabelDrawableSpan.setText(labelsArea, labels);
      labelsArea.setVisibility(VISIBLE);
    } else labelsArea.setVisibility(GONE);

    if (issue.getMilestone() != null) {
      Milestone milestone = issue.getMilestone();
      StyledText milestoneLabel = new StyledText();
      milestoneLabel.append(getString(R.string.milestone_prefix));
      milestoneLabel.append(' ');
      milestoneLabel.bold(milestone.getTitle());
      milestoneText.setText(milestoneLabel);
      float closed = milestone.getClosedIssues();
      float total = closed + milestone.getOpenIssues();
      if (total > 0) {
        ((LayoutParams) milestoneProgressArea.getLayoutParams()).weight = closed / total;
        milestoneProgressArea.setVisibility(VISIBLE);
      } else milestoneProgressArea.setVisibility(GONE);
      milestoneArea.setVisibility(VISIBLE);
    } else milestoneArea.setVisibility(GONE);

    String state = issue.getState();
    if (state != null && state.length() > 0)
      state = state.substring(0, 1).toUpperCase(Locale.US) + state.substring(1);
    else state = "";

    ViewUtils.setGone(progress, true);
    ViewUtils.setGone(list, false);
    updateStateItem(issue);
  }
 /** Verify URI with name */
 public void testUriWithTrailingSlashes() {
   User user = UserUriMatcher.getUser(Uri.parse("http://github.com/defunkt//"));
   assertNotNull(user);
   assertEquals("defunkt", user.getLogin());
 }
 /** Verify URI with name */
 public void testHttpsUriWithName() {
   User user = UserUriMatcher.getUser(Uri.parse("https://github.com/mojombo"));
   assertNotNull(user);
   assertEquals("mojombo", user.getLogin());
 }
 /** Verify URI with name */
 public void testHttpUriWithName() {
   User user = UserUriMatcher.getUser(Uri.parse("http://github.com/defunkt"));
   assertNotNull(user);
   assertEquals("defunkt", user.getLogin());
 }