mirror of
https://github.com/bitwarden/server.git
synced 2025-04-18 11:38:15 -05:00
141 lines
5.1 KiB
C#
141 lines
5.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Bit.Core.Repositories;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Bit.Core.Models.Api;
|
|
using Bit.Core.Exceptions;
|
|
using Bit.Core.Services;
|
|
using Bit.Core;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.Api.Controllers
|
|
{
|
|
[Route("organizations/{orgId}/groups")]
|
|
[Authorize("Application")]
|
|
public class GroupsController : Controller
|
|
{
|
|
private readonly IGroupRepository _groupRepository;
|
|
private readonly IGroupService _groupService;
|
|
private readonly CurrentContext _currentContext;
|
|
|
|
public GroupsController(
|
|
IGroupRepository groupRepository,
|
|
IGroupService groupService,
|
|
CurrentContext currentContext)
|
|
{
|
|
_groupRepository = groupRepository;
|
|
_groupService = groupService;
|
|
_currentContext = currentContext;
|
|
}
|
|
|
|
[HttpGet("{id}")]
|
|
public async Task<GroupResponseModel> Get(string orgId, string id)
|
|
{
|
|
var group = await _groupRepository.GetByIdAsync(new Guid(id));
|
|
if(group == null || !_currentContext.OrganizationAdmin(group.OrganizationId))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
return new GroupResponseModel(group);
|
|
}
|
|
|
|
[HttpGet("{id}/details")]
|
|
public async Task<GroupDetailsResponseModel> GetDetails(string orgId, string id)
|
|
{
|
|
var groupDetails = await _groupRepository.GetByIdWithCollectionsAsync(new Guid(id));
|
|
if(groupDetails?.Item1 == null || !_currentContext.OrganizationAdmin(groupDetails.Item1.OrganizationId))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
return new GroupDetailsResponseModel(groupDetails.Item1, groupDetails.Item2);
|
|
}
|
|
|
|
[HttpGet("")]
|
|
public async Task<ListResponseModel<GroupResponseModel>> Get(string orgId)
|
|
{
|
|
var orgIdGuid = new Guid(orgId);
|
|
if(!_currentContext.OrganizationAdmin(orgIdGuid))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var groups = await _groupRepository.GetManyByOrganizationIdAsync(orgIdGuid);
|
|
var responses = groups.Select(g => new GroupResponseModel(g));
|
|
return new ListResponseModel<GroupResponseModel>(responses);
|
|
}
|
|
|
|
[HttpGet("{id}/users")]
|
|
public async Task<ListResponseModel<GroupUserResponseModel>> GetUsers(string orgId, string id)
|
|
{
|
|
var idGuid = new Guid(id);
|
|
var group = await _groupRepository.GetByIdAsync(idGuid);
|
|
if(group == null || !_currentContext.OrganizationAdmin(group.OrganizationId))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var groups = await _groupRepository.GetManyUserDetailsByIdAsync(idGuid);
|
|
var responses = groups.Select(g => new GroupUserResponseModel(g));
|
|
return new ListResponseModel<GroupUserResponseModel>(responses);
|
|
}
|
|
|
|
[HttpPost("")]
|
|
public async Task<GroupResponseModel> Post(string orgId, [FromBody]GroupRequestModel model)
|
|
{
|
|
var orgIdGuid = new Guid(orgId);
|
|
if(!_currentContext.OrganizationAdmin(orgIdGuid))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
var group = model.ToGroup(orgIdGuid);
|
|
await _groupService.SaveAsync(group, model.Collections?.Select(c => c.ToSelectionReadOnly()));
|
|
return new GroupResponseModel(group);
|
|
}
|
|
|
|
[HttpPut("{id}")]
|
|
[HttpPost("{id}")]
|
|
public async Task<GroupResponseModel> Put(string orgId, string id, [FromBody]GroupRequestModel model)
|
|
{
|
|
var group = await _groupRepository.GetByIdAsync(new Guid(id));
|
|
if(group == null || !_currentContext.OrganizationAdmin(group.OrganizationId))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
await _groupService.SaveAsync(model.ToGroup(group), model.Collections?.Select(c => c.ToSelectionReadOnly()));
|
|
return new GroupResponseModel(group);
|
|
}
|
|
|
|
[HttpDelete("{id}")]
|
|
[HttpPost("{id}/delete")]
|
|
public async Task Delete(string orgId, string id)
|
|
{
|
|
var group = await _groupRepository.GetByIdAsync(new Guid(id));
|
|
if(group == null || !_currentContext.OrganizationAdmin(group.OrganizationId))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
await _groupRepository.DeleteAsync(group);
|
|
}
|
|
|
|
[HttpDelete("{id}/user/{orgUserId}")]
|
|
[HttpPost("{id}/delete-user/{orgUserId}")]
|
|
public async Task Delete(string orgId, string id, string orgUserId)
|
|
{
|
|
var group = await _groupRepository.GetByIdAsync(new Guid(id));
|
|
if(group == null || !_currentContext.OrganizationAdmin(group.OrganizationId))
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
await _groupRepository.DeleteUserAsync(group.Id, new Guid(orgUserId));
|
|
}
|
|
}
|
|
}
|