mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
68 lines
2.0 KiB
C#
68 lines
2.0 KiB
C#
using System.Collections.Generic;
|
|
using Remotely.Shared.Models;
|
|
using Remotely.Server.Services;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Remotely.Server.Attributes;
|
|
using Microsoft.AspNetCore.Http.Extensions;
|
|
using System.Threading.Tasks;
|
|
|
|
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
|
|
namespace Remotely.Server.API
|
|
{
|
|
[ApiController]
|
|
[Route("api/[controller]")]
|
|
public class DevicesController : ControllerBase
|
|
{
|
|
|
|
public DevicesController(DataService dataService)
|
|
{
|
|
DataService = dataService;
|
|
}
|
|
private DataService DataService { get; set; }
|
|
|
|
|
|
[HttpGet]
|
|
[ServiceFilter(typeof(ApiAuthorizationFilter))]
|
|
public IEnumerable<Device> Get()
|
|
{
|
|
Request.Headers.TryGetValue("OrganizationID", out var orgID);
|
|
|
|
if (User.Identity.IsAuthenticated)
|
|
{
|
|
return DataService.GetDevicesForUser(User.Identity.Name);
|
|
}
|
|
|
|
return DataService.GetAllDevices(orgID);
|
|
}
|
|
|
|
[ServiceFilter(typeof(ApiAuthorizationFilter))]
|
|
[HttpGet("{id}")]
|
|
public Device Get(string id)
|
|
{
|
|
Request.Headers.TryGetValue("OrganizationID", out var orgID);
|
|
|
|
var device = DataService.GetDevice(orgID, id);
|
|
|
|
if (User.Identity.IsAuthenticated &&
|
|
!DataService.DoesUserHaveAccessToDevice(id, DataService.GetUserByName(User.Identity.Name)))
|
|
{
|
|
return null;
|
|
}
|
|
return device;
|
|
}
|
|
|
|
[HttpPost]
|
|
public async Task<IActionResult> Create([FromBody]DeviceSetupOptions deviceOptions)
|
|
{
|
|
var device = await DataService.CreateDevice(deviceOptions);
|
|
if (device is null)
|
|
{
|
|
return BadRequest("Device already exists.");
|
|
}
|
|
return Created(Request.GetDisplayUrl(), device);
|
|
}
|
|
}
|
|
}
|