{ "version": 3, "sources": ["src/app/configs/configuration.ts", "src/app/common/variables.ts", "src/app/utils/claim-utils.ts", "src/app/utils/encoder.ts", "src/app/services/umbraco/content.service.ts", "src/app/services/umbraco/media.service.ts", "src/app/services/umbraco/index.ts", "src/app/services/umbraco/umbraco-service.module.ts"], "sourcesContent": ["export interface ConfigurationParameters {\r\n apiKeys?: { [key: string]: string };\r\n username?: string;\r\n password?: string;\r\n accessToken?: string | (() => string);\r\n basePath?: string;\r\n withCredentials?: boolean;\r\n}\r\n\r\nexport class Configuration {\r\n apiKeys?: { [key: string]: string };\r\n username?: string;\r\n password?: string;\r\n accessToken?: string | (() => string);\r\n basePath?: string;\r\n withCredentials?: boolean;\r\n\r\n constructor(configurationParameters: ConfigurationParameters = {}) {\r\n this.apiKeys = configurationParameters.apiKeys;\r\n this.username = configurationParameters.username;\r\n this.password = configurationParameters.password;\r\n this.accessToken = configurationParameters.accessToken;\r\n this.basePath = configurationParameters.basePath;\r\n this.withCredentials = configurationParameters.withCredentials;\r\n }\r\n\r\n /**\r\n * Select the correct content-type to use for a request.\r\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\r\n * If no content type is found return the first found type if the contentTypes is not empty\r\n * @param contentTypes - the array of content types that are available for selection\r\n * @returns the selected content-type or undefined if no selection could be made.\r\n */\r\n public selectHeaderContentType(contentTypes: string[]): string | undefined {\r\n if (contentTypes.length == 0) {\r\n return undefined;\r\n }\r\n\r\n let type = contentTypes.find(x => this.isJsonMime(x));\r\n if (type === undefined) {\r\n return contentTypes[0];\r\n }\r\n return type;\r\n }\r\n\r\n /**\r\n * Select the correct accept content-type to use for a request.\r\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\r\n * If no content type is found return the first found type if the contentTypes is not empty\r\n * @param accepts - the array of content types that are available for selection.\r\n * @returns the selected content-type or undefined if no selection could be made.\r\n */\r\n public selectHeaderAccept(accepts: string[]): string | undefined {\r\n if (accepts.length == 0) {\r\n return undefined;\r\n }\r\n\r\n let type = accepts.find(x => this.isJsonMime(x));\r\n if (type === undefined) {\r\n return accepts[0];\r\n }\r\n return type;\r\n }\r\n\r\n /**\r\n * Check if the given MIME is a JSON MIME.\r\n * JSON MIME examples:\r\n * application/json\r\n * application/json; charset=UTF8\r\n * APPLICATION/JSON\r\n * application/vnd.company+json\r\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\r\n * @return True if the given MIME is JSON, false otherwise.\r\n */\r\n public isJsonMime(mime: string): boolean {\r\n const jsonMime: RegExp = new RegExp('^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\r\n return mime != null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\r\n }\r\n}\r\n", "import { InjectionToken } from '@angular/core';\r\n\r\nexport const BASE_PATH = new InjectionToken('basePath');\r\nexport const COLLECTION_FORMATS = {\r\n 'csv': ',',\r\n 'tsv': ' ',\r\n 'ssv': ' ',\r\n 'pipes': '|'\r\n}\r\n", "/**\r\n * Populate claims table with appropriate description\r\n * @param {Record} claims ID token claims\r\n * @returns claimsTable\r\n */\r\nexport const createClaimsTable = (claims: Record): any[] => {\r\n const claimsTable: any[] = [];\r\n\r\n Object.keys(claims).map((key) => {\r\n switch (key) {\r\n case 'aud':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n \"Identifies the intended recipient of the token. In ID tokens, the audience is your app's Application ID, assigned to your app in the Azure portal.\",\r\n claimsTable\r\n );\r\n break;\r\n case 'iss':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'Identifies the issuer, or authorization server that constructs and returns the token. It also identifies the Azure AD tenant for which the user was authenticated. If the token was issued by the v2.0 endpoint, the URI will end in /v2.0.',\r\n claimsTable\r\n );\r\n break;\r\n case 'iat':\r\n populateClaim(\r\n key,\r\n changeDateFormat(+claims[key]),\r\n '\"Issued At\" indicates the timestamp (UNIX timestamp) when the authentication for this user occurred.',\r\n claimsTable\r\n );\r\n break;\r\n case 'nbf':\r\n populateClaim(\r\n key,\r\n changeDateFormat(+claims[key]),\r\n 'The nbf (not before) claim dictates the time (as UNIX timestamp) before which the JWT must not be accepted for processing.',\r\n claimsTable\r\n );\r\n break;\r\n case 'exp':\r\n populateClaim(\r\n key,\r\n changeDateFormat(+claims[key]),\r\n \"The exp (expiration time) claim dictates the expiration time (as UNIX timestamp) on or after which the JWT must not be accepted for processing. It's important to note that in certain circumstances, a resource may reject the token before this time. For example, if a change in authentication is required or a token revocation has been detected.\",\r\n claimsTable\r\n );\r\n break;\r\n case 'name':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n \"The name claim provides a human-readable value that identifies the subject of the token. The value isn't guaranteed to be unique, it can be changed, and it's designed to be used only for display purposes. The 'profile' scope is required to receive this claim.\",\r\n claimsTable\r\n );\r\n break;\r\n case 'preferred_username':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'The primary username that represents the user. It could be an email address, phone number, or a generic username without a specified format. Its value is mutable and might change over time. Since it is mutable, this value must not be used to make authorization decisions. It can be used for username hints, however, and in human-readable UI as a username. The profile scope is required in order to receive this claim.',\r\n claimsTable\r\n );\r\n break;\r\n case 'nonce':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'The nonce matches the parameter included in the original /authorize request to the IDP.',\r\n claimsTable\r\n );\r\n break;\r\n case 'oid':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'The oid (user object id) is the only claim that should be used to uniquely identify a user in an Azure AD tenant.',\r\n claimsTable\r\n );\r\n break;\r\n case 'tid':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'The id of the tenant where this application resides. You can use this claim to ensure that only users from the current Azure AD tenant can access this app.',\r\n claimsTable\r\n );\r\n break;\r\n case 'upn':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'upn (user principal name) might be unique amongst the active set of users in a tenant but tend to get reassigned to new employees as employees leave the organization and others take their place or might change to reflect a personal change like marriage.',\r\n claimsTable\r\n );\r\n break;\r\n case 'email':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'Email might be unique amongst the active set of users in a tenant but tend to get reassigned to new employees as employees leave the organization and others take their place.',\r\n claimsTable\r\n );\r\n break;\r\n case 'acct':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'Available as an optional claim, it lets you know what the type of user (homed, guest) is. For example, for an individual’s access to their data you might not care for this claim, but you would use this along with tenant id (tid) to control access to say a company-wide dashboard to just employees (homed users) and not contractors (guest users).',\r\n claimsTable\r\n );\r\n break;\r\n case 'sid':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'Session ID, used for per-session user sign-out.',\r\n claimsTable\r\n );\r\n break;\r\n case 'sub':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'The sub claim is a pairwise identifier - it is unique to a particular application ID. If a single user signs into two different apps using two different client IDs, those apps will receive two different values for the subject claim.',\r\n claimsTable\r\n );\r\n break;\r\n case 'ver':\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'Version of the token issued by the Microsoft identity platform',\r\n claimsTable\r\n );\r\n break;\r\n case \"login_hint\":\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'An opaque, reliable login hint claim. This claim is the best value to use for the login_hint OAuth parameter in all flows to get SSO.',\r\n claimsTable\r\n );\r\n break;\r\n case \"idtyp\":\r\n populateClaim(\r\n key,\r\n claims[key],\r\n 'Value is app when the token is an app-only token. This is the most accurate way for an API to determine if a token is an app token or an app+user token',\r\n claimsTable\r\n );\r\n break;\r\n case 'uti':\r\n case 'rh':\r\n break;\r\n default:\r\n populateClaim(key, claims[key], '', claimsTable);\r\n }\r\n });\r\n\r\n return claimsTable;\r\n};\r\n\r\n/**\r\n* Populates claim, description, and value into an claimsObject\r\n* @param {String} claim\r\n* @param {String} value\r\n* @param {String} description\r\n* @param {Array} claimsObject\r\n*/\r\nconst populateClaim = (claim: string, value: string, description: string, claimsTable: any[]): void => {\r\n claimsTable.push({\r\n claim: claim,\r\n value: value,\r\n description: description\r\n });\r\n};\r\n\r\n/**\r\n* Transforms Unix timestamp to date and returns a string value of that date\r\n* @param {number} date Unix timestamp\r\n* @returns\r\n*/\r\nconst changeDateFormat = (date: number) => {\r\n let dateObj = new Date(date * 1000);\r\n return `${date} - [${dateObj.toString()}]`;\r\n};\r\n", "import { HttpUrlEncodingCodec } from '@angular/common/http';\r\n\r\n/**\r\n* CustomHttpUrlEncodingCodec\r\n* Fix plus sign (+) not encoding, so sent as blank space\r\n* See: https://github.com/angular/angular/issues/11058#issuecomment-247367318\r\n*/\r\nexport class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {\r\n override encodeKey(k: string): string {\r\n k = super.encodeKey(k);\r\n return k.replace(/\\+/gi, '%2B');\r\n }\r\n override encodeValue(v: string): string {\r\n v = super.encodeValue(v);\r\n return v.replace(/\\+/gi, '%2B');\r\n }\r\n}\r\n\r\n", "/**\r\n * Umbraco Delivery API\r\n * You can find out more about the Umbraco Delivery API in [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api).\r\n *\r\n * OpenAPI spec version: Latest\r\n * \r\n *\r\n * NOTE: This class is auto generated by the swagger code generator program.\r\n * https://github.com/swagger-api/swagger-codegen.git\r\n * Do not edit the class manually.\r\n *//* tslint:disable:no-unused-variable member-ordering */\r\n\r\nimport { Inject, Injectable, Optional } from '@angular/core';\r\nimport {\r\n HttpClient, HttpHeaders, HttpParams,\r\n HttpResponse, HttpEvent\r\n} from '@angular/common/http';\r\nimport { Observable } from 'rxjs';\r\nimport { ApiContentResponseModel, InlineResponse200, InlineResponse2001 } from '@portal/model';\r\nimport { BASE_PATH } from '@portal/common';\r\nimport { Configuration } from '@portal/configs';\r\nimport { CustomHttpUrlEncodingCodec } from '@portal/utils';\r\nimport { environment } from 'src/environments/environment';\r\n\r\n\r\n@Injectable()\r\nexport class ContentService {\r\n\r\n protected basePath = environment.umbracoBaseUri;\r\n public defaultHeaders = new HttpHeaders();\r\n public configuration = new Configuration();\r\n\r\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\r\n if (basePath) {\r\n this.basePath = basePath;\r\n }\r\n if (configuration) {\r\n this.configuration = configuration;\r\n this.basePath = basePath || configuration.basePath || this.basePath;\r\n }\r\n }\r\n\r\n /**\r\n * @param consumes string[] mime-types\r\n * @return true: consumes contains 'multipart/form-data', false: otherwise\r\n */\r\n private canConsumeForm(consumes: string[]): boolean {\r\n const form = 'multipart/form-data';\r\n for (const consume of consumes) {\r\n if (form === consume) {\r\n return true;\r\n }\r\n }\r\n return false;\r\n }\r\n\r\n\r\n /**\r\n * \r\n * \r\n * @param fetch Specifies the content items to fetch. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param filter Defines how to filter the fetched content items. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param sort Defines how to sort the found content items. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param skip Specifies the number of found content items to skip. Use this to control pagination of the response.\r\n * @param take Specifies the number of found content items to take. Use this to control pagination of the response.\r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param acceptLanguage Defines the language to return. Use this when querying language variant content items.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param preview Whether to request draft content.\r\n * @param startItem URL segment or GUID of a root content item.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getContent20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public getContent20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public getContent20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public getContent20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (fetch !== undefined && fetch !== null) {\r\n queryParameters = queryParameters.set('fetch', fetch);\r\n }\r\n if (filter) {\r\n filter.forEach((element) => {\r\n queryParameters = queryParameters.append('filter', element);\r\n })\r\n }\r\n if (sort) {\r\n sort.forEach((element) => {\r\n queryParameters = queryParameters.append('sort', element);\r\n })\r\n }\r\n if (skip !== undefined && skip !== null) {\r\n queryParameters = queryParameters.set('skip', skip);\r\n }\r\n if (take !== undefined && take !== null) {\r\n queryParameters = queryParameters.set('take', take);\r\n }\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (acceptLanguage !== undefined && acceptLanguage !== null) {\r\n headers = headers.set('Accept-Language', String(acceptLanguage));\r\n }\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n if (preview !== undefined && preview !== null) {\r\n headers = headers.set('Preview', String(preview));\r\n }\r\n if (startItem !== undefined && startItem !== null) {\r\n headers = headers.set('Start-Item', String(startItem));\r\n }\r\n\r\n\r\n\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `${this.basePath}/umbraco/delivery/api/v2/content`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param id \r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param acceptLanguage Defines the language to return. Use this when querying language variant content items.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param preview Whether to request draft content.\r\n * @param startItem URL segment or GUID of a root content item.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getContentItemById20(id: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public getContentItemById20(id: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public getContentItemById20(id: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public getContentItemById20(id: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n if (id === null || id === undefined) {\r\n throw new Error('Required parameter id was null or undefined when calling getContentItemById20.');\r\n }\r\n\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (acceptLanguage !== undefined && acceptLanguage !== null) {\r\n headers = headers.set('Accept-Language', String(acceptLanguage));\r\n }\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n if (preview !== undefined && preview !== null) {\r\n headers = headers.set('Preview', String(preview));\r\n }\r\n if (startItem !== undefined && startItem !== null) {\r\n headers = headers.set('Start-Item', String(startItem));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `${this.basePath}/umbraco/delivery/api/v2/content/item/${encodeURIComponent(String(id))}`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param path \r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param acceptLanguage Defines the language to return. Use this when querying language variant content items.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param preview Whether to request draft content.\r\n * @param startItem URL segment or GUID of a root content item.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getContentItemByPath20(path: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public getContentItemByPath20(path: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public getContentItemByPath20(path: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public getContentItemByPath20(path: string, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n if (path === null || path === undefined) {\r\n throw new Error('Required parameter path was null or undefined when calling getContentItemByPath20.');\r\n }\r\n\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (acceptLanguage !== undefined && acceptLanguage !== null) {\r\n headers = headers.set('Accept-Language', String(acceptLanguage));\r\n }\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n if (preview !== undefined && preview !== null) {\r\n headers = headers.set('Preview', String(preview));\r\n }\r\n if (startItem !== undefined && startItem !== null) {\r\n headers = headers.set('Start-Item', String(startItem));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `${this.basePath}/umbraco/delivery/api/v2/content/item/${encodeURIComponent(String(path))}`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param id \r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api#query-parameters) for more details on this.\r\n * @param acceptLanguage Defines the language to return. Use this when querying language variant content items.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param preview Whether to request draft content.\r\n * @param startItem URL segment or GUID of a root content item.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getContentItems20(id?: Array, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'body', reportProgress?: boolean): Observable>;\r\n public getContentItems20(id?: Array, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'response', reportProgress?: boolean): Observable>>;\r\n public getContentItems20(id?: Array, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe?: 'events', reportProgress?: boolean): Observable>>;\r\n public getContentItems20(id?: Array, expand?: string, fields?: string, acceptLanguage?: string, apiKey?: string, preview?: boolean, startItem?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (id) {\r\n id.forEach((element) => {\r\n queryParameters = queryParameters.append('id', element);\r\n })\r\n }\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (acceptLanguage !== undefined && acceptLanguage !== null) {\r\n headers = headers.set('Accept-Language', String(acceptLanguage));\r\n }\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n if (preview !== undefined && preview !== null) {\r\n headers = headers.set('Preview', String(preview));\r\n }\r\n if (startItem !== undefined && startItem !== null) {\r\n headers = headers.set('Start-Item', String(startItem));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request>('get', `${this.basePath}/umbraco/delivery/api/v2/content/items`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n}\r\n", "/**\r\n * Umbraco Delivery API\r\n * You can find out more about the Umbraco Delivery API in [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api).\r\n *\r\n * OpenAPI spec version: Latest\r\n * \r\n *\r\n * NOTE: This class is auto generated by the swagger code generator program.\r\n * https://github.com/swagger-api/swagger-codegen.git\r\n * Do not edit the class manually.\r\n *//* tslint:disable:no-unused-variable member-ordering */\r\n\r\nimport { Inject, Injectable, Optional } from '@angular/core';\r\nimport {\r\n HttpClient, HttpHeaders, HttpParams,\r\n HttpResponse, HttpEvent\r\n} from '@angular/common/http';\r\nimport { CustomHttpUrlEncodingCodec } from '@portal/utils';\r\nimport { Observable } from 'rxjs';\r\nimport { ApiMediaWithCropsResponseModel, InlineResponse2002, InlineResponse2003 } from '@portal/model';\r\nimport { BASE_PATH } from '@portal/common';\r\nimport { Configuration } from '@portal/configs';\r\n\r\n\r\n@Injectable()\r\nexport class MediaService {\r\n protected basePath = '/';\r\n public defaultHeaders = new HttpHeaders();\r\n public configuration = new Configuration();\r\n\r\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\r\n if (basePath) {\r\n this.basePath = basePath;\r\n }\r\n if (configuration) {\r\n this.configuration = configuration;\r\n this.basePath = basePath || configuration.basePath || this.basePath;\r\n }\r\n }\r\n\r\n /**\r\n * @param consumes string[] mime-types\r\n * @return true: consumes contains 'multipart/form-data', false: otherwise\r\n */\r\n private canConsumeForm(consumes: string[]): boolean {\r\n const form = 'multipart/form-data';\r\n for (const consume of consumes) {\r\n if (form === consume) {\r\n return true;\r\n }\r\n }\r\n return false;\r\n }\r\n\r\n\r\n /**\r\n * \r\n * \r\n * @param fetch Specifies the media items to fetch. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param filter Defines how to filter the fetched media items. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param sort Defines how to sort the found media items. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param skip Specifies the number of found media items to skip. Use this to control pagination of the response.\r\n * @param take Specifies the number of found media items to take. Use this to control pagination of the response.\r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getMedia20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, apiKey?: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public getMedia20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, apiKey?: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public getMedia20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, apiKey?: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public getMedia20(fetch?: string, filter?: Array, sort?: Array, skip?: number, take?: number, expand?: string, fields?: string, apiKey?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (fetch !== undefined && fetch !== null) {\r\n queryParameters = queryParameters.set('fetch', fetch);\r\n }\r\n if (filter) {\r\n filter.forEach((element) => {\r\n queryParameters = queryParameters.append('filter', element);\r\n })\r\n }\r\n if (sort) {\r\n sort.forEach((element) => {\r\n queryParameters = queryParameters.append('sort', element);\r\n })\r\n }\r\n if (skip !== undefined && skip !== null) {\r\n queryParameters = queryParameters.set('skip', skip);\r\n }\r\n if (take !== undefined && take !== null) {\r\n queryParameters = queryParameters.set('take', take);\r\n }\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `${this.basePath}/umbraco/delivery/api/v2/media`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param id \r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getMediaItemById20(id: string, expand?: string, fields?: string, apiKey?: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public getMediaItemById20(id: string, expand?: string, fields?: string, apiKey?: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public getMediaItemById20(id: string, expand?: string, fields?: string, apiKey?: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public getMediaItemById20(id: string, expand?: string, fields?: string, apiKey?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n if (id === null || id === undefined) {\r\n throw new Error('Required parameter id was null or undefined when calling getMediaItemById20.');\r\n }\r\n\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `${this.basePath}/umbraco/delivery/api/v2/media/item/${encodeURIComponent(String(id))}`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param path \r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getMediaItemByPath20(path: string, expand?: string, fields?: string, apiKey?: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public getMediaItemByPath20(path: string, expand?: string, fields?: string, apiKey?: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public getMediaItemByPath20(path: string, expand?: string, fields?: string, apiKey?: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public getMediaItemByPath20(path: string, expand?: string, fields?: string, apiKey?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n if (path === null || path === undefined) {\r\n throw new Error('Required parameter path was null or undefined when calling getMediaItemByPath20.');\r\n }\r\n\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `${this.basePath}/umbraco/delivery/api/v2/media/item/${encodeURIComponent(String(path))}`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param id \r\n * @param expand Defines the properties that should be expanded in the response. Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param fields Explicitly defines which properties should be included in the response (by default all properties are included). Refer to [the documentation](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api/media-delivery-api#query-parameters) for more details on this.\r\n * @param apiKey API key specified through configuration to authorize access to the API.\r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public getMediaItems20(id?: Array, expand?: string, fields?: string, apiKey?: string, observe?: 'body', reportProgress?: boolean): Observable>;\r\n public getMediaItems20(id?: Array, expand?: string, fields?: string, apiKey?: string, observe?: 'response', reportProgress?: boolean): Observable>>;\r\n public getMediaItems20(id?: Array, expand?: string, fields?: string, apiKey?: string, observe?: 'events', reportProgress?: boolean): Observable>>;\r\n public getMediaItems20(id?: Array, expand?: string, fields?: string, apiKey?: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });\r\n if (id) {\r\n id.forEach((element) => {\r\n queryParameters = queryParameters.append('id', element);\r\n })\r\n }\r\n if (expand !== undefined && expand !== null) {\r\n queryParameters = queryParameters.set('expand', expand);\r\n }\r\n if (fields !== undefined && fields !== null) {\r\n queryParameters = queryParameters.set('fields', fields);\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n if (apiKey !== undefined && apiKey !== null) {\r\n headers = headers.set('Api-Key', String(apiKey));\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'application/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request>('get', `${this.basePath}/umbraco/delivery/api/v2/media/items`,\r\n {\r\n params: queryParameters,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n}\r\n", "export * from './content.service';\r\nexport * from './media.service';\r\nexport * from './umbraco-service.module';\r\n\r\nimport { ContentService } from './content.service';\r\nimport { MediaService } from './media.service';\r\n\r\nexport const UmbracoServices = [ContentService, MediaService];\r\n", "import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\r\nimport { Configuration } from '@portal/configs';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport { UmbracoServices } from '.';\r\n\r\n@NgModule({\r\n imports: [],\r\n declarations: [],\r\n exports: [],\r\n providers: UmbracoServices\r\n})\r\nexport class UmbracoServiceModule {\r\n\r\n constructor(@Optional() @SkipSelf() parentModule: UmbracoServiceModule,\r\n @Optional() http: HttpClient) {\r\n if (parentModule) {\r\n throw new Error('ApiModule is already loaded. Import in your base AppModule only.');\r\n }\r\n if (!http) {\r\n throw new Error('You need to import the HttpClientModule in your AppModule! \\n' +\r\n 'See also https://github.com/angular/angular/issues/20575');\r\n }\r\n }\r\n}\r\n"], "mappings": "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", "names": [] }