Skip to content

Commit

Permalink
CB-6059 create team with uppercase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yagudin10 committed Dec 20, 2024
1 parent 48e0cda commit 60e1d32
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,14 +210,23 @@ public boolean deleteUser(@NotNull WebSession webSession, String userName) throw

@NotNull
@Override
public AdminTeamInfo createTeam(@NotNull WebSession webSession, String teamId, String teamName, String description) throws DBWebException {
public AdminTeamInfo createTeam(
@NotNull WebSession webSession,
@NotNull String teamId,
@Nullable String teamName,
@Nullable String description
) throws DBWebException {
if (teamId.isEmpty()) {
throw new DBWebException("Empty team ID");
}
webSession.addInfoMessage("Create new team - " + teamId);
try {
webSession.getAdminSecurityController().createTeam(teamId, teamName, description, webSession.getUser().getUserId());
SMTeam newTeam = webSession.getAdminSecurityController().findTeam(teamId);
SMTeam newTeam = webSession.getAdminSecurityController().createTeam(
teamId,
teamName,
description,
webSession.getUser().getUserId()
);
return new AdminTeamInfo(webSession, newTeam);
} catch (Exception e) {
throw new DBWebException("Error creating new team", e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ WHERE AP.SUBJECT_ID IN (R.TEAM_ID,?)
}

@Override
public SMTeam findTeam(String teamId) throws DBCException {
public SMTeam findTeam(@NotNull String teamId) throws DBCException {
return Arrays.stream(readAllTeams())
.filter(r -> r.getTeamId().equals(teamId))
.findFirst().orElse(null);
Expand Down Expand Up @@ -1219,7 +1219,12 @@ private SMUser fetchUser(ResultSet dbResult) throws SQLException {
}

@Override
public void createTeam(String teamId, String name, String description, String grantor) throws DBCException {
public SMTeam createTeam(
@NotNull String teamId,
@Nullable String name,
@Nullable String description,
@NotNull String grantor
) throws DBCException {
if (CommonUtils.isEmpty(teamId)) {
throw new DBCException("Empty team name is not allowed");
}
Expand Down Expand Up @@ -1251,6 +1256,11 @@ public void createTeam(String teamId, String name, String description, String gr
} catch (SQLException e) {
throw new DBCException("Error saving team in database", e);
}
SMTeam smTeam = new SMTeam(teamId, name, description, true);
for (String permission : getDefaultTeamPermissions()) {
smTeam.addPermission(permission);
}
return smTeam;
}

protected String[] getDefaultTeamPermissions() {
Expand Down

0 comments on commit 60e1d32

Please sign in to comment.