@@ -23,7 +23,7 @@ namespace Contentful.Core
23
23
/// </summary>
24
24
public class ContentfulClient : ContentfulClientBase , IContentfulClient
25
25
{
26
- private readonly string _baseUrl = "https://cdn.contentful.com/spaces/" ;
26
+ private string _baseUrl = "https://cdn.contentful.com/spaces/" ;
27
27
28
28
/// <summary>
29
29
/// Initializes a new instance of the <see cref="ContentfulClient"/> class.
@@ -44,7 +44,7 @@ public ContentfulClient(HttpClient httpClient, ContentfulOptions options)
44
44
45
45
if ( _options . UsePreviewApi )
46
46
{
47
- _baseUrl = _baseUrl . Replace ( "cdn" , "preview" ) ;
47
+ BaseUrl = BaseUrl . Replace ( "cdn" , "preview" ) ;
48
48
}
49
49
ResolveEntriesSelectively = _options . ResolveEntriesSelectively ;
50
50
SerializerSettings . Converters . Add ( new AssetJsonConverter ( ) ) ;
@@ -94,6 +94,11 @@ public ContentfulClient(HttpClient httpClient, string deliveryApiKey, string pre
94
94
/// </summary>
95
95
public List < CrossSpaceResolutionSetting > CrossSpaceResolutionSettings { get ; set ; } = new List < CrossSpaceResolutionSetting > ( ) ;
96
96
97
+ /// <summary>
98
+ /// The base url used when calling the Contentful services. Defaults to https://cdn.contentful.com/spaces/
99
+ /// </summary>
100
+ public string BaseUrl { get => _baseUrl ; set => _baseUrl = value ; }
101
+
97
102
/// <summary>
98
103
/// Get a single entry by the specified ID.
99
104
/// </summary>
@@ -130,7 +135,7 @@ public async Task<ContentfulResult<T>> GetEntry<T>(string entryId, string etag,
130
135
throw new ArgumentException ( nameof ( entryId ) ) ;
131
136
}
132
137
133
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } entries/{ entryId } { queryString } ", etag , cancellationToken , CrossSpaceResolutionSettings ) . ConfigureAwait ( false ) ;
138
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } entries/{ entryId } { queryString } ", etag , cancellationToken , CrossSpaceResolutionSettings ) . ConfigureAwait ( false ) ;
134
139
135
140
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
136
141
{
@@ -214,14 +219,14 @@ public async Task<ContentfulCollection<T>> GetEntries<T>(QueryBuilder<T> queryBu
214
219
215
220
public async Task < string > GetEntriesRaw ( string queryString = null , CancellationToken cancellationToken = default )
216
221
{
217
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } entries{ queryString } ", null , cancellationToken , CrossSpaceResolutionSettings ) . ConfigureAwait ( false ) ;
222
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } entries{ queryString } ", null , cancellationToken , CrossSpaceResolutionSettings ) . ConfigureAwait ( false ) ;
218
223
var resultString = await res . Content . ReadAsStringAsync ( ) . ConfigureAwait ( false ) ;
219
224
return resultString ;
220
225
}
221
226
222
227
public async Task < ContentfulResult < ContentfulCollection < T > > > GetEntries < T > ( string etag , string queryString = null , CancellationToken cancellationToken = default )
223
228
{
224
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } entries{ queryString } ", etag , cancellationToken , CrossSpaceResolutionSettings ) . ConfigureAwait ( false ) ;
229
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } entries{ queryString } ", etag , cancellationToken , CrossSpaceResolutionSettings ) . ConfigureAwait ( false ) ;
225
230
226
231
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag . Tag == etag )
227
232
{
@@ -494,7 +499,7 @@ public async Task<ContentfulResult<Asset>> GetAsset(string assetId, string etag,
494
499
throw new ArgumentException ( nameof ( assetId ) ) ;
495
500
}
496
501
497
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } assets/{ assetId } { queryString } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
502
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } assets/{ assetId } { queryString } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
498
503
499
504
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
500
505
{
@@ -545,7 +550,7 @@ public async Task<ContentfulCollection<Asset>> GetAssets(QueryBuilder<Asset> que
545
550
/// <exception cref="ContentfulException">There was an error when communicating with the Contentful API.</exception>
546
551
public async Task < ContentfulResult < ContentfulCollection < Asset > > > GetAssets ( string etag , string queryString = null , CancellationToken cancellationToken = default )
547
552
{
548
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } assets/{ queryString } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
553
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } assets/{ queryString } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
549
554
550
555
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
551
556
{
@@ -595,7 +600,7 @@ public async Task<EmbargoedAssetKey> CreateEmbargoedAssetKey(DateTimeOffset time
595
600
596
601
var expiresAt = timeOffset . ToUnixTimeSeconds ( ) ;
597
602
//note that unlike some other api methods, the asset embargo key always requires an environment id.
598
- var res = await Post ( $ "{ _baseUrl } { _options . SpaceId } /{ ( EnvironmentsBase == string . Empty ? "environments/master/" : EnvironmentsBase ) } asset_keys", new { expiresAt } , cancellationToken ) . ConfigureAwait ( false ) ;
603
+ var res = await Post ( $ "{ BaseUrl } { _options . SpaceId } /{ ( EnvironmentsBase == string . Empty ? "environments/master/" : EnvironmentsBase ) } asset_keys", new { expiresAt } , cancellationToken ) . ConfigureAwait ( false ) ;
599
604
600
605
var jsonObject = JObject . Parse ( await res . Content . ReadAsStringAsync ( ) . ConfigureAwait ( false ) ) ;
601
606
var assetKey = jsonObject . ToObject < EmbargoedAssetKey > ( Serializer ) ;
@@ -611,7 +616,7 @@ public async Task<EmbargoedAssetKey> CreateEmbargoedAssetKey(DateTimeOffset time
611
616
/// <exception cref="ContentfulException">There was an error when communicating with the Contentful API.</exception>
612
617
public async Task < ContentfulResult < Space > > GetSpace ( string etag , CancellationToken cancellationToken = default )
613
618
{
614
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
619
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
615
620
616
621
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
617
622
{
@@ -653,7 +658,7 @@ public async Task<ContentfulResult<ContentType>> GetContentType(string etag, str
653
658
throw new ArgumentException ( nameof ( contentTypeId ) ) ;
654
659
}
655
660
656
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } content_types/{ contentTypeId } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
661
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } content_types/{ contentTypeId } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
657
662
658
663
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
659
664
{
@@ -673,7 +678,7 @@ public async Task<ContentfulResult<ContentType>> GetContentType(string etag, str
673
678
/// <returns>An <see cref="IEnumerable{T}"/> of <see cref="ContentTag"/>.</returns>
674
679
public async Task < IEnumerable < ContentTag > > GetTags ( string queryString = "" , CancellationToken cancellationToken = default ) {
675
680
676
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } tags/{ queryString } ", null , cancellationToken , null ) . ConfigureAwait ( false ) ;
681
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } tags/{ queryString } ", null , cancellationToken , null ) . ConfigureAwait ( false ) ;
677
682
678
683
var jsonObject = JObject . Parse ( await res . Content . ReadAsStringAsync ( ) . ConfigureAwait ( false ) ) ;
679
684
var tags = jsonObject . SelectTokens ( "$..items[*]" ) . Select ( t => t . ToObject < ContentTag > ( Serializer ) ) ;
@@ -694,7 +699,7 @@ public async Task<ContentTag> GetTag(string tagId, CancellationToken cancellatio
694
699
throw new ArgumentException ( nameof ( tagId ) ) ;
695
700
}
696
701
697
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } tags/{ tagId } ", null , cancellationToken , null ) . ConfigureAwait ( false ) ;
702
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } tags/{ tagId } ", null , cancellationToken , null ) . ConfigureAwait ( false ) ;
698
703
699
704
var jsonObject = JObject . Parse ( await res . Content . ReadAsStringAsync ( ) . ConfigureAwait ( false ) ) ;
700
705
var tag = jsonObject . ToObject < ContentTag > ( Serializer ) ;
@@ -735,7 +740,7 @@ public async Task<IEnumerable<ContentType>> GetContentTypes(CancellationToken ca
735
740
/// <returns>An <see cref="IEnumerable{T}"/> of <see cref="ContentType"/>.</returns>
736
741
public async Task < ContentfulResult < IEnumerable < ContentType > > > GetContentTypes ( string etag , string queryString , CancellationToken cancellationToken = default )
737
742
{
738
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } content_types/{ queryString } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
743
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } content_types/{ queryString } ", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
739
744
740
745
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
741
746
{
@@ -768,7 +773,7 @@ public async Task<IEnumerable<ContentType>> GetContentTypes(string queryString,
768
773
/// <returns>An <see cref="IEnumerable{T}"/> of <see cref="Locale"/>.</returns>
769
774
public async Task < ContentfulResult < IEnumerable < Locale > > > GetLocales ( string etag , CancellationToken cancellationToken = default )
770
775
{
771
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ ( string . IsNullOrEmpty ( EnvironmentsBase ) ? "environments/master/" : EnvironmentsBase ) } locales/", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
776
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ ( string . IsNullOrEmpty ( EnvironmentsBase ) ? "environments/master/" : EnvironmentsBase ) } locales/", etag , cancellationToken , null ) . ConfigureAwait ( false ) ;
772
777
773
778
if ( ! string . IsNullOrEmpty ( etag ) && res . Headers ? . ETag ? . Tag == etag )
774
779
{
@@ -813,7 +818,7 @@ public async Task<SyncResult> SyncInitial(SyncType syncType = SyncType.All, stri
813
818
814
819
var query = BuildSyncQuery ( syncType , contentTypeId , true , limit : limit ) ;
815
820
816
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } sync{ query } ", "" , cancellationToken , null ) . ConfigureAwait ( false ) ;
821
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } sync{ query } ", "" , cancellationToken , null ) . ConfigureAwait ( false ) ;
817
822
818
823
var syncResult = ParseSyncResult ( await res . Content . ReadAsStringAsync ( ) . ConfigureAwait ( false ) ) ;
819
824
@@ -840,7 +845,7 @@ public async Task<SyncResult> SyncNextResult(string nextSyncOrPageUrl, Cancellat
840
845
841
846
var query = BuildSyncQuery ( syncToken : syncToken ) ;
842
847
843
- var res = await Get ( $ "{ _baseUrl } { _options . SpaceId } /{ EnvironmentsBase } sync{ query } ", "" , cancellationToken , null ) . ConfigureAwait ( false ) ;
848
+ var res = await Get ( $ "{ BaseUrl } { _options . SpaceId } /{ EnvironmentsBase } sync{ query } ", "" , cancellationToken , null ) . ConfigureAwait ( false ) ;
844
849
845
850
var syncResult = ParseSyncResult ( await res . Content . ReadAsStringAsync ( ) . ConfigureAwait ( false ) ) ;
846
851
0 commit comments