mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
38 lines
858 B
Go
38 lines
858 B
Go
package fs
|
|
|
|
import (
|
|
"context"
|
|
"io/ioutil"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// Read reads from a given file.
|
|
// @params path (String) - path to file to read from.
|
|
// @returns data (Binary) - the read file in binary format.
|
|
func Read(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, 1)
|
|
|
|
if err != nil {
|
|
return values.None, core.Error(err, "validate arguments number")
|
|
}
|
|
|
|
err = core.ValidateType(args[0], types.String)
|
|
|
|
if err != nil {
|
|
return values.None, core.Error(err, "validate [0] argument")
|
|
}
|
|
|
|
path := args[0].String()
|
|
|
|
data, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
return values.None, core.Error(err, "read file")
|
|
}
|
|
|
|
return values.NewBinary(data), nil
|
|
}
|