-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClipRepository.cs
More file actions
83 lines (71 loc) · 2.01 KB
/
ClipRepository.cs
File metadata and controls
83 lines (71 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using NLog;
namespace SharpFM.Models;
/// <summary>
/// Clip File Repository.
/// </summary>
[ExcludeFromCodeCoverage]
public class ClipRepository
{
private static readonly Logger Log = LogManager.GetCurrentClassLogger();
/// <summary>
/// Clips stored in the specified folder.
/// </summary>
public ICollection<Clip> Clips { get; init; }
/// <summary>
/// Database path.
/// </summary>
public string ClipPath { get; }
/// <summary>
/// Constructor.
/// </summary>
public ClipRepository(string path)
{
// ensure the directory exists
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
ClipPath = path;
// init clips to empty
Clips = [];
}
/// <summary>
/// Load clips from the path specified by <see cref="ClipPath"/>.
/// </summary>
public void LoadClips()
{
foreach (var clipFile in Directory.EnumerateFiles(ClipPath))
{
try
{
var fi = new FileInfo(clipFile);
var clip = new Clip
{
ClipName = fi.Name.Replace(fi.Extension, string.Empty),
ClipType = fi.Extension.Replace(".", string.Empty),
ClipXml = File.ReadAllText(clipFile)
};
Clips.Add(clip);
}
catch (Exception ex)
{
Log.Error(ex, "Failed to load clip file: {File}", clipFile);
}
}
}
/// <summary>
/// Write all clips to their associated clip type files in the path specified by <see cref="ClipPath"/>.
/// </summary>
public void SaveChanges()
{
foreach (var clip in Clips)
{
var clipPath = Path.Combine(ClipPath, $"{clip.ClipName}.{clip.ClipType}");
File.WriteAllText(clipPath, clip.ClipXml);
}
}
}