James Moger
2012-10-22 ba54242b0d080475bbfce2ab559b3fcf2a513a5b
src/com/gitblit/models/UserModel.java
@@ -137,7 +137,7 @@
   public List<RegistrantAccessPermission> getRepositoryPermissions() {
      List<RegistrantAccessPermission> list = new ArrayList<RegistrantAccessPermission>();
      for (Map.Entry<String, AccessPermission> entry : permissions.entrySet()) {
         list.add(new RegistrantAccessPermission(entry.getKey(), entry.getValue(), RegistrantType.REPOSITORY));
         list.add(new RegistrantAccessPermission(entry.getKey(), entry.getValue(), true, RegistrantType.REPOSITORY));
      }
      Collections.sort(list);
      return list;
@@ -167,6 +167,18 @@
         }
      }
      return false;
   }
   /**
    * Returns true if the user has an explicitly specified access permission for
    * this repository.
    *
    * @param name
    * @return if the user has an explicitly specified access permission
    */
   public boolean hasExplicitRepositoryPermission(String name) {
      String repository = AccessPermission.repositoryFromRole(name).toLowerCase();
      return permissions.containsKey(repository);
   }
   
   /**
@@ -364,6 +376,27 @@
      }
      return false;
   }
   /**
    * Returns true if the user is allowed to create the specified repository.
    *
    * @param repository
    * @return true if the user can create the repository
    */
   public boolean canCreate(String repository) {
      if (canAdmin()) {
         // admins can create any repository
         return true;
      }
      if (canCreate) {
         String projectPath = StringUtils.getFirstPathElement(repository);
         if (!StringUtils.isEmpty(projectPath) && projectPath.equalsIgnoreCase("~" + username)) {
            // personal repository
            return true;
         }
      }
      return false;
   }
   public boolean isTeamMember(String teamname) {
      for (TeamModel team : teams) {