2018-10-06 22:33:39 -04:00
|
|
|
package html
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-10-14 20:06:27 +03:00
|
|
|
|
2019-02-19 18:10:18 -05:00
|
|
|
"github.com/MontFerret/ferret/pkg/drivers"
|
2018-10-06 22:33:39 -04:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
2019-02-13 12:31:18 -05:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
2018-10-06 22:33:39 -04:00
|
|
|
)
|
|
|
|
|
2019-09-07 14:03:17 -04:00
|
|
|
// INNER_TEXT_ALL returns an array of inner text of matched elements.
|
2018-10-14 20:06:27 +03:00
|
|
|
// @param doc (HTMLDocument|HTMLElement) - Parent document or element.
|
|
|
|
// @param selector (String) - String of CSS selector.
|
|
|
|
// @returns (String) - An array of inner text if any element found, otherwise empty array.
|
2019-07-11 17:16:34 -04:00
|
|
|
func GetInnerTextAll(ctx context.Context, args ...core.Value) (core.Value, error) {
|
2018-10-06 22:33:39 -04:00
|
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-02-13 12:31:18 -05:00
|
|
|
err = core.ValidateType(args[1], types.String)
|
2018-10-06 22:33:39 -04:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-06-19 17:58:56 -04:00
|
|
|
el, err := drivers.ToElement(args[0])
|
2019-02-19 18:10:18 -05:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2018-10-06 22:33:39 -04:00
|
|
|
selector := args[1].(values.String)
|
|
|
|
|
2019-07-11 17:16:34 -04:00
|
|
|
return el.GetInnerTextBySelectorAll(ctx, selector)
|
2018-10-06 22:33:39 -04:00
|
|
|
}
|