Remotely/Server/API/FileSharingController.cs

51 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Remotely.Server.Services;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Net.Http.Headers;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace Remotely.Server.API
{
[Route("api/[controller]")]
public class FileSharingController : Controller
{
public FileSharingController(DataService dataService)
{
DataService = dataService;
}
public DataService DataService { get; set; }
[HttpGet("{id}")]
public ActionResult Get(string id)
{
var sharedFile = DataService.GetSharedFiled(id);
if (sharedFile != null)
{
return File(sharedFile.FileContents, sharedFile.ContentType, sharedFile.FileName);
}
return NotFound();
}
[HttpPost]
[RequestSizeLimit(500_000_000)]
public List<string> Post()
{
var fileIDs = new List<string>();
foreach (var file in Request.Form.Files)
{
var orgID = User.Identity.IsAuthenticated ? DataService.GetUserByName(User.Identity.Name).OrganizationID : null;
var id = DataService.AddSharedFile(file, orgID);
fileIDs.Add(id);
}
return fileIDs;
}
}
}