portainer/app/extensions/registry-management/rest/catalog.js

35 lines
893 B
JavaScript

import linkGetResponse from './transform/linkGetResponse';
angular.module('portainer.extensions.registrymanagement').factory('RegistryCatalog', [
'$resource',
'API_ENDPOINT_REGISTRIES',
function RegistryCatalogFactory($resource, API_ENDPOINT_REGISTRIES) {
'use strict';
return $resource(
API_ENDPOINT_REGISTRIES + '/:id/v2/:action',
{},
{
get: {
method: 'GET',
params: { id: '@id', action: '_catalog' },
transformResponse: linkGetResponse,
},
ping: {
method: 'GET',
params: { id: '@id' },
timeout: 3500,
},
pingWithForceNew: {
method: 'GET',
params: { id: '@id' },
timeout: 3500,
headers: { 'X-RegistryManagement-ForceNew': '1' },
},
},
{
stripTrailingSlashes: false,
}
);
},
]);