2018-10-07 04:33:39 +02:00
|
|
|
package html
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-10-14 19:06:27 +02:00
|
|
|
|
2018-10-07 04:33:39 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
|
|
)
|
|
|
|
|
2018-10-14 19:06:27 +02:00
|
|
|
// InnerTextAll returns an array of inner text of matched elements.
|
|
|
|
// @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.
|
2018-10-07 04:33:39 +02:00
|
|
|
func InnerTextAll(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2018-10-09 02:20:40 +02:00
|
|
|
err = core.ValidateType(args[0], core.HTMLDocumentType, core.HTMLElementType)
|
2018-10-07 04:33:39 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = core.ValidateType(args[1], core.StringType)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2018-10-09 02:20:40 +02:00
|
|
|
doc := args[0].(values.HTMLNode)
|
2018-10-07 04:33:39 +02:00
|
|
|
selector := args[1].(values.String)
|
|
|
|
|
|
|
|
return doc.InnerTextBySelectorAll(selector), nil
|
|
|
|
}
|