Interface IWebPageUrlRetriever
Retrieves URLs of web pages.
public interface IWebPageUrlRetriever
- Extension Methods
Methods
Retrieve(IWebPageFieldsSource, string, CancellationToken)
Retrieves URL for a web page represented by a model that implements IWebPageFieldsSource interface and for the languageName
.
Task<WebPageUrl> Retrieve(IWebPageFieldsSource webPageFieldsSource, string languageName, CancellationToken cancellationToken = default)
Parameters
webPageFieldsSource
IWebPageFieldsSourceWeb page model that implements IWebPageFieldsSource with data retrieved from the database.
languageName
stringLanguage code.
cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<WebPageUrl>
Remarks
In case the languageName
doesn't match the language of the model, the URL is retrieved from the database for the languageName
.
To construct the resulting URL use ForWebsite(ContentTypeQueryParameters, string, PathMatch, bool) or ForWebsite(ContentTypeQueryParameters, string, PathMatch[], bool)
with 'includeUrlPath' flag set to true
.
Exceptions
- ArgumentNullException
Thrown when
webPageFieldsSource
is null.- ArgumentException
Thrown when SystemFields in
webPageFieldsSource
is null.- InvalidOperationException
Thrown when
webPageFieldsSource
model does not contain web page identifier specified in SystemFields system data. Thrown when content language identified bylanguageName
does not exist. Thrown when web page identified by WebPageItemID in SystemFields does not exist.
Retrieve(IWebPageFieldsSource, CancellationToken)
Retrieves URL for a web page represented by a model that implements IWebPageFieldsSource interface.
Task<WebPageUrl> Retrieve(IWebPageFieldsSource webPageFieldsSource, CancellationToken cancellationToken = default)
Parameters
webPageFieldsSource
IWebPageFieldsSourceWeb page model that implements IWebPageFieldsSource with data retrieved from the database.
cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<WebPageUrl>
Remarks
To construct the resulting URL use ForWebsite(ContentTypeQueryParameters, string, PathMatch, bool) or ForWebsite(ContentTypeQueryParameters, string, PathMatch[], bool)
with 'includeUrlPath' flag set to true
.
Exceptions
- ArgumentNullException
Thrown when
webPageFieldsSource
is null.- ArgumentException
Thrown when SystemFields in
webPageFieldsSource
is null.- InvalidOperationException
Thrown when
webPageFieldsSource
model does not contain web page identifier or content language identifier specified in SystemFields system data. Thrown when web page identified by WebPageItemID in SystemFields does not exist.
Retrieve(IReadOnlyCollection<Guid>, string, string, bool, CancellationToken)
Retrieves the URLs for a web page language variants identified by webPageItemGuids
, websiteChannelName
and languageName
.
Task<IDictionary<Guid, WebPageUrl>> Retrieve(IReadOnlyCollection<Guid> webPageItemGuids, string websiteChannelName, string languageName, bool forPreview = false, CancellationToken cancellationToken = default)
Parameters
webPageItemGuids
IReadOnlyCollection<Guid>Web page item identifiers.
websiteChannelName
stringWebsite channel name.
languageName
stringLanguage code.
forPreview
boolIndicates whether the latest version of the URL should be retrieved. The default value is
false
.cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<IDictionary<Guid, WebPageUrl>>
Remarks
The method doesn't cache the retrieved URLs.
Exceptions
- ArgumentNullException
Thrown when
webPageItemGuids
,languageName
orwebsiteChannelName
is null.- InvalidOperationException
Thrown when website channel identified by
websiteChannelName
or when content language identified bylanguageName
does not exists.
Retrieve(Guid, string, bool, CancellationToken)
Retrieves the URL for a web page language variant identified by webPageItemGuid
and languageName
.
Task<WebPageUrl> Retrieve(Guid webPageItemGuid, string languageName, bool forPreview = false, CancellationToken cancellationToken = default)
Parameters
webPageItemGuid
GuidWeb page item identifier.
languageName
stringLanguage code.
forPreview
boolIndicates whether the latest version of the URL should be retrieved. The default value is
false
.cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<WebPageUrl>
Remarks
The method caches the retrieved URL unless retrieving the latest version of the URL for preview.
Exceptions
- ArgumentNullException
Thrown when
languageName
is null.- InvalidOperationException
Thrown when web page identified by
webPageItemGuid
or when content language identified bylanguageName
does not exists.
Retrieve(int, string, bool, CancellationToken)
Retrieves the URL for a web page language variant identified by webPageItemId
and languageName
.
Task<WebPageUrl> Retrieve(int webPageItemId, string languageName, bool forPreview = false, CancellationToken cancellationToken = default)
Parameters
webPageItemId
intWeb page item identifier.
languageName
stringLanguage code.
forPreview
boolIndicates whether the latest version of the URL should be retrieved. The default value is
false
.cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<WebPageUrl>
Remarks
The method caches the retrieved URL unless retrieving the latest version of the URL for preview.
Exceptions
- ArgumentNullException
Thrown when
languageName
is null.- InvalidOperationException
Thrown when web page identified by
webPageItemId
or when content language identified bylanguageName
does not exists.
Retrieve(string, string, int, string, CancellationToken)
Retrieves URL for a web page represented by webPageUrlPath
, webPageTreePath
, websiteChannelId
and languageName
.
Task<WebPageUrl> Retrieve(string webPageUrlPath, string webPageTreePath, int websiteChannelId, string languageName, CancellationToken cancellationToken = default)
Parameters
webPageUrlPath
stringWeb page URL path.
webPageTreePath
stringWeb page tree path.
websiteChannelId
intWebsite channel identifier.
languageName
stringLanguage code.
cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<WebPageUrl>
Remarks
To construct the resulting URL use ForWebsite(ContentTypeQueryParameters, string, PathMatch, bool) or ForWebsite(ContentTypeQueryParameters, string, PathMatch[], bool)
with 'includeUrlPath' flag set to true
.
Exceptions
- InvalidOperationException
Thrown when
webPageTreePath
is null or empty. Thrown when website channel identified bywebsiteChannelId
does not exist. Thrown when content language identified bylanguageName
does not exist.- ArgumentNullException
Thrown when
languageName
is null.
Retrieve(string, string, string, bool, CancellationToken)
Retrieves the URL for a web page language variant identified by webPageTreePath
, websiteChannelName
and languageName
.
Task<WebPageUrl> Retrieve(string webPageTreePath, string websiteChannelName, string languageName, bool forPreview = false, CancellationToken cancellationToken = default)
Parameters
webPageTreePath
stringWeb page tree path.
websiteChannelName
stringWebsite channel name.
languageName
stringLanguage code.
forPreview
boolIndicates whether the latest version of the URL should be retrieved. The default value is
false
.cancellationToken
CancellationTokenCancellation instruction.
Returns
- Task<WebPageUrl>
Remarks
The method caches the retrieved URL unless retrieving the latest version of the URL for preview.
Exceptions
- ArgumentNullException
Thrown when
languageName
,webPageTreePath
orwebsiteChannelName
is null.- InvalidOperationException
Thrown when web page identified by
webPageTreePath
or when website channel identified bywebsiteChannelName
or when content language identified bylanguageName
does not exists.