mirror of https://github.com/portainer/portainer
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
import axios, { parseAxiosError } from '@/portainer/services/axios';
|
|
import {
|
|
mutationOptions,
|
|
withError,
|
|
withInvalidate,
|
|
} from '@/react-tools/react-query';
|
|
|
|
import { buildDockerProxyUrl } from '../../proxy/queries/buildDockerProxyUrl';
|
|
import { withAgentTargetHeader } from '../../proxy/queries/utils';
|
|
import { ContainerId } from '../../containers/types';
|
|
import { NetworkId } from '../types';
|
|
|
|
import { queryKeys } from './queryKeys';
|
|
|
|
export function useDisconnectContainer({
|
|
environmentId,
|
|
networkId,
|
|
}: {
|
|
environmentId: EnvironmentId;
|
|
networkId: NetworkId;
|
|
}) {
|
|
const client = useQueryClient();
|
|
|
|
return useMutation(
|
|
({
|
|
containerId,
|
|
nodeName,
|
|
}: {
|
|
containerId: ContainerId;
|
|
nodeName?: string;
|
|
}) => disconnectContainer(environmentId, networkId, containerId, nodeName),
|
|
mutationOptions(
|
|
withInvalidate(client, [queryKeys.item(environmentId, networkId)]),
|
|
withError('Unable to disconnect container from network')
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Raw docker API proxy
|
|
* @param environmentId
|
|
* @param networkId
|
|
* @param containerId
|
|
* @returns
|
|
*/
|
|
export async function disconnectContainer(
|
|
environmentId: EnvironmentId,
|
|
networkId: NetworkId,
|
|
containerId: ContainerId,
|
|
nodeName?: string
|
|
) {
|
|
try {
|
|
await axios.post(
|
|
buildDockerProxyUrl(environmentId, 'networks', networkId, 'disconnect'),
|
|
{
|
|
Container: containerId,
|
|
Force: false,
|
|
},
|
|
{ headers: { ...withAgentTargetHeader(nodeName) } }
|
|
);
|
|
return { networkId, environmentId };
|
|
} catch (err) {
|
|
throw parseAxiosError(err, 'Unable to disconnect container from network');
|
|
}
|
|
}
|