Podman Desktop is organized so that you can modularly add new functionality in the form of "extensions" as well as the corresponding extension-api
. This allows you to communicate with Podman Desktop without having to know the internal-workings. You look for the API call and Podman Desktop will do the rest.
Bundled extensions are located in the /extensions
folder.
When creating a new extension, import the extension API: import * as extensionApi from '@podman-desktop/api';
All functionality with Podman Desktop is communicated through the extension-api
. The API is located here.
When loading an extension, Podman Desktop will:
- Search and load the JavaScript file specified in
main
entry of thepackage.json
file in the extension directory (typicallyextension.js
). - Run the exported
activate
function.
When unloading an extension, Podman Desktop will:
- Run the (optional) exported
deactivate
function. - Dispose of any resources that have been added to
extensionContext.subscriptions
, seedeactivateExtension
in extension-loader.ts.
This is an example extensions/foobar/src/extensions.ts
file with the basic activate
and deactivate
functionality:
import * as extensionApi from '@podman-desktop/api';
// Activate the extension asynchronously
export async function activate(extensionContext: extensionApi.ExtensionContext): Promise<void> {
// Create a provider with an example name, ID and icon
const provider = extensionApi.provider.createProvider({
name: 'FooBar',
id: 'foobar',
status: 'unknown',
images: {
icon: './icon.png',
logo: './icon.png',
},
});
// Push the new provider to Podman Desktop
extensionContext.subscriptions.push(provider);
}
// Deactivate the extension
export function deactivate(): void {
console.log('stopping FooBar extension');
}
Podman Desktop runs each provider via series of statuses from extension-api.
export type ProviderStatus =
| 'not-installed'
| 'installed'
| 'configured'
| 'ready'
| 'started'
| 'stopped'
| 'starting'
| 'stopping'
| 'error'
| 'unknown';
ProviderStatus
supplies information to the main Provider page detailing whether or not that Provider is installed, ready, started, stopped, etc.
This can be updated throughout your extension by calling for example: provider.updateStatus('installed')
. Podman Desktop will show the status on the main screen.
NOTE: ProviderStatus is for information purposes only and can be used from within the extension to keep track if
activate()
anddeactivate()
are working correctly.
export type ProviderConnectionStatus = 'started' | 'stopped' | 'starting' | 'stopping' | 'unknown';
NOTE: The
unknown
status is unique as it will not show in the extension section of Podman Desktop, it will also not be accessible via API calls. Unknown statuses typically happen when Podman Desktop is unable to load the extension.
ProviderConnectionStatus
is the main "Lifecycle" of your extension. The status is updated automatically by Podman Desktop and reflected within the provider.
Upon a successful start up via the activate
function within your extension, ProviderConnectionStatus
will be reflected as 'started'.
ProviderConnectionStatus
statuses are used in two areas, extension-loader.ts and tray-menu.ts:
extension-loader.ts
: Attempts to load the extension and sets the status accordingly (eitherstarted
,stopped
,starting
orstopping
). If an unknown error has occurred, the status is set tounknown
.extension-loader.ts
also sends an API call to Podman Desktop to update the UI of the extension.tray-menu.ts
: IfextensionApi.tray.registerMenuItem(item);
API call has been used, a tray menu of the extension will be created. When created, Podman Desktop will use theProviderConnectionStatus
to indicate the status within the tray menu.
Declare commands using contributes
section of package.json file.
"contributes": {
"commands": [
{
"command": "my.command",
"title": "This is my command",
"category": "Optional category to prefix title",
"enablement": "myProperty === myValue"
},
],
}
If optional enablement
property evaluates to false, command palette will not display this command.
To register the callback of the command, use the following code:
import * as extensionApi from '@podman-desktop/api';
extensionContext.subscriptions.push(extensionApi.commands.registerCommand('my.command', async () => {
// callback of your command
await extensionApi.window.showInformationMessage('Clicked on my command');
});
);
The extension "hooks" into the Podman Desktop UI by different means:
- by registering the extension as a specific provider (authentication, registry, kubernetes, containers, cli tool, etc),
- by registering to specific events (with functions starting with
onDid...
), - by adding entries to menus (tray menu, status bar, ),
- by adding fields to the configuration panel,
- by watching files in the filesystem.
When the extension code is accessed through these different registrations, the extension can use utility functions provided by the API:
- to get values of configuraton fields,
- to interact with the user, through input boxes, quick picks,
- to display information/warning/error messages and notifications to the user,
- to get information about the environment (OS, telemetry, system clipboard),
- to execute process in the system,
- to send data to the telemetry,
- to set data in the context, which is propagated in the UI.
Sometimes you'll need to add new functionality to the API in order to make an internal change within Podman Desktop. An example would be a new UI/UX component that happens within the renderer, you'd need to expand the API in order to make that change to Podman Desktop's inner-workings.
In this example, we'll add a new function to simply display: "hello world" in the console.
- Add the new function to
/packages/extension-api/src/extension-api.d.ts
, under a namespace. This will make it accessible within the API when it's being called within your extension:
export namespace foobar {
// ...
export function hello(input: string): void;
}
- The
packages/main/src/plugin/extension-loader.ts
acts as an extension loader that defines all the actions needed by the API. Modify it to add the main functionality ofhello()
under thefoobar
namespace const:
// It's recommended you define a class that you retrieve from a separate file
// see Podman and Kubernetes examples for implementation.
// Add the class to the constructor of the extension loader
import type { FoobarClient } from './foobar';
export class ExtensionLoader {
// ...
constructor(
private foobarClient: FoobarClient,
// ...
) {}
// ..
}
// Initialize the 'foobar' client
const foobarClient = this.foobarClient;
// The "containerDesktopAPI.foobar" call is the namespace you previously defined within `extension-api.d.ts`
const foobar: typeof containerDesktopAPI.foobar = {
// Define the function that you are implementing and call the function from the class you created.
hello(input: string): void => {
return foobarClient.hello(input);
},
};
// Add 'foobar' to the list of configurations being returned by `return <typeof containerDesktopAPI>`
return <typeof containerDesktopAPI>{
foobar
};
- The above code won't work until we've created the class! So let's create a
packages/main/src/plugin/foobar-client.ts
file with the functionality:
export class FoobarClient {
hello(input: string) {
console.log('hello ' + input);
}
}
- An instance of this class needs to be created and passed to the constructor of the
ExtensionLoader
, inpackages/main/src/plugin/index.ts
:
const foobarClient = new FoobarClient();
this.extensionLoader = new ExtensionLoader(
/* ... */
foobarClient,
);
- In package.json you can register some setting through the configuration settings property
For example if you contribute a property named podman.binary.path
it will display Path
in Podman Desktop UI setting, and if you change it to podman.binary.pathToBinary
it becomes Path To Binary
in the title.
"configuration": {
"title": "Podman",
"properties": {
"podman.binary.path": {
"name": "Path to Podman Binary",
"type": "string",
"format": "file",
"default": "",
"description": "Custom path to Podman binary (Default is blank)"
},
- Last step! Call the new API call to the extension you are implementing from your extension:
export async function activate(extensionContext: extensionApi.ExtensionContext): Promise<void> {
// Define the provider
const provider = extensionApi.provider.createProvider({
name: 'FooBar',
id: 'foobar',
status: 'unknown',
images: {
icon: './icon.png',
logo: './icon.png',
},
});
// Push the new provider to Podman Desktop
extensionContext.subscriptions.push(provider);
// Call the "hello world" function that'll output to the console
extensionContext.foobar.hello('world');
}