-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathWorker.cs
More file actions
212 lines (194 loc) · 8.38 KB
/
Worker.cs
File metadata and controls
212 lines (194 loc) · 8.38 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
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
using System.Net;
using JsonApiDotNetCore.OpenApi.Client.Kiota;
using Microsoft.Kiota.Abstractions;
using Microsoft.Kiota.Http.HttpClientLibrary.Middleware.Options;
using OpenApiKiotaClientExample.GeneratedCode;
using OpenApiKiotaClientExample.GeneratedCode.Models;
namespace OpenApiKiotaClientExample;
public sealed class Worker(ExampleApiClient apiClient, IHostApplicationLifetime hostApplicationLifetime, SetQueryStringHttpMessageHandler queryStringHandler)
: BackgroundService
{
private readonly ExampleApiClient _apiClient = apiClient;
private readonly IHostApplicationLifetime _hostApplicationLifetime = hostApplicationLifetime;
private readonly SetQueryStringHttpMessageHandler _queryStringHandler = queryStringHandler;
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
try
{
using (_queryStringHandler.CreateScope(new Dictionary<string, string?>
{
// Workaround for https://github.com/microsoft/kiota/issues/3800.
["filter"] = "has(assignedTodoItems)",
["sort"] = "-lastName",
["page[size]"] = "5",
["include"] = "assignedTodoItems.tags"
}))
{
(PersonCollectionResponseDocument? getResponse, string? eTag) = await GetPeopleAsync(_apiClient, null, stoppingToken);
PeopleMessageFormatter.PrintPeople(getResponse);
(PersonCollectionResponseDocument? getResponseAgain, _) = await GetPeopleAsync(_apiClient, eTag, stoppingToken);
PeopleMessageFormatter.PrintPeople(getResponseAgain);
}
await UpdatePersonAsync(stoppingToken);
await SendOperationsRequestAsync(stoppingToken);
await _apiClient.Api.People["999999"].GetAsync(cancellationToken: stoppingToken);
}
catch (ErrorResponseDocument exception)
{
Console.WriteLine($"JSON:API ERROR: {exception.Errors!.First().Detail}");
}
catch (HttpRequestException exception)
{
Console.WriteLine($"ERROR: {exception.Message}");
}
_hostApplicationLifetime.StopApplication();
}
private static async Task<(PersonCollectionResponseDocument? response, string? eTag)> GetPeopleAsync(ExampleApiClient apiClient, string? ifNoneMatch,
CancellationToken cancellationToken)
{
try
{
var headerInspector = new HeadersInspectionHandlerOption
{
InspectResponseHeaders = true
};
PersonCollectionResponseDocument? response = await apiClient.Api.People.GetAsync(configuration =>
{
if (!string.IsNullOrEmpty(ifNoneMatch))
{
configuration.Headers.Add("If-None-Match", ifNoneMatch);
}
configuration.Options.Add(headerInspector);
}, cancellationToken);
string eTag = headerInspector.ResponseHeaders["ETag"].Single();
return (response, eTag);
}
// Workaround for https://github.com/microsoft/kiota/issues/4190.
catch (ApiException exception) when (exception.ResponseStatusCode == (int)HttpStatusCode.NotModified)
{
return (null, null);
}
}
private async Task UpdatePersonAsync(CancellationToken cancellationToken)
{
var updatePersonRequest = new UpdatePersonRequestDocument
{
Data = new DataInUpdatePersonRequest
{
Type = ResourceType.People,
Id = "1",
Attributes = new AttributesInUpdatePersonRequest
{
// The --backing-store switch enables sending null and default values.
FirstName = null,
LastName = "Doe"
}
}
};
await _apiClient.Api.People[updatePersonRequest.Data.Id].PatchAsync(updatePersonRequest, cancellationToken: cancellationToken);
}
private async Task SendOperationsRequestAsync(CancellationToken cancellationToken)
{
var operationsRequest = new OperationsRequestDocument
{
AtomicOperations =
[
new CreateTagOperation
{
Op = AddOperationCode.Add,
Data = new DataInCreateTagRequest
{
Type = ResourceType.Tags,
Lid = "new-tag",
Attributes = new AttributesInCreateTagRequest
{
Name = "Housekeeping"
}
}
},
new CreatePersonOperation
{
Op = AddOperationCode.Add,
Data = new DataInCreatePersonRequest
{
Type = ResourceType.People,
Lid = "new-person",
Attributes = new AttributesInCreatePersonRequest
{
FirstName = "Cinderella",
LastName = "Tremaine"
}
}
},
new UpdatePersonOperation
{
Op = UpdateOperationCode.Update,
Data = new DataInUpdatePersonRequest
{
Type = ResourceType.People,
Lid = "new-person",
Attributes = new AttributesInUpdatePersonRequest
{
// The --backing-store switch enables sending null and default values.
FirstName = null
}
}
},
new CreateTodoItemOperation
{
Op = AddOperationCode.Add,
Data = new DataInCreateTodoItemRequest
{
Type = ResourceType.TodoItems,
Lid = "new-todo-item",
Attributes = new AttributesInCreateTodoItemRequest
{
Description = "Put out the garbage",
Priority = TodoItemPriority.Medium
},
Relationships = new RelationshipsInCreateTodoItemRequest
{
Owner = new ToOnePersonInRequest
{
Data = new PersonIdentifierInRequest
{
Type = ResourceType.People,
Lid = "new-person"
}
},
Tags = new ToManyTagInRequest
{
Data =
[
new TagIdentifierInRequest
{
Type = ResourceType.Tags,
Lid = "new-tag"
}
]
}
}
}
},
new UpdateTodoItemAssigneeRelationshipOperation
{
Op = UpdateOperationCode.Update,
Ref = new TodoItemAssigneeRelationshipIdentifier
{
Type = TodoItemResourceType.TodoItems,
Lid = "new-todo-item",
Relationship = TodoItemAssigneeRelationshipName.Assignee
},
Data = new PersonIdentifierInRequest
{
Type = ResourceType.People,
Lid = "new-person"
}
}
]
};
OperationsResponseDocument? operationsResponse = await _apiClient.Api.Operations.PostAsync(operationsRequest, cancellationToken: cancellationToken);
var newTodoItem = (DataInTodoItemResponse)operationsResponse!.AtomicResults!.ElementAt(3).Data!;
Console.WriteLine($"Created todo-item with ID {newTodoItem.Id}: {newTodoItem.Attributes!.Description}.");
}
}