-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMediaFileThumbnails.cs
128 lines (112 loc) · 3.42 KB
/
MediaFileThumbnails.cs
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
* Copyright © 2024 Travelonium AB
*
* This file is part of Arcadeia.
*
* Arcadeia is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Arcadeia is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Arcadeia. If not, see <https://www.gnu.org/licenses/>.
*
*/
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace Arcadeia
{
public class MediaFileThumbnails(IThumbnailsDatabase database, string id)
{
private readonly IThumbnailsDatabase _database = database;
private readonly string _id = id;
/// <summary>
/// Get or Set a specific thumbnail related to the current file using the provided index.
/// </summary>
/// <param name="index">The thumbnail index.</param>
/// <returns>
/// The thumbnail image data.
/// </returns>
public byte[] this[int index]
{
get
{
byte[] thumbnail = _database.GetThumbnail(_id, index);
return thumbnail;
}
set => _database.SetThumbnail(_id, index, ref value);
}
/// <summary>
/// Get or Set a specific thumbnail related to the current file using the provided label.
/// </summary>
/// <param name="label">The thumbnail label.</param>
/// <returns>
/// The thumbnail image data.
/// </returns>
public byte[] this[string label]
{
get
{
byte[] thumbnail = _database.GetThumbnail(_id, label);
return thumbnail;
}
set => _database.SetThumbnail(_id, label, ref value);
}
/// <summary>
/// Gets the total number of existing thumbnails in existence for this particular file.
/// </summary>
/// <value>
/// The number of thumbnails available.
/// </value>
public int Count
{
get
{
return _database.GetThumbnailsCount(_id);
}
}
/// <summary>
/// Whether or not the row for the current file exists which means that it has been initialized.
/// </summary>
public bool Initialized
{
get
{
return _database.Exists(_id);
}
}
/// <summary>
/// Retrieve a list of all the null columns of the row.
/// </summary>
public string[] NullColumns
{
get
{
return _database.GetNullColumns(_id);
}
}
public async Task<byte[]> GetAsync(int index, CancellationToken cancellationToken)
{
byte[] thumbnail = await _database.GetThumbnailAsync(_id, index, cancellationToken);
return thumbnail;
}
/// <summary>
/// Initialize the record for the current file.
/// </summary>
public void Initialize()
{
_database.Create(_id);
}
public int DeleteAll()
{
return _database.DeleteThumbnails(_id);
}
}
}