mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 13:01:28 +02:00
33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
using Dapper;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Housekeeping.Housekeepers
|
|
{
|
|
public class CleanupAbsolutePathMetadataFiles : IHousekeepingTask
|
|
{
|
|
private readonly IMainDatabase _database;
|
|
|
|
public CleanupAbsolutePathMetadataFiles(IMainDatabase database)
|
|
{
|
|
_database = database;
|
|
}
|
|
|
|
public void Clean()
|
|
{
|
|
using (var mapper = _database.OpenConnection())
|
|
{
|
|
mapper.Execute(@"DELETE FROM MetadataFiles
|
|
WHERE Id IN (
|
|
SELECT Id FROM MetadataFiles
|
|
WHERE RelativePath
|
|
LIKE '_:\%'
|
|
OR RelativePath
|
|
LIKE '\%'
|
|
OR RelativePath
|
|
LIKE '/%'
|
|
)");
|
|
}
|
|
}
|
|
}
|
|
}
|