6673ae69b3
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
74 lines
1.2 KiB
CUE
74 lines
1.2 KiB
CUE
package file
|
|
|
|
import (
|
|
"strings"
|
|
"dagger.io/dagger"
|
|
"dagger.io/dagger/op"
|
|
)
|
|
|
|
#Create: {
|
|
filename: !=""
|
|
permissions: int | *0o644
|
|
contents: string | bytes
|
|
|
|
#up: [
|
|
op.#WriteFile & {dest: filename, content: contents, mode: permissions},
|
|
]
|
|
}
|
|
|
|
#Append: {
|
|
filename: !=""
|
|
permissions: int | *0o644
|
|
contents: string | bytes
|
|
from: dagger.#Artifact
|
|
|
|
orig: (#read & {path: filename, "from": from}).data
|
|
|
|
#up: [
|
|
op.#WriteFile & {dest: filename, content: "\(orig)\(contents)", mode: permissions},
|
|
]
|
|
}
|
|
|
|
#Read: {
|
|
filename: !=""
|
|
from: dagger.#Artifact
|
|
contents: (#read & {path: filename, "from": from}).data
|
|
}
|
|
|
|
#read: {
|
|
path: !=""
|
|
from: dagger.#Artifact
|
|
data: {
|
|
string
|
|
#up: [
|
|
op.#Load & {"from": from},
|
|
op.#Export & {source: path},
|
|
]
|
|
}
|
|
}
|
|
|
|
#Glob: {
|
|
glob: !=""
|
|
filenames: [...string]
|
|
from: dagger.#Artifact
|
|
files: (_#glob & {"glob": glob, "from": from}).data
|
|
// trim suffix because ls always ends with newline
|
|
filenames: strings.Split(strings.TrimSuffix(files, "\n"), "\n")
|
|
}
|
|
|
|
_#glob: {
|
|
glob: !=""
|
|
from: dagger.#Artifact
|
|
data: {
|
|
string
|
|
_tmppath: "/tmp/ls.out"
|
|
#up: [
|
|
op.#Load & {"from": from},
|
|
op.#Exec & {
|
|
args: ["sh", "-c", "ls \(glob) > \(_tmppath)"]
|
|
},
|
|
op.#Export & {source: _tmppath},
|
|
]
|
|
}
|
|
}
|