summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/diff.go
blob: 79b0df8c999090214fb4c0b57f5f31cb0898a2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package images

import (
	"context"
	"net/http"

	"github.com/containers/podman/v3/pkg/bindings"
	"github.com/containers/storage/pkg/archive"
)

// Diff provides the changes between two container layers
func Diff(ctx context.Context, nameOrID string, options *DiffOptions) ([]archive.Change, error) {
	if options == nil {
		options = new(DiffOptions)
	}
	_ = options
	conn, err := bindings.GetClient(ctx)
	if err != nil {
		return nil, err
	}

	response, err := conn.DoRequest(nil, http.MethodGet, "/images/%s/changes", nil, nil, nameOrID)
	if err != nil {
		return nil, err
	}
	var changes []archive.Change
	return changes, response.Process(&changes)
}