-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathEntry.cs
More file actions
1499 lines (1377 loc) · 60 KB
/
Entry.cs
File metadata and controls
1499 lines (1377 loc) · 60 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
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using Markdig;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Threading.Tasks;
using Contentstack.Core.Internals;
using Contentstack.Core.Configuration;
namespace Contentstack.Core.Models
{
/// <summary>
/// Entry is used to create, update and delete contentType's entries on the Contentstack.io Content stack.
/// </summary>
public class Entry
{
#region Private Variables
private string[] _TagsArray = new string[] { };
private ContentType ContentTypeInstance { get; set; }
private CachePolicy _CachePolicy;
private Dictionary<string, object> UrlQueries = new Dictionary<string, object>();
private bool _IsCachePolicySet;
private JsonObject jsonObject;
private string _Url
{
get
{
Config config = this.ContentTypeInstance.StackInstance.Config;
string baseURL = config.getBaseUrl(this.ContentTypeInstance.StackInstance.LivePreviewConfig, this.ContentTypeInstance.ContentTypeId);
if (!String.IsNullOrEmpty(this.Uid))
return String.Format("{0}/content_types/{1}/entries/{2}", baseURL, this.ContentTypeInstance.ContentTypeId, this.Uid);
else
return String.Format("{0}/content_types/{1}/entries", baseURL, this.ContentTypeInstance.ContentTypeId);
}
}
#endregion
#region Internal Variables
internal Dictionary<string, object> _FormHeaders = new Dictionary<string, object>();
internal Dictionary<string, object> _ObjectAttributes = new Dictionary<string, object>();
internal Dictionary<string, object> ObjectValueJson = new Dictionary<string, object>();
internal Dictionary<string, object> _Headers = new Dictionary<string, object>();
internal Dictionary<string, object> _metadata = new Dictionary<string, object>();
#endregion
#region Public Properties
/// <summary>
/// Title of an entry
/// </summary>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Title;
/// });
/// </code>
/// </example>
public string Title { get; set; }
/// <summary>
/// This is Entry Uid of an entry.
/// </summary>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Uid;
/// });
/// </code>
/// </example>
public string Uid { get; set; }
/// <summary>
/// Set array of Tags
/// </summary>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Tags;
/// });
/// </code>
/// </example>
public object[] Tags { get; set; }
/// <summary>
/// Set key/value attributes of Metadata.
/// </summary>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Metadata;
/// });
/// </code>
/// </example>
public Dictionary<string, object> Metadata { get; set; }
/// <summary>
/// Set key/value attributes of an current entry instance.
/// </summary>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Object;
/// });
/// </code>
/// </example>
public Dictionary<string, object> _variant { get; set; }
/// <summary>
/// Set key/value attributes of an current entry instance.
/// </summary>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Object;
/// });
/// </code>
/// </example>
public Dictionary<string, object> Object
{
get
{
return this._ObjectAttributes;
}
set
{
this._ObjectAttributes = value;
}
}
#endregion
#region Internal Constructors
internal Entry()
{
}
internal Entry(Dictionary<string, object> objectKeyPair)
{
this._ObjectAttributes = objectKeyPair;
}
internal Entry(string contentTypeName)
{
}
#endregion
#region Internal Functions
internal static ContentstackException GetContentstackError(Exception ex)
{
int errorCode = 0;
string errorMessage = string.Empty;
HttpStatusCode statusCode = HttpStatusCode.InternalServerError;
ContentstackException contentstackError = new ContentstackException(ex);
Dictionary<string, object> errors = null;
try
{
WebException webEx = (WebException)ex;
using (var exResp = webEx.Response)
using (var stream = exResp.GetResponseStream())
using (var reader = new StreamReader(stream))
{
errorMessage = reader.ReadToEnd();
JsonObject data = JsonNode.Parse(errorMessage.Replace("\r\n", ""))?.AsObject();
if (data != null)
{
if (data.TryGetPropertyValue("error_code", out var token))
errorCode = token.GetValue<int>();
if (data.TryGetPropertyValue("error_message", out token))
errorMessage = token.GetValue<string>();
if (data.TryGetPropertyValue("errors", out token))
errors = JsonSerializer.Deserialize<Dictionary<string, object>>(token.ToJsonString());
if (exResp is HttpWebResponse response)
statusCode = response.StatusCode;
}
}
}
catch
{
errorMessage = ex.Message;
}
contentstackError = new ContentstackException()
{
ErrorCode = errorCode,
ErrorMessage = errorMessage,
StatusCode = statusCode,
Errors = errors
};
return contentstackError;
}
internal void SetContentTypeInstance(ContentType contentTypeInstance)
{
this.ContentTypeInstance = contentTypeInstance;
}
#endregion
#region Public Functions
/// <summary>
/// Returns tags of this entry.
/// </summary>
/// <returns>Array of tags.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetTags();
/// });
/// </code>
/// </example>
public object[] GetTags()
{
object[] result = null;
try
{
if (this._ObjectAttributes.ContainsKey("tags"))
{
try
{
result = (object[])_ObjectAttributes["tags"];
}
catch
{ }
}
}
catch { }
return result;
}
/// <summary>
/// Assign a tag(s) for this Entry.
/// </summary>
/// <param name="tags">Collection of tags.</param>
public void SetTags(String[] tags)
{
this.Tags = tags;
}
/// <summary>
/// Assigns a uid to current instance of an entry.
/// </summary>
/// <param name="uid">Uid of an Entry</param>
public void SetUid(String uid)
{
this.Uid = uid;
}
/// <summary>
/// To set cache policy using Entry instance.
/// </summary>
/// <param name="cachePolicy">CachePolicy instance</param>
/// <returns>Current instance of Entry, this will be useful for a chaining calls.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.SetCachePolicy(CachePolicy.NetworkElseCache);
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// });
/// </code>
/// </example>
public Entry SetCachePolicy(CachePolicy cachePolicy)
{
this._CachePolicy = cachePolicy;
this._IsCachePolicySet = true;
return this;
}
/// <summary>
/// Get title
/// </summary>
/// <returns>title</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetTitle();
/// });
/// </code>
/// </example>
public string GetTitle()
{
return Title;
}
/// <summary>
/// Get contentType name.
/// </summary>
/// <returns>contentType name</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.GetContentType()
/// </code>
/// </example>
public String GetContentType()
{
return this.ContentTypeInstance.ContentTypeId;
}
/// <summary>
/// Get uid
/// </summary>
/// <returns>Uid</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetUid();
/// });
/// </code>
/// </example>
public String GetUid()
{
return Uid;
}
/// <summary>
/// Set headers.
/// </summary>
/// <param name="key">custom_header_key</param>
/// <param name="value">custom_header_value</param>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.SetHeader("custom_key", "custom_value");
/// </code>
/// </example>
public void SetHeader(string key, string value)
{
if (key != null && value != null)
{
if (this._Headers.ContainsKey(key))
this._Headers.Remove(key);
this._Headers.Add(key, value);
}
}
/// <summary>
/// Remove header key.
/// </summary>
/// <param name="key">custom_header_key</param>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.RemoveHeader("custom_key");
/// </code>
/// </example>
public void RemoveHeader(string key)
{
if (this._Headers.ContainsKey(key))
this._Headers.Remove(key);
}
/// <summary>
/// To set variants header using Entry instance.
/// </summary>
/// <param name="variant_header">Entry instance</param>
/// <returns>Current instance of Entry, this will be useful for a chaining calls.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry csEntry = stack.ContentType("contentType_id").Entry("entry_uid");
///
/// csEntry.Variant("variant_entry_1");
/// csEntry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetMetadata();
/// });
/// </code>
/// </example>
public Entry Variant(string variant_header)
{
this.SetHeader("x-cs-variant-uid", variant_header);
return this;
}
/// <summary>
/// To set multiple variants headers using Entry instance.
/// </summary>
/// <param name="variant_headers">Entry instance</param>
/// <returns>Current instance of Entry, this will be useful for a chaining calls.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry csEntry = stack.ContentType("contentType_id").Query();
///
/// csEntry.Variant(new List<string> { "variant_entry_1", "variant_entry_2", "variant_entry_3" });
/// csEntry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetMetadata();
/// });
/// </code>
/// </example>
public Entry Variant(List<string> variant_headers)
{
this.SetHeader("x-cs-variant-uid", string.Join(",", variant_headers));
return this;
}
/// <summary>
/// Get metadata of entry.
/// </summary>
/// <returns>key/value attributes of metadata</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetMetadata();
/// });
/// </code>
/// </example>
public Dictionary<string, Object> GetMetadata()
{
return Metadata;
}
/// <summary>
/// Set Language instance
/// </summary>
/// <param name="language">Language value</param>
/// <returns>Current instance of Entry, this will be useful for a chaining calls.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.SetLanguage(Language.ENGLISH_UNITED_STATES);
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetMetadata();
/// });
/// </code>
/// </example>
[ObsoleteAttribute("This method has been deprecated. Use SetLocale instead.", true)]
public Entry SetLanguage(Language language)
{
try
{
Language languageName = language;
int localeValue = (int)languageName;
LanguageCode[] languageCodeValues = Enum.GetValues(typeof(LanguageCode)).Cast<LanguageCode>().ToArray();
string localeCode = languageCodeValues[localeValue].ToString();
localeCode = localeCode.Replace("_", "-");
if (ObjectValueJson != null && !ObjectValueJson.ContainsKey("locale"))
{
UrlQueries.Remove("locale");
UrlQueries.Add("locale", localeCode);
}
else
{
UrlQueries["locale"] = localeCode;
}
}
catch (Exception e)
{
throw new Exception(StackConstants.ErrorMessage_QueryFilterException, e);
}
return this;
}
/// <summary>
/// Sets the locale.
/// </summary>
/// <returns>The locale.</returns>
/// <param name="Locale">Locale.</param>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.SetLocale("en-us");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetMetadata();
/// });
/// </code>
/// </example>
public Entry SetLocale(String Locale)
{
if (ObjectValueJson != null && !ObjectValueJson.ContainsKey("locale"))
{
UrlQueries.Remove("locale");
UrlQueries.Add("locale", Locale);
}
else
{
UrlQueries["locale"] = Locale;
}
return this;
}
/// <summary>
/// Get html text for markdown data type
/// </summary>
/// <param name="markdownKey">field_uid as key.</param>
/// <returns>html text in string format.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetHTMLText("markdownKey")
/// });
/// </code>
/// </example>
public String GetHTMLText(string markdownKey)
{
string result = string.Empty;
if (this._ObjectAttributes.ContainsKey(markdownKey))
{
try
{
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build();
result = Markdown.ToHtml(this._ObjectAttributes[markdownKey].ToString(), pipeline);
return result;
}
catch
{ }
}
return result;
}
/// <summary>
/// Get html text for markdown data type which is multiple true
/// </summary>
/// <param name="markdownKey">field_uid as key.</param>
/// <returns>html text in string format.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetMultipleHTMLText("markdownKey")
/// });
/// </code>
/// </example>
public List<String> GetMultipleHTMLText(string markdownKey)
{
List<string> result = new List<string>();
if (this._ObjectAttributes.ContainsKey(markdownKey))
{
try
{
object[] jsonArray = (object[])this._ObjectAttributes[markdownKey];
foreach (var value in jsonArray)
{
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build();
// var result = Markdown.ToHtml(value.ToString(), pipeline);
result.Add(Markdown.ToHtml(value.ToString(), pipeline));
}
return result;
}
catch
{
}
}
return result;
}
/// <summary>
/// Get object value for key.
/// </summary>
/// <param name="key">key to get value</param>
/// <returns>object value</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.Get("key");
/// });
/// </code>
/// </example>
public Object Get(String key)
{
try
{
if (_ObjectAttributes.ContainsKey(key))
{
var value = _ObjectAttributes[key];
return value;
}
else
return null;
}
catch
{
//CSAppUtils.showLog(TAG, "-----------------getUpdateAtDate|" + e);
}
return null;
}
/// <summary>
/// Get value of creation time of entry.
/// </summary>
/// <returns>created date time in datetime format</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetCreateAt();
/// });
/// </code>
/// </example>
public DateTime GetCreateAt()
{
try
{
String value = _ObjectAttributes["created_at"].ToString();
return ContentstackConvert.ToDateTime(value);
}
catch
{
//CSAppUtils.showLog(TAG, "-----------------getCreateAtDate|" + e);
}
return DateTime.MinValue;
}
/// <summary>
/// Get uid who created this entry.
/// </summary>
/// <returns>uid who created this entry</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetCreatedBy();
/// });
/// </code>
/// </example>
public string GetCreatedBy()
{
string result = null;
try
{
if (this._ObjectAttributes.ContainsKey("created_by"))
{
try
{
result = _ObjectAttributes["created_by"].ToString();
}
catch
{ }
}
}
catch { }
return result;
}
private Entry IncludeCreatedBy()
{
try
{
UrlQueries.Add("include_created_by", true);
}
catch (Exception e)
{
throw new Exception(StackConstants.ErrorMessage_QueryFilterException, e);
}
return this;
}
/// <summary>
/// Get value of updating time of entry.
/// </summary>
/// <returns>updated date time in datetime format</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetUpdateAt();
/// });
/// </code>
/// </example>
public DateTime GetUpdateAt()
{
try
{
String value = _ObjectAttributes["updated_at"].ToString();
return ContentstackConvert.ToDateTime(value);
}
catch
{
//CSAppUtils.showLog(TAG, "-----------------getUpdateAtDate|" + e);
}
return DateTime.MinValue;
}
/// <summary>
/// Get uid who updated this entry.
/// </summary>
/// <returns>uid who updated this entry</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetUpdatedBy();
/// });
/// </code>
/// </example>
public string GetUpdatedBy()
{
string result = string.Empty;
try
{
if (this._ObjectAttributes.ContainsKey("updated_by"))
{
try
{
result = _ObjectAttributes["updated_by"].ToString();
}
catch
{ }
}
}
catch { }
return result;
}
private Entry IncludeUpdatedBy()
{
try
{
UrlQueries.Add("include_updated_by", true);
}
catch (Exception e)
{
throw new Exception(StackConstants.ErrorMessage_QueryFilterException, e);
}
return this;
}
/// <summary>
/// Get value of deleting time of entry.
/// </summary>
/// <returns>deleted date time in datetime format</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetDeletedAt();
/// });
/// </code>
/// </example>
public DateTime GetDeletedAt()
{
try
{
String value = _ObjectAttributes["deleted_at"].ToString();
return ContentstackConvert.ToDateTime(value);
}
catch
{
// CSAppUtils.showLog(TAG, "-----------------GetDeletedAt|" + e);
}
return DateTime.MinValue;
}
/// <summary>
/// Get uid who deleted this entry.
/// </summary>
/// <returns>uid who deleted this entry</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetDeletedBy();
/// });
/// </code>
/// </example>
public String GetDeletedBy()
{
return _ObjectAttributes["deleted_by"].ToString();
}
/// <summary>
/// Get key/value pairs in json of current instance.
/// </summary>
/// <returns>json in string format</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.ToJson();
/// });
/// </code>
/// </example>
public JObject ToJson()
{
return this.jObject;
}
/// <summary>
/// <summary>
/// Get an asset from the entry
/// </summary>
/// <param name="key">field_uid as key.</param>
/// <returns>Asset instance</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetAsset("field_uid");
/// });
/// </code>
/// </example>
private Asset GetAsset(String key)
{
JsonElement assetObject = (JObject)jObject.GetValue(key);
var asset = ContentTypeInstance.StackInstance.Asset();
asset.ParseObject(assetObject);
return asset;
}
/// <summary>
/// Get an assets from the entry. This works with multiple true fields
/// </summary>
/// <param name="key">field_uid as key.</param>
/// <returns>List of Asset instance</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// //var result = entryResult.Result.GetAssets("field_uid");
/// });
/// </code>
/// </example>
///
private List<Asset> GetAssets(String key)
{
List<Asset> assets = new List<Asset>();
JArray assetArray = (Newtonsoft.Json.Linq.JArray)jObject.GetValue(key);
//Dictionary<string, object> assetArray = (Dictionary<string, object>)_ObjectAttributes[key];
foreach (JToken v in assetArray)
{
JObject assetobj = (JObject)v;
Asset asset = ContentTypeInstance.StackInstance.Asset();
asset.ParseObject(assetobj);
assets.Add(asset);
}
return assets;
}
/// <summary>
/// Specifies list of field uids that would be excluded from the response.
/// </summary>
/// <param name="fieldUid">field uid which get excluded from the response.</param>
/// <returns>Current instance of Entry, this will be useful for a chaining calls.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.Except(new String[]{"name", "description"});
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// });
/// </code>
/// </example>
public Entry Except(String[] fieldUid)
{
try
{
if (fieldUid != null && fieldUid.Length > 0)
{
int count = fieldUid.Length;
//for (int i = 0; i < count; i++) {
// UrlQueries.Add("except[BASE][]", fieldUid[i]);
//}
UrlQueries.Add("except[BASE][]", fieldUid);
//exceptValueJson.Add("BASE", objectUidForExcept);
}
}
catch
{
//CSAppUtils.showLog(TAG, "--include Reference-catch|" + e);
}
return this;
}
/// <summary>
/// Add a constraint that requires a particular reference key details.
/// </summary>
/// <param name="referenceField">key that to be constrained.</param>
/// <returns>Current instance of Entry, this will be useful for a chaining calls.</returns>
/// <example>
/// <code>
/// ContentstackClient stack = new ContentstackClinet("api_key", "delivery_token", "environment");
/// Entry entry = stack.ContentType("contentType_id").Entry("entry_uid");
/// entry.IncludeReference("name");
/// entry.Fetch<Product>().ContinueWith((entryResult) => {
/// //Your callback code.
/// });
/// </code>
/// </example>
public Entry IncludeReference(String referenceField)
{
try
{
if (referenceField != null && referenceField.Length > 0)
{
UrlQueries.Add("include[]", referenceField);
}
return this;
}
catch {
//CSAppUtils.showLog(TAG, "--include Reference-catch|" + e);
}
return this;
}
/// <summary>