From f3732f98bacc180bd3ef9006836383ad6b10a0be Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Tue, 16 Apr 2024 16:31:46 +0200 Subject: [PATCH] Adding migration step to upgrade from using the ContainsAnyIfProvided operator in StringFilterForm --- .../Modules/Orchard.Projections/Migrations.cs | 29 +++++++++++++++---- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.Projections/Migrations.cs b/src/Orchard.Web/Modules/Orchard.Projections/Migrations.cs index 2c751846a..cf0b6f57e 100644 --- a/src/Orchard.Web/Modules/Orchard.Projections/Migrations.cs +++ b/src/Orchard.Web/Modules/Orchard.Projections/Migrations.cs @@ -1,7 +1,6 @@ using System; using System.Data; using System.Linq; -using Orchard.ContentManagement; using Orchard.ContentManagement.MetaData; using Orchard.Core.Common.Models; using Orchard.Core.Contents.Extensions; @@ -15,13 +14,16 @@ namespace Orchard.Projections { public class Migrations : DataMigrationImpl { private readonly IRepository _memberBindingRepository; private readonly IRepository _layoutRepository; - + private readonly IRepository _filterRepository; public Migrations( IRepository memberBindingRepository, - IRepository layoutRepository) { + IRepository layoutRepository, + IRepository filterRepository) { _memberBindingRepository = memberBindingRepository; _layoutRepository = layoutRepository; + _filterRepository = filterRepository; + T = NullLocalizer.Instance; } @@ -359,15 +361,30 @@ namespace Orchard.Projections { } public int UpdateFrom5() { - SchemaBuilder.AlterTable("LayoutRecord", t => t.AddColumn("GUIdentifier", - column => column.WithLength(68))); + SchemaBuilder.AlterTable("LayoutRecord", t => t + .AddColumn("GUIdentifier", column => column.WithLength(68))); var layoutRecords = _layoutRepository.Table.Where(l => l.GUIdentifier == null || l.GUIdentifier == "").ToList(); foreach (var layout in layoutRecords) { - layout.GUIdentifier = Guid.NewGuid().ToString(); + layout.GUIdentifier = Guid.NewGuid().ToString(); } return 6; } + + public int UpdateFrom6() { + // This casts a somewhat wide net, but filters can't be queried by the form they are using and different + // types of filters can (and do) use StringFilterForm. However, the "Operator" parameter's value being + // "ContainsAnyIfProvided" is very specific. + var formStateToReplace = "ContainsAnyIfProvided"; + var filterRecordsToUpdate = _filterRepository.Table.Where(f => f.State.Contains(formStateToReplace)).ToList(); + foreach (var filter in filterRecordsToUpdate) { + filter.State = filter.State.Replace( + formStateToReplace, + "ContainsAnytrue"); + } + + return 7; + } } } \ No newline at end of file