chromedp/eval.go

106 lines
3.1 KiB
Go
Raw Normal View History

package chromedp
import (
"context"
"encoding/json"
2017-12-27 02:30:28 +00:00
"github.com/chromedp/cdproto/cdp"
2018-05-18 22:03:47 +00:00
"github.com/chromedp/cdproto/runtime"
)
// Evaluate is an action to evaluate the Javascript expression, unmarshaling
// the result of the script evaluation to res.
//
// When res is a type other than *[]byte, or **chromedp/cdp/runtime.RemoteObject,
// then the result of the script evaluation will be returned "by value" (ie,
// JSON-encoded), and subsequently an attempt will be made to json.Unmarshal
// the script result to res.
//
// Otherwise, when res is a *[]byte, the raw JSON-encoded value of the script
// result will be placed in res. Similarly, if res is a *runtime.RemoteObject,
// then res will be set to the low-level protocol type, and no attempt will be
// made to convert the result.
//
// Note: any exception encountered will be returned as an error.
func Evaluate(expression string, res interface{}, opts ...EvaluateOption) Action {
if res == nil {
panic("res cannot be nil")
}
return ActionFunc(func(ctx context.Context, h cdp.Executor) error {
// set up parameters
2018-05-18 22:03:47 +00:00
p := runtime.Evaluate(expression)
switch res.(type) {
2018-05-18 22:03:47 +00:00
case **runtime.RemoteObject:
default:
p = p.WithReturnByValue(true)
}
// apply opts
for _, o := range opts {
p = o(p)
}
// evaluate
v, exp, err := p.Do(ctx, h)
if err != nil {
return err
}
if exp != nil {
return exp
}
switch x := res.(type) {
2018-05-18 22:03:47 +00:00
case **runtime.RemoteObject:
*x = v
return nil
case *[]byte:
*x = []byte(v.Value)
return nil
}
// unmarshal
return json.Unmarshal(v.Value, res)
})
}
// EvaluateAsDevTools is an action that evaluates a Javascript expression as
// Chrome DevTools would, evaluating the expression in the "console" context,
// and making the Command Line API available to the script.
//
// Note: this should not be used with untrusted Javascript.
func EvaluateAsDevTools(expression string, res interface{}, opts ...EvaluateOption) Action {
return Evaluate(expression, res, append(opts, EvalObjectGroup("console"), EvalWithCommandLineAPI)...)
}
2017-03-02 02:53:47 +00:00
// EvaluateOption is the type for script evaluation options.
2018-05-18 22:03:47 +00:00
type EvaluateOption func(*runtime.EvaluateParams) *runtime.EvaluateParams
// EvalObjectGroup is a evaluate option to set the object group.
func EvalObjectGroup(objectGroup string) EvaluateOption {
2018-05-18 22:03:47 +00:00
return func(p *runtime.EvaluateParams) *runtime.EvaluateParams {
return p.WithObjectGroup(objectGroup)
}
}
// EvalWithCommandLineAPI is an evaluate option to make the DevTools Command
// Line API available to the evaluated script.
//
// Note: this should not be used with untrusted Javascript.
2018-05-18 22:03:47 +00:00
func EvalWithCommandLineAPI(p *runtime.EvaluateParams) *runtime.EvaluateParams {
return p.WithIncludeCommandLineAPI(true)
}
// EvalIgnoreExceptions is a evaluate option that will cause script evaluation
// to ignore exceptions.
2018-05-18 22:03:47 +00:00
func EvalIgnoreExceptions(p *runtime.EvaluateParams) *runtime.EvaluateParams {
return p.WithSilent(true)
}
// EvalAsValue is a evaluate option that will cause the evaluated script to
// encode the result of the expression as a JSON-encoded value.
2018-05-18 22:03:47 +00:00
func EvalAsValue(p *runtime.EvaluateParams) *runtime.EvaluateParams {
return p.WithReturnByValue(true)
}