mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Hooked up Send to for Series and volumes and fixed a bug where Email Service errors weren't propagating to the UI layer. When performing actions on series detail, don't disable the button anymore. * Added send to action to volumes * Fixed a bug where .kavitaignore wasn't being applied at library root level * Added a notification for when a device is being sent a file. * Added a check in forgot password for users that do not have an email set or aren't confirmed. * Added a new api for change email and moved change password directly into new Account tab (styling and logic needs testing) * Save approx scroll position like with jump key, but on normal click of card. * Implemented the ability to change your email address or set one. This requires a 2 step process using a confirmation token. This needs polishing and css. * Removed an unused directive from codebase * Fixed up some typos on publicly * Updated query for Pending Invites to also check if the user account has not logged in at least once. * Cleaned up the css for validate email change * Hooked in an indicator to tell user that a user has an unconfirmed email * Cleaned up code smells
115 lines
3.9 KiB
C#
115 lines
3.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using API.Data;
|
|
using API.Data.Repositories;
|
|
using API.DTOs.Device;
|
|
using API.Extensions;
|
|
using API.Services;
|
|
using API.SignalR;
|
|
using ExCSS;
|
|
using Kavita.Common;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace API.Controllers;
|
|
|
|
/// <summary>
|
|
/// Responsible interacting and creating Devices
|
|
/// </summary>
|
|
public class DeviceController : BaseApiController
|
|
{
|
|
private readonly IUnitOfWork _unitOfWork;
|
|
private readonly IDeviceService _deviceService;
|
|
private readonly IEmailService _emailService;
|
|
private readonly IEventHub _eventHub;
|
|
|
|
public DeviceController(IUnitOfWork unitOfWork, IDeviceService deviceService, IEmailService emailService, IEventHub eventHub)
|
|
{
|
|
_unitOfWork = unitOfWork;
|
|
_deviceService = deviceService;
|
|
_emailService = emailService;
|
|
_eventHub = eventHub;
|
|
}
|
|
|
|
|
|
[HttpPost("create")]
|
|
public async Task<ActionResult> CreateOrUpdateDevice(CreateDeviceDto dto)
|
|
{
|
|
var user = await _unitOfWork.UserRepository.GetUserByUsernameAsync(User.GetUsername(), AppUserIncludes.Devices);
|
|
var device = await _deviceService.Create(dto, user);
|
|
|
|
if (device == null) return BadRequest("There was an error when creating the device");
|
|
|
|
return Ok();
|
|
}
|
|
|
|
[HttpPost("update")]
|
|
public async Task<ActionResult> UpdateDevice(UpdateDeviceDto dto)
|
|
{
|
|
var user = await _unitOfWork.UserRepository.GetUserByUsernameAsync(User.GetUsername(), AppUserIncludes.Devices);
|
|
var device = await _deviceService.Update(dto, user);
|
|
|
|
if (device == null) return BadRequest("There was an error when updating the device");
|
|
|
|
return Ok();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes the device from the user
|
|
/// </summary>
|
|
/// <param name="deviceId"></param>
|
|
/// <returns></returns>
|
|
[HttpDelete]
|
|
public async Task<ActionResult> DeleteDevice(int deviceId)
|
|
{
|
|
if (deviceId <= 0) return BadRequest("Not a valid deviceId");
|
|
var user = await _unitOfWork.UserRepository.GetUserByUsernameAsync(User.GetUsername(), AppUserIncludes.Devices);
|
|
if (await _deviceService.Delete(user, deviceId)) return Ok();
|
|
|
|
return BadRequest("Could not delete device");
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<ActionResult<IEnumerable<DeviceDto>>> GetDevices()
|
|
{
|
|
var userId = await _unitOfWork.UserRepository.GetUserIdByUsernameAsync(User.GetUsername());
|
|
return Ok(await _unitOfWork.DeviceRepository.GetDevicesForUserAsync(userId));
|
|
}
|
|
|
|
[HttpPost("send-to")]
|
|
public async Task<ActionResult> SendToDevice(SendToDeviceDto dto)
|
|
{
|
|
if (dto.ChapterIds.Any(i => i < 0)) return BadRequest("ChapterIds must be greater than 0");
|
|
if (dto.DeviceId < 0) return BadRequest("DeviceId must be greater than 0");
|
|
|
|
if (await _emailService.IsDefaultEmailService())
|
|
return BadRequest("Send to device cannot be used with Kavita's email service. Please configure your own.");
|
|
|
|
var userId = await _unitOfWork.UserRepository.GetUserIdByUsernameAsync(User.GetUsername());
|
|
await _eventHub.SendMessageToAsync(MessageFactory.NotificationProgress, MessageFactory.SendingToDeviceEvent($"Transferring files to your device", "started"), userId);
|
|
try
|
|
{
|
|
var success = await _deviceService.SendTo(dto.ChapterIds, dto.DeviceId);
|
|
if (success) return Ok();
|
|
}
|
|
catch (KavitaException ex)
|
|
{
|
|
return BadRequest(ex.Message);
|
|
}
|
|
finally
|
|
{
|
|
await _eventHub.SendMessageToAsync(MessageFactory.SendingToDevice, MessageFactory.SendingToDeviceEvent($"Transferring files to your device", "ended"), userId);
|
|
}
|
|
|
|
return BadRequest("There was an error sending the file to the device");
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|