48 lines
919 B
Go
48 lines
919 B
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/derailed/k9s/internal"
|
|
"github.com/derailed/k9s/internal/render"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
var (
|
|
_ Accessor = (*ScreenDump)(nil)
|
|
_ Nuker = (*ScreenDump)(nil)
|
|
)
|
|
|
|
// ScreenDump represents a scraped resources.
|
|
type ScreenDump struct {
|
|
NonResource
|
|
}
|
|
|
|
// Delete a ScreenDump.
|
|
func (d *ScreenDump) Delete(path string, cascade, force bool) error {
|
|
return os.Remove(path)
|
|
}
|
|
|
|
// List returns a collection of screen dumps.
|
|
func (d *ScreenDump) List(ctx context.Context, _ string) ([]runtime.Object, error) {
|
|
dir, ok := ctx.Value(internal.KeyDir).(string)
|
|
if !ok {
|
|
return nil, errors.New("no screendump dir found in context")
|
|
}
|
|
|
|
ff, err := ioutil.ReadDir(dir)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
oo := make([]runtime.Object, len(ff))
|
|
for i, f := range ff {
|
|
oo[i] = render.FileRes{File: f, Dir: dir}
|
|
}
|
|
|
|
return oo, nil
|
|
}
|