-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOneDriveGraphService.cs
363 lines (316 loc) · 11.6 KB
/
OneDriveGraphService.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
namespace Atc.Microsoft.Graph.Client.Services.OneDrive;
public sealed class OneDriveGraphService : GraphServiceClientWrapper, IOneDriveGraphService
{
public OneDriveGraphService(
ILoggerFactory loggerFactory,
GraphServiceClient client)
: base(loggerFactory, client)
{
}
public async Task<(HttpStatusCode StatusCode, IList<Drive> Data)> GetDrivesBySiteId(
Guid siteId,
List<string>? expandQueryParameters = null,
string? filterQueryParameter = null,
List<string>? selectQueryParameters = null,
CancellationToken cancellationToken = default)
{
List<Drive> pagedItems = [];
var count = 0;
try
{
var requestInformation = Client
.Sites[siteId.ToString()]
.Drives
.ToGetRequestInformation(
RequestConfigurationFactory.CreateForDrives(
expandQueryParameters,
filterQueryParameter,
selectQueryParameters));
var response = await Client.RequestAdapter.SendAsync(
requestInformation,
(_) => new DriveCollectionResponse(),
cancellationToken: cancellationToken);
if (response is null)
{
return (HttpStatusCode.InternalServerError, pagedItems);
}
var pageIterator = PageIterator<Drive, DriveCollectionResponse>.CreatePageIterator(
Client,
response,
item =>
{
pagedItems.Add(item);
count++;
if (count % 1000 == 0)
{
LogPageIteratorCount(nameof(Drive), count);
}
return true;
});
try
{
await pageIterator.IterateAsync(cancellationToken);
}
catch (ODataError odataError) when (odataError.ResponseStatusCode == (int)HttpStatusCode.TooManyRequests)
{
await Task.Delay(MicrosoftGraphConstants.RetryWaitDelayInMs, cancellationToken);
await pageIterator.IterateAsync(cancellationToken);
}
catch (ODataError odataError) when (odataError.ResponseStatusCode == (int)HttpStatusCode.Gone)
{
return (HttpStatusCode.Gone, pagedItems);
}
LogPageIteratorTotalCount(nameof(Drive), count);
return (HttpStatusCode.OK, pagedItems);
}
catch (ODataError odataError)
{
LogGetFailure(odataError.Error?.Message);
return (HttpStatusCode.InternalServerError, pagedItems);
}
catch (Exception ex)
{
LogGetFailure(ex.GetLastInnerMessage());
return (HttpStatusCode.InternalServerError, pagedItems);
}
}
public async Task<Drive?> GetDriveByTeamId(
string teamId,
CancellationToken cancellationToken = default)
{
try
{
var drive = await Client
.Groups[teamId]
.Drive
.GetAsync(cancellationToken: cancellationToken);
if (drive is not null)
{
return drive;
}
LogDriveNotFoundForTeam(teamId, errorMessage: null);
return null;
}
catch (ODataError odataError)
{
LogDriveNotFoundForTeam(teamId, odataError.Error?.Message);
return null;
}
catch (Exception ex)
{
LogGetFailure(ex.GetLastInnerMessage());
return null;
}
}
public async Task<string?> GetDeltaTokenForDriveItemsByDriveId(
string driveId,
CancellationToken cancellationToken = default)
{
try
{
var deltaWithTokenResponse = await Client
.Drives[driveId]
.Items["root"]
.DeltaWithToken("latest")
.GetAsDeltaWithTokenGetResponseAsync(cancellationToken: cancellationToken);
if (deltaWithTokenResponse?.OdataDeltaLink is null)
{
LogDeltaLinkNotFoundForDrive(driveId, errorMessage: null);
return null;
}
var sa = deltaWithTokenResponse.OdataDeltaLink.Split("token='", StringSplitOptions.RemoveEmptyEntries);
if (sa.Length == 2)
{
return sa[1].Replace("')", string.Empty, StringComparison.OrdinalIgnoreCase);
}
LogDeltaLinkNotFoundForDrive(driveId, errorMessage: null);
return null;
}
catch (ODataError odataError)
{
LogDeltaLinkNotFoundForDrive(driveId, odataError.Error?.Message);
return null;
}
catch (Exception ex)
{
LogGetFailure(ex.GetLastInnerMessage());
return null;
}
}
public async Task<(HttpStatusCode StatusCode, IList<DriveItem> Data)> GetDriveItemsByDriveId(
string driveId,
List<string>? expandQueryParameters = null,
string? filterQueryParameter = null,
List<string>? selectQueryParameters = null,
CancellationToken cancellationToken = default)
{
var requestInformation = Client
.Drives[driveId]
.List
.Items
.ToGetRequestInformation(
RequestConfigurationFactory.CreateForItems(
expandQueryParameters,
filterQueryParameter,
selectQueryParameters));
var (httpStatusCode, data) = await GetAllListItemsByDriveId(requestInformation, cancellationToken);
var driveItems = data
.Where(x => x.DriveItem is not null)
.Select(x => x.DriveItem!)
.ToList();
return (httpStatusCode, driveItems);
}
public async Task<(HttpStatusCode StatusCode, IList<DriveItem> Data)> GetDriveItemsByDriveIdAndDeltaToken(
string driveId,
string deltaToken,
string? filterQueryParameter = null,
List<string>? selectQueryParameters = null,
CancellationToken cancellationToken = default)
{
List<DriveItem> pagedItems = [];
var count = 0;
try
{
var requestInformation = Client
.Drives[driveId]
.Items["root"]
.DeltaWithToken(deltaToken)
.ToGetRequestInformation(
RequestConfigurationFactory.CreateForItemsWithDelta(
filterQueryParameter,
selectQueryParameters));
var response = await Client.RequestAdapter.SendAsync(
requestInformation,
(_) => new DriveItemCollectionResponse(),
cancellationToken: cancellationToken);
if (response is null)
{
return (HttpStatusCode.InternalServerError, pagedItems);
}
var pageIterator = PageIterator<DriveItem, DriveItemCollectionResponse>.CreatePageIterator(
Client,
response,
item =>
{
pagedItems.Add(item);
count++;
if (count % 1000 == 0)
{
LogPageIteratorCount(nameof(DriveItem), count);
}
return true;
});
try
{
await pageIterator.IterateAsync(cancellationToken);
}
catch (ODataError odataError) when (odataError.ResponseStatusCode == (int)HttpStatusCode.TooManyRequests)
{
await Task.Delay(MicrosoftGraphConstants.RetryWaitDelayInMs, cancellationToken);
await pageIterator.IterateAsync(cancellationToken);
}
catch (ODataError odataError) when (odataError.ResponseStatusCode == (int)HttpStatusCode.Gone)
{
return (HttpStatusCode.Gone, pagedItems);
}
LogPageIteratorTotalCount(nameof(DriveItem), count);
return (HttpStatusCode.OK, pagedItems);
}
catch (ODataError odataError)
{
LogGetFailure(odataError.Error?.Message);
return (HttpStatusCode.InternalServerError, pagedItems);
}
catch (Exception ex)
{
LogGetFailure(ex.GetLastInnerMessage());
return (HttpStatusCode.InternalServerError, pagedItems);
}
}
public async Task<Stream?> DownloadFile(
string driveId,
string fileId,
CancellationToken cancellationToken = default)
{
try
{
return await DownloadResiliencePipeline.ExecuteAsync(
async context =>
{
var stream = await Client
.Drives[driveId]
.Items[fileId]
.Content
.GetAsync(cancellationToken: context);
if (stream is null)
{
LogDownloadFileEmpty(fileId);
}
return stream;
},
cancellationToken);
}
catch (Exception ex)
{
LogDownloadFileFailed(fileId, ex.GetLastInnerMessage());
return null;
}
}
private async Task<(HttpStatusCode StatusCode, IList<ListItem> Data)> GetAllListItemsByDriveId(
RequestInformation requestInformation,
CancellationToken cancellationToken)
{
List<ListItem> pagedItems = [];
var count = 0;
try
{
var response = await Client.RequestAdapter.SendAsync(
requestInformation,
(_) => new ListItemCollectionResponse(),
cancellationToken: cancellationToken);
if (response is null)
{
return (HttpStatusCode.InternalServerError, pagedItems);
}
var pageIterator = PageIterator<ListItem, ListItemCollectionResponse>.CreatePageIterator(
Client,
response,
item =>
{
pagedItems.Add(item);
count++;
if (count % 1000 == 0)
{
LogPageIteratorCount(nameof(ListItem), count);
}
return true;
});
try
{
await pageIterator.IterateAsync(cancellationToken);
}
catch (ODataError odataError) when (odataError.ResponseStatusCode == (int)HttpStatusCode.TooManyRequests)
{
await Task.Delay(MicrosoftGraphConstants.RetryWaitDelayInMs, cancellationToken);
await pageIterator.IterateAsync(cancellationToken);
}
catch (ODataError odataError) when (odataError.ResponseStatusCode == (int)HttpStatusCode.Gone)
{
return (HttpStatusCode.Gone, pagedItems);
}
LogPageIteratorTotalCount(nameof(ListItem), count);
return (HttpStatusCode.OK, pagedItems);
}
catch (ODataError odataError)
{
LogGetFailure(odataError.Error?.Message);
return (HttpStatusCode.InternalServerError, pagedItems);
}
catch (Exception ex)
{
var errorMessage = ex.GetLastInnerMessage();
LogGetFailure(errorMessage);
return (HttpStatusCode.InternalServerError, pagedItems);
}
}
}