2018-10-06 22:33:39 -04:00
|
|
|
package html
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns inner HTML string of a matched element
|
2018-10-08 20:20:40 -04:00
|
|
|
* @param doc (Document|Element) - Parent document or element.
|
2018-10-06 22:33:39 -04:00
|
|
|
* @param selector (String) - String of CSS selector.
|
2018-10-08 20:20:40 -04:00
|
|
|
* @returns (String) - Inner HTML string if an element found, otherwise empty string.
|
2018-10-06 22:33:39 -04:00
|
|
|
*/
|
|
|
|
func InnerHTML(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.EmptyString, err
|
|
|
|
}
|
|
|
|
|
2018-10-08 20:20:40 -04:00
|
|
|
err = core.ValidateType(args[0], core.HTMLDocumentType, core.HTMLElementType)
|
2018-10-06 22:33:39 -04:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = core.ValidateType(args[1], core.StringType)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2018-10-08 20:20:40 -04:00
|
|
|
node := args[0].(values.HTMLNode)
|
2018-10-06 22:33:39 -04:00
|
|
|
selector := args[1].(values.String)
|
|
|
|
|
2018-10-08 20:20:40 -04:00
|
|
|
return node.InnerHTMLBySelector(selector), nil
|
2018-10-06 22:33:39 -04:00
|
|
|
}
|