mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 00:09:40 +02:00
* refactor(http): parse axios errors (#6325) * refactor(home): use endpoint-list as react component [EE-1814] (#6060) * refactor(home): use endpoint-list as react component fix(home): add missing features and refactors - kubebutton - group name - poll when endpoint is off - state management refactor(endpoints): use stat component fix(endpoints): add space between items refactor(endpoints): move stats to components refactor(endpoints): fetch time refactor(home): move logic refactor(home): move fe render logic refactor(settings): use vanilla js for publicSettings refactor(kube): remove angular from kube config service feat(home): add kubeconfig button feat(home): send analytics when opening kubeconfig modal fix(home): memoize footer refactor(home): use react-query for loading fix(home): show correct control for kubeconfig modal refactor(home): use debounce refactor(home): use new components refactor(home): replace endpoints with environments refactor(home): move endpoint-list component to home fix(home): show group name refactor(home): use switch for environment icon fix(kubeconfig): fix default case refactor(axios): use parse axios error refactor(home): use link components for navigate fix(home): align azure icon refactor(home): refactor stats refactor(home): export envstatusbadge refactor(home): remove unused bindings * chore(home): write tests for edge indicator * chore(home): basic stories for environment item * style(settings): reformat * fix(environments): add publicurl * refactor(home): use table components * refactor(datatables): merge useSearchBarState * refactor(home): fetch group in env item * chore(tests): basic tests * chore(home): test when no envs * refactor(tags): use axios for tagService * refactor(env-groups): use axios for getGroups * feat(app): ui-state context provider * refactor(home): create MotdPanel * refactor(app): create InformationPanel * feat(endpoints): fetch number of total endpoints * refactor(app): merge hooks * refactor(home): migrate view to react [EE-1810] fixes [EE-1810] refactor(home): wip use react view feat(home): show message if no endpoints refactor(home): show endpoint list refactor(home): don't use home to manage link refactor(home): move state refactor(home): check if edge using util refactor(home): move inf panels chore(home): tests refactor(home): load groups and tags in env-item refactor(settings): revert publicSettings change refactor(home): move confirm snapshot method * fix(home): show tags * fix(environments): handle missing snapshots * fix(kube/volumes): fetch pesistent volume claims * refactor(kube): remove use of endpointProvider * refactor(endpoints): set current endpoint * chore(home): add data-cy for tests * chore(tests): mock axios-progress-bar * refactor(home): move use env list to env module * feat(app): sync home view changes with ee * fix(home): sort page header * fix(app): fix tests * chore(github): use yarn cache * refactor(environments): load list of groups * chore(babel): remove auto 18n keys extraction * chore(environments): fix tests * refactor(k8s/application): use current endpoint * fix(app/header): add margin to header * refactor(app): remove unused types * refactor(app): use rq onError handler * refactor(home): wrap element with button
241 lines
5.2 KiB
TypeScript
241 lines
5.2 KiB
TypeScript
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
|
import { type EnvironmentGroupId } from '@/portainer/environment-groups/types';
|
|
import { type TagId } from '@/portainer/tags/types';
|
|
import { UserId } from '@/portainer/users/types';
|
|
import { TeamId } from '@/portainer/teams/types';
|
|
|
|
import type {
|
|
Environment,
|
|
EnvironmentId,
|
|
EnvironmentType,
|
|
EnvironmentSettings,
|
|
} from '../types';
|
|
|
|
import { arrayToJson, buildUrl } from './utils';
|
|
|
|
interface EndpointsQuery {
|
|
search?: string;
|
|
types?: EnvironmentType[];
|
|
tagIds?: TagId[];
|
|
endpointIds?: EnvironmentId[];
|
|
tagsPartialMatch?: boolean;
|
|
groupId?: EnvironmentGroupId;
|
|
edgeDeviceFilter?: boolean;
|
|
}
|
|
|
|
export async function getEndpoints(
|
|
start: number,
|
|
limit: number,
|
|
{ types, tagIds, endpointIds, ...query }: EndpointsQuery = {}
|
|
) {
|
|
if (tagIds && tagIds.length === 0) {
|
|
return { totalCount: 0, value: <Environment[]>[] };
|
|
}
|
|
|
|
const url = buildUrl();
|
|
|
|
const params: Record<string, unknown> = { start, limit, ...query };
|
|
|
|
if (types) {
|
|
params.types = arrayToJson(types);
|
|
}
|
|
|
|
if (tagIds) {
|
|
params.tagIds = arrayToJson(tagIds);
|
|
}
|
|
|
|
if (endpointIds) {
|
|
params.endpointIds = arrayToJson(endpointIds);
|
|
}
|
|
|
|
try {
|
|
const response = await axios.get<Environment[]>(url, { params });
|
|
|
|
const totalCount = response.headers['x-total-count'];
|
|
const totalAvailable = response.headers['x-total-available'];
|
|
|
|
return {
|
|
totalCount: parseInt(totalCount, 10),
|
|
value: response.data,
|
|
totalAvailable: parseInt(totalAvailable, 10),
|
|
};
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function getEndpoint(id: EnvironmentId) {
|
|
try {
|
|
const { data: endpoint } = await axios.get<Environment>(buildUrl(id));
|
|
return endpoint;
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function snapshotEndpoints() {
|
|
try {
|
|
await axios.post<void>(buildUrl(undefined, 'snapshot'));
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function snapshotEndpoint(id: EnvironmentId) {
|
|
try {
|
|
await axios.post<void>(buildUrl(id, 'snapshot'));
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function endpointsByGroup(
|
|
start: number,
|
|
limit: number,
|
|
search: string,
|
|
groupId: EnvironmentGroupId
|
|
) {
|
|
return getEndpoints(start, limit, { search, groupId });
|
|
}
|
|
|
|
export async function disassociateEndpoint(id: EnvironmentId) {
|
|
try {
|
|
await axios.delete(buildUrl(id, 'association'));
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
interface UpdatePayload {
|
|
TLSCACert?: File;
|
|
TLSCert?: File;
|
|
TLSKey?: File;
|
|
|
|
Name: string;
|
|
PublicURL: string;
|
|
GroupID: EnvironmentGroupId;
|
|
TagIds: TagId[];
|
|
|
|
EdgeCheckinInterval: number;
|
|
|
|
TLS: boolean;
|
|
TLSSkipVerify: boolean;
|
|
TLSSkipClientVerify: boolean;
|
|
AzureApplicationID: string;
|
|
AzureTenantID: string;
|
|
AzureAuthenticationKey: string;
|
|
}
|
|
|
|
async function uploadTLSFilesForEndpoint(
|
|
id: EnvironmentId,
|
|
tlscaCert?: File,
|
|
tlsCert?: File,
|
|
tlsKey?: File
|
|
) {
|
|
await Promise.all([
|
|
uploadCert('ca', tlscaCert),
|
|
uploadCert('cert', tlsCert),
|
|
uploadCert('key', tlsKey),
|
|
]);
|
|
|
|
function uploadCert(type: 'ca' | 'cert' | 'key', cert?: File) {
|
|
if (!cert) {
|
|
return null;
|
|
}
|
|
try {
|
|
return axios.post<void>(`upload/tls/${type}`, cert, {
|
|
params: { folder: id },
|
|
});
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function updateEndpoint(
|
|
id: EnvironmentId,
|
|
payload: UpdatePayload
|
|
) {
|
|
try {
|
|
await uploadTLSFilesForEndpoint(
|
|
id,
|
|
payload.TLSCACert,
|
|
payload.TLSCert,
|
|
payload.TLSKey
|
|
);
|
|
|
|
const { data: endpoint } = await axios.put<Environment>(
|
|
buildUrl(id),
|
|
payload
|
|
);
|
|
|
|
return endpoint;
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error, 'Unable to update environment');
|
|
}
|
|
}
|
|
|
|
export async function deleteEndpoint(id: EnvironmentId) {
|
|
try {
|
|
await axios.delete(buildUrl(id));
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function updatePoolAccess(
|
|
id: EnvironmentId,
|
|
resourcePool: string,
|
|
usersToAdd: UserId[],
|
|
teamsToAdd: TeamId[],
|
|
usersToRemove: UserId[],
|
|
teamsToRemove: TeamId[]
|
|
) {
|
|
try {
|
|
await axios.put<void>(`${buildUrl(id, 'pools')}/${resourcePool}/access`, {
|
|
usersToAdd,
|
|
teamsToAdd,
|
|
usersToRemove,
|
|
teamsToRemove,
|
|
});
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function forceUpdateService(
|
|
id: EnvironmentId,
|
|
serviceID: string,
|
|
pullImage: boolean
|
|
) {
|
|
try {
|
|
await axios.put(buildUrl(id, 'forceupdateservice'), {
|
|
serviceID,
|
|
pullImage,
|
|
});
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function updateSettings(
|
|
id: EnvironmentId,
|
|
settings: EnvironmentSettings
|
|
) {
|
|
try {
|
|
await axios.put(buildUrl(id, 'settings'), settings);
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error);
|
|
}
|
|
}
|
|
|
|
export async function trustEndpoint(id: EnvironmentId) {
|
|
try {
|
|
const { data: endpoint } = await axios.put<Environment>(buildUrl(id), {
|
|
UserTrusted: true,
|
|
});
|
|
return endpoint;
|
|
} catch (e) {
|
|
throw parseAxiosError(e as Error, 'Unable to update environment');
|
|
}
|
|
}
|