mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
1af8b37a0f
* New type system * Fixed dot notation for HTML elements
108 lines
2.2 KiB
Go
108 lines
2.2 KiB
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/collections"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// Pagination creates an iterator that goes through pages using CSS selector.
|
|
// The iterator starts from the current page i.e. it does not change the page on 1st iteration.
|
|
// That allows you to keep scraping logic inside FOR loop.
|
|
// @param doc (Document) - Target document.
|
|
// @param selector (String) - CSS selector for a pagination on the page.
|
|
func Pagination(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc, ok := args[0].(values.DHTMLDocument)
|
|
|
|
if !ok {
|
|
return values.False, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
err = core.ValidateType(args[1], types.String)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
selector := args[1].(values.String)
|
|
|
|
return &Paging{doc, selector}, nil
|
|
}
|
|
|
|
var PagingType = core.NewType("Paging")
|
|
|
|
type (
|
|
Paging struct {
|
|
document values.DHTMLDocument
|
|
selector values.String
|
|
}
|
|
|
|
PagingIterator struct {
|
|
document values.DHTMLDocument
|
|
selector values.String
|
|
pos values.Int
|
|
}
|
|
)
|
|
|
|
func (p *Paging) MarshalJSON() ([]byte, error) {
|
|
return nil, core.ErrInvalidOperation
|
|
}
|
|
|
|
func (p *Paging) Type() core.Type {
|
|
return PagingType
|
|
}
|
|
|
|
func (p *Paging) String() string {
|
|
return PagingType.String()
|
|
}
|
|
|
|
func (p *Paging) Compare(_ core.Value) int64 {
|
|
return 1
|
|
}
|
|
|
|
func (p *Paging) Unwrap() interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (p *Paging) Hash() uint64 {
|
|
return 0
|
|
}
|
|
|
|
func (p *Paging) Copy() core.Value {
|
|
return values.None
|
|
}
|
|
|
|
func (p *Paging) Iterate(_ context.Context) (collections.CollectionIterator, error) {
|
|
return &PagingIterator{p.document, p.selector, -1}, nil
|
|
}
|
|
|
|
func (i *PagingIterator) Next(_ context.Context) (core.Value, core.Value, error) {
|
|
i.pos++
|
|
|
|
if i.pos == 0 {
|
|
return values.ZeroInt, values.ZeroInt, nil
|
|
}
|
|
|
|
clicked, err := i.document.ClickBySelector(i.selector)
|
|
|
|
if err != nil {
|
|
return values.None, values.None, err
|
|
}
|
|
|
|
if clicked {
|
|
return i.pos, i.pos, nil
|
|
}
|
|
|
|
// terminate
|
|
return values.None, values.None, nil
|
|
}
|