mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Re-saving edited providers will forcibly save them
Fixes #533 Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
@@ -6,6 +6,7 @@ import getProviderState from 'Utilities/State/getProviderState';
|
|||||||
import { removeItem, set, updateItem } from '../baseActions';
|
import { removeItem, set, updateItem } from '../baseActions';
|
||||||
|
|
||||||
const abortCurrentRequests = {};
|
const abortCurrentRequests = {};
|
||||||
|
let lastSaveData = null;
|
||||||
|
|
||||||
export function createCancelSaveProviderHandler(section) {
|
export function createCancelSaveProviderHandler(section) {
|
||||||
return function(getState, payload, dispatch) {
|
return function(getState, payload, dispatch) {
|
||||||
@@ -27,27 +28,33 @@ function createSaveProviderHandler(section, url, options = {}, removeStale = fal
|
|||||||
} = payload;
|
} = payload;
|
||||||
|
|
||||||
const saveData = Array.isArray(id) ? id.map((x) => getProviderState({ id: x, ...otherPayload }, getState, section)) : getProviderState({ id, ...otherPayload }, getState, section);
|
const saveData = Array.isArray(id) ? id.map((x) => getProviderState({ id: x, ...otherPayload }, getState, section)) : getProviderState({ id, ...otherPayload }, getState, section);
|
||||||
|
const requestUrl = id ? `${url}/${id}` : url;
|
||||||
|
const params = { ...queryParams };
|
||||||
|
|
||||||
|
// If the user is re-saving the same provider without changes
|
||||||
|
// force it to be saved. Only applies to editing existing providers.
|
||||||
|
|
||||||
|
if (id && _.isEqual(saveData, lastSaveData)) {
|
||||||
|
params.forceSave = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
lastSaveData = saveData;
|
||||||
|
|
||||||
const ajaxOptions = {
|
const ajaxOptions = {
|
||||||
url: `${url}?${$.param(queryParams, true)}`,
|
url: `${requestUrl}?${$.param(params, true)}`,
|
||||||
method: 'POST',
|
method: id ? 'PUT' : 'POST',
|
||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
data: JSON.stringify(saveData)
|
data: JSON.stringify(saveData)
|
||||||
};
|
};
|
||||||
|
|
||||||
if (id) {
|
|
||||||
ajaxOptions.method = 'PUT';
|
|
||||||
if (!Array.isArray(id)) {
|
|
||||||
ajaxOptions.url = `${url}/${id}?${$.param(queryParams, true)}`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const { request, abortRequest } = createAjaxRequest(ajaxOptions);
|
const { request, abortRequest } = createAjaxRequest(ajaxOptions);
|
||||||
|
|
||||||
abortCurrentRequests[section] = abortRequest;
|
abortCurrentRequests[section] = abortRequest;
|
||||||
|
|
||||||
request.done((data) => {
|
request.done((data) => {
|
||||||
|
lastSaveData = null;
|
||||||
|
|
||||||
if (!Array.isArray(data)) {
|
if (!Array.isArray(data)) {
|
||||||
data = [data];
|
data = [data];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ using NzbDrone.Common.Serializer;
|
|||||||
using NzbDrone.Core.ThingiProvider;
|
using NzbDrone.Core.ThingiProvider;
|
||||||
using NzbDrone.Core.Validation;
|
using NzbDrone.Core.Validation;
|
||||||
using NzbDrone.Http.REST.Attributes;
|
using NzbDrone.Http.REST.Attributes;
|
||||||
|
using Readarr.Http.Extensions;
|
||||||
using Readarr.Http.REST;
|
using Readarr.Http.REST;
|
||||||
|
|
||||||
namespace Readarr.Api.V1
|
namespace Readarr.Api.V1
|
||||||
@@ -78,8 +79,8 @@ namespace Readarr.Api.V1
|
|||||||
var providerDefinition = GetDefinition(providerResource, true, false, false);
|
var providerDefinition = GetDefinition(providerResource, true, false, false);
|
||||||
var forceSave = Request.GetBooleanQueryParameter("forceSave");
|
var forceSave = Request.GetBooleanQueryParameter("forceSave");
|
||||||
|
|
||||||
// Only test existing definitions if it was previously disabled
|
// Only test existing definitions if it is enabled and forceSave isn't set.
|
||||||
if (providerDefinition.Enable && !existingDefinition.Enable)
|
if (providerDefinition.Enable && !forceSave)
|
||||||
{
|
{
|
||||||
Test(providerDefinition, false);
|
Test(providerDefinition, false);
|
||||||
}
|
}
|
||||||
@@ -113,7 +114,7 @@ namespace Readarr.Api.V1
|
|||||||
{
|
{
|
||||||
var defaultDefinitions = _providerFactory.GetDefaultDefinitions().OrderBy(p => p.ImplementationName).ToList();
|
var defaultDefinitions = _providerFactory.GetDefaultDefinitions().OrderBy(p => p.ImplementationName).ToList();
|
||||||
|
|
||||||
var result = new List<TProviderResource>(defaultDefinitions.Count());
|
var result = new List<TProviderResource>(defaultDefinitions.Count);
|
||||||
|
|
||||||
foreach (var providerDefinition in defaultDefinitions)
|
foreach (var providerDefinition in defaultDefinitions)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user