use of jetbrains.buildServer.server.graphql.GraphQLContext in project teamcity-rest by JetBrains.
the class Mutation method unauthorizeAgent.
@Used("graphql")
@NotNull
public DataFetcherResult<UnauthorizeAgentPayload> unauthorizeAgent(@NotNull UnauthorizeAgentInput input, @NotNull DataFetchingEnvironment dfe) {
return runWithAgent(input.getAgentRawId(), agent -> {
DataFetcherResult.Builder<UnauthorizeAgentPayload> result = DataFetcherResult.newResult();
GraphQLContext context = dfe.getContext();
String authReason = input.getReason() == null ? "" : input.getReason();
try {
agent.setAuthorized(false, context.getUser(), authReason);
} catch (LicenseNotGrantedException e) {
return result.error(new OperationFailedGraphQLError(e.getMessage())).build();
}
Agent agentModel = new Agent(agent);
return result.data(new UnauthorizeAgentPayload(agentModel)).build();
});
}
use of jetbrains.buildServer.server.graphql.GraphQLContext in project teamcity-rest by JetBrains.
the class Query method globalPermissions.
@NotNull
public GlobalPermissions globalPermissions(@NotNull DataFetchingEnvironment env) {
GraphQLContext ctx = env.getContext();
SUser user = ctx.getUser();
if (user == null) {
return new GlobalPermissions(false);
}
return new GlobalPermissions(user.getGlobalPermissions().contains(Permission.MANAGE_AGENT_POOLS));
}
use of jetbrains.buildServer.server.graphql.GraphQLContext in project teamcity-rest by JetBrains.
the class Mutation method authorizeAgent.
@Used("graphql")
@NotNull
public DataFetcherResult<AuthorizeAgentPayload> authorizeAgent(@NotNull AuthorizeAgentInput input, @NotNull DataFetchingEnvironment dfe) {
return runWithAgent(input.getAgentRawId(), agent -> {
DataFetcherResult.Builder<AuthorizeAgentPayload> result = DataFetcherResult.newResult();
GraphQLContext context = dfe.getContext();
String authReason = input.getReason() == null ? "" : input.getReason();
// Move agent to another pool first as we don't want some cheeky build to start while agent is in a wrong pool.
if (input.getTargetAgentPoolRawId() != null) {
try {
myAgentPoolManager.moveAgentToPool(input.getTargetAgentPoolRawId(), agent);
} catch (NoSuchAgentPoolException e) {
return result.error(new EntityNotFoundGraphQLError(String.format("Agent pool with id=%d is not found.", input.getTargetAgentPoolRawId()))).build();
} catch (PoolQuotaExceededException e) {
LOG.debug(e.getMessage());
return result.error(new OperationFailedGraphQLError(String.format("Agent pool with id=%d does not accept agents.", input.getTargetAgentPoolRawId()))).build();
} catch (AgentTypeCannotBeMovedException e) {
LOG.debug(e.getMessage());
return result.error(new OperationFailedGraphQLError(String.format("Agent with id=%d can not be moved.", input.getAgentRawId()))).build();
}
}
agent.setAuthorized(true, context.getUser(), authReason);
Agent agentModel = new Agent(agent);
AbstractAgentPool targetPoolModel = null;
if (input.getTargetAgentPoolRawId() != null) {
AgentPool realPool = myAgentPoolManager.findAgentPoolById(input.getTargetAgentPoolRawId());
if (realPool != null) {
targetPoolModel = myAgentPoolFactory.produce(realPool);
}
}
return result.data(new AuthorizeAgentPayload(agentModel, targetPoolModel)).build();
});
}
use of jetbrains.buildServer.server.graphql.GraphQLContext in project teamcity-rest by JetBrains.
the class Mutation method bulkAuthorizeAgents.
@Used("graphql")
@NotNull
public DataFetcherResult<BulkAuthorizeAgentsPayload> bulkAuthorizeAgents(@NotNull BulkAuthorizeAgentsInput input, @NotNull DataFetchingEnvironment dfe) {
DataFetcherResult.Builder<BulkAuthorizeAgentsPayload> result = DataFetcherResult.newResult();
GraphQLContext context = dfe.getContext();
String authReason = input.getReason() == null ? "" : input.getReason();
Set<Integer> agentTypeIds = new HashSet<>(input.getAgentRawIds().size());
List<BuildAgentEx> agents = new ArrayList<>();
for (int agentId : input.getAgentRawIds()) {
BuildAgentEx agent = myBuildAgentManager.findAgentById(agentId, true);
if (agent == null) {
return result.error(new EntityNotFoundGraphQLError(String.format("Agent with id=%d is not found.", agentId))).build();
}
agentTypeIds.add(agent.getAgentTypeId());
agents.add(agent);
}
if (input.getTargetAgentPoolRawId() != null) {
try {
myAgentPoolManager.moveAgentTypesToPool(input.getTargetAgentPoolRawId(), agentTypeIds);
} catch (NoSuchAgentPoolException e) {
return result.error(new EntityNotFoundGraphQLError("Agent pool is not found.")).build();
} catch (AgentTypeCannotBeMovedException e) {
LOG.debug(e.getMessage());
return result.error(new OperationFailedGraphQLError("One of the given agents can't be moved.")).build();
} catch (PoolQuotaExceededException e) {
LOG.debug(e.getMessage());
return result.error(new OperationFailedGraphQLError(String.format("Agent pool can't accept %d agents.", agentTypeIds.size()))).build();
}
}
AbstractAgentPool poolModel = null;
if (input.getTargetAgentPoolRawId() != null) {
AgentPool targetRealPool = myAgentPoolManager.findAgentPoolById(input.getTargetAgentPoolRawId());
if (targetRealPool != null) {
poolModel = myAgentPoolFactory.produce(targetRealPool);
} else {
result.error(new EntityNotFoundGraphQLError("Agent pool is not found after successfully moving agents to it. Possibly it was deleted already."));
}
}
List<Agent> agentModels = new ArrayList<>();
for (BuildAgentEx agent : agents) {
try {
agent.setAuthorized(true, context.getUser(), authReason);
} catch (LicenseNotGrantedException e) {
result.error(new OperationFailedGraphQLError(e.getMessage()));
}
agentModels.add(new Agent(agent));
}
return result.data(new BulkAuthorizeAgentsPayload(agentModels, poolModel)).build();
}
use of jetbrains.buildServer.server.graphql.GraphQLContext in project teamcity-rest by JetBrains.
the class ProjectResolver method permissions.
@NotNull
public ProjectPermissions permissions(@NotNull Project source, @NotNull DataFetchingEnvironment env) {
GraphQLContext ctx = env.getContext();
SUser user = ctx.getUser();
if (user == null) {
return new ProjectPermissions(false);
}
SProject self = source.getRealProject();
return new ProjectPermissions(AuthUtil.hasPermissionToManageAgentPoolsWithProject(user, self.getProjectId()));
}
Aggregations