-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRelease.cs
More file actions
288 lines (268 loc) · 12.9 KB
/
Release.cs
File metadata and controls
288 lines (268 loc) · 12.9 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
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
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Contentstack.Management.Core.Queryable;
using Contentstack.Management.Core.Services.Models;
using Contentstack.Management.Core.Utils;
namespace Contentstack.Management.Core.Models
{
public class Release : BaseModel<ReleaseModel>
{
internal Release(Stack stack, string uid = null)
: base(stack, "release", uid)
{
resourcePath = uid == null ? "/releases" : $"/releases/{uid}";
}
/// <summary>
/// The Query on ReleaseModel request retrieves a list of all Releases of a stack along with details of each Release.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release().Query().Find();
/// </code></pre>
/// </example>
/// <returns>The <see cref="Queryable.Query"/></returns>
public Query Query()
{
ThrowIfUidNotEmpty();
return new Query(stack, resourcePath);
}
/// <summary>
/// The Create request allows you to create a new Release in your stack.
/// To add entries/assets to a Release, you need to provide the UIDs of the entries/assets in ‘items’ in the request body.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ReleaseModel model = new ReleaseModel();
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release().Create(model);
/// </code></pre>
/// </example>
/// <param name="model">Release Model for creating ReleaseModel.</param>
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
public override ContentstackResponse Create(ReleaseModel model, ParameterCollection collection = null)
{
return base.Create(model, collection);
}
/// <summary>
/// The Create request allows you to create a new Release in your stack.
/// To add entries/assets to a Release, you need to provide the UIDs of the entries/assets in ‘items’ in the request body.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ReleaseModel model = new ReleaseModel();
/// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release().CreateAsync(model);
/// </code></pre>
/// </example>
/// <param name="model">Release Model Model for creating ReleaseModel.</param>
/// <returns>The Task.</returns>
public override Task<ContentstackResponse> CreateAsync(ReleaseModel model, ParameterCollection collection = null)
{
return base.CreateAsync(model, collection);
}
/// <summary>
/// The Update call allows you to update the details of a Release, i.e., the ‘name’ and ‘description’.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ReleaseModel model = new ReleaseModel();
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Update(model);
/// </code></pre>
/// </example>
/// <param name="model">Release Model for creating ReleaseModel.</param>
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
public override ContentstackResponse Update(ReleaseModel model, ParameterCollection collection = null)
{
return base.Update(model, collection);
}
/// <summary>
/// The Update call allows you to update the details of a Release, i.e., the ‘name’ and ‘description’.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ReleaseModel model = new ReleaseModel();
/// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").UpdateAsync(model);
/// </code></pre>
/// </example>
/// <param name="model">Release Model for creating ReleaseModel.</param>
/// <returns>The Task.</returns>
public override Task<ContentstackResponse> UpdateAsync(ReleaseModel model, ParameterCollection collection = null)
{
return base.UpdateAsync(model, collection);
}
/// <summary>
/// The Fetch rrequest gets the details of a specific Release in a stack.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Fetch();
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
public override ContentstackResponse Fetch(ParameterCollection collection = null)
{
return base.Fetch(collection);
}
/// <summary>
/// The Fetch request gets the details of a specific Release in a stack.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").FetchAsync();
/// </code></pre>
/// </example>
/// <returns>The Task.</returns>
public override Task<ContentstackResponse> FetchAsync(ParameterCollection collection = null)
{
return base.FetchAsync(collection);
}
/// <summary>
/// The Delete request allows you to delete a specific Release from a stack.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Delete();
/// </code></pre>
/// </example>
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
public override ContentstackResponse Delete(ParameterCollection collection = null)
{
return base.Delete(collection);
}
/// <summary>
/// The Delete request allows you to delete a specific Release from a stack.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Release("<RELEASE_UID>").DeleteAsync();
/// </code></pre>
/// </example>
/// <returns>The Task.</returns>
public override Task<ContentstackResponse> DeleteAsync(ParameterCollection collection = null)
{
return base.DeleteAsync(collection);
}
/// <summary>
/// The list of all items (entries and assets) that are part of a specific Release.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Release("<RELEASE_UID>").Item().GetAll();
/// </code></pre>
/// </example>
/// <param name="uid">Release Item UID</param>
/// <returns>The <see cref="ReleaseItem"/>.</returns>
public ReleaseItem Item()
{
ThrowIfUidEmpty();
return new ReleaseItem(stack, this.Uid);
}
/// <summary>
/// The Deploy a Release request deploys a specific Release to specific environment(s) and locale(s).
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// DeployModel model = new DeployModel();
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Deploy(model);
/// </code></pre>
/// </example>
/// <param name="model">ReleaseItem Model for creating ReleaseItem.</param>
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
public ContentstackResponse Deploy(DeployModel model)
{
stack.ThrowIfNotLoggedIn();
ThrowIfUidEmpty();
var service = new CreateUpdateService<DeployModel>(stack.client.serializer, stack, $"{resourcePath}/deploy", model, "release");
return stack.client.InvokeSync(service);
}
/// <summary>
/// The Deploy a Release request deploys a specific Release to specific environment(s) and locale(s).
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// DeployModel model = new DeployModel();
/// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").DeployAsync(model);
/// </code></pre>
/// </example>
/// <param name="model">ReleaseItem Model for creating ReleaseItem.</param>
/// <returns>The Task.</returns>
public Task<ContentstackResponse> DeployAsync(DeployModel model)
{
ThrowIfUidEmpty();
stack.ThrowIfNotLoggedIn();
var service = new CreateUpdateService<DeployModel>(stack.client.serializer, stack, $"{resourcePath}/deploy", model, "release");
return stack.client.InvokeAsync<CreateUpdateService<DeployModel>, ContentstackResponse>(service);
}
/// <summary>
/// The Clone request allows you to clone (make a copy of) a specific Release in a stack.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Relase("<RELEASE_UID>").Clone("<NAME>", "<DESCRIPTION>");
/// </code></pre>
/// </example>
/// <param name="model">ReleaseItem Model for creating ReleaseItem.</param>
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
public ContentstackResponse Clone(string name, string description)
{
if (string.IsNullOrEmpty(name))
{
throw new ArgumentNullException("name", CSConstants.ReleaseNameInvalid);
}
stack.ThrowIfNotLoggedIn();
ThrowIfUidEmpty();
Dictionary<string, string> model = new Dictionary<string, string>()
{
{ "name", name }
};
if (!string.IsNullOrEmpty(description))
{
model.Add("desctiption", description);
}
var service = new CreateUpdateService<Dictionary<string, string>>(stack.client.serializer, stack, $"{resourcePath}/clone", model, "release");
return stack.client.InvokeSync(service);
}
/// <summary>
/// The Clone request allows you to clone (make a copy of) a specific Release in a stack.
/// </summary>
/// <example>
/// <pre><code>
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
/// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Relase("<RELEASE_UID>").CloneAsync("<NAME>", "<DESCRIPTION>");
/// </code></pre>
/// </example>
/// <param name="model">ReleaseItem Model for creating ReleaseItem.</param>
/// <returns>The Task.</returns>
public Task<ContentstackResponse> CloneAsync(string name, string description)
{
if (string.IsNullOrEmpty(name))
{
throw new ArgumentNullException("name", CSConstants.ReleaseNameInvalid);
}
stack.ThrowIfNotLoggedIn();
ThrowIfUidEmpty();
Dictionary<string, string> model = new Dictionary<string, string>()
{
{ "name", name }
};
if (!string.IsNullOrEmpty(description))
{
model.Add("desctiption", description);
}
var service = new CreateUpdateService<Dictionary<string, string>>(stack.client.serializer, stack, $"{resourcePath}/clone", model, "release");
return stack.client.InvokeAsync<CreateUpdateService<Dictionary<string, string>>, ContentstackResponse>(service);
}
}
}