本文整理汇总了Golang中github.com/zackshank/nookscraper/parser.NodeParser类的典型用法代码示例。如果您正苦于以下问题:Golang NodeParser类的具体用法?Golang NodeParser怎么用?Golang NodeParser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了NodeParser类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: parseImage
func (vp *VillagerParser) parseImage(root *html.Node, filename string) bool {
np := parser.NodeParser{}
found, img := np.Find(root, "tag", "img")
if !found {
return false
}
ok, attr := np.GetAttribute(img, "src")
if !ok {
return false
}
resp, err := http.Get(fmt.Sprint(SiteRoot, attr.Val))
if err != nil {
return false
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return false
}
err = ioutil.WriteFile(fmt.Sprint(ImgDir, "/villagers/", filename), body, 0644)
if err != nil {
return false
}
return true
}
示例2: FindVillagerListNode
func FindVillagerListNode(r *http.Response) *html.Node {
np := parser.NodeParser{}
doc, err := html.Parse(r.Body)
if err != nil {
fmt.Println("There was an error parsing the response: ", err.Error())
return nil
}
_, mc := np.Find(doc, "id", "mw-content-text")
_, vl := np.Find(mc, "tag", "table")
return vl
}
示例3: parsePersonality
func (vp *VillagerParser) parsePersonality(td *html.Node) (bool, string) {
np := parser.NodeParser{}
found, anode := np.Find(td, "tag", "a")
if !found {
return false, ""
}
textnode := anode.FirstChild
if textnode.Type != html.TextNode {
return false, ""
}
return true, string(textnode.Data)
}
示例4: parseJapaneseName
func (vp *VillagerParser) parseJapaneseName(td *html.Node) (bool, string) {
np := parser.NodeParser{}
found, namenode := np.Find(td, "tag", "b")
if !found {
return false, ""
}
textnode := namenode.FirstChild
if textnode.Type != html.TextNode {
return false, ""
}
return true, string(textnode.Data)
}
示例5: parseAdditionalInformation
func (vp *VillagerParser) parseAdditionalInformation(url string, v *Villager, c chan bool) {
np := parser.NodeParser{}
// Get page
resp, err := http.Get(url)
if err != nil {
c <- false
return
}
defer resp.Body.Close()
doc, err := html.Parse(resp.Body)
if err != nil {
c <- false
return
}
// Find Table with Addt. Info
_, mw := np.Find(doc, "id", "mw-content-text")
_, table := np.Find(mw, "tag", "table")
_, table = np.FindSibling(table, "tag", "table")
// Attempt to retrieve birthday
found, birthday := vp.parseBirthday(table)
if found {
v.Birthday = birthday
}
// Attemt to retrieve image
found = vp.parseImage(table, fmt.Sprint(v.Name, ".png"))
c <- true
}
示例6: parseGames
func (vp *VillagerParser) parseGames(td *html.Node) (bool, []int) {
np := parser.NodeParser{}
var g []int
for i := 1; i <= 8; i++ {
found, _ := np.Find(td, "tag", "a")
if found {
g = append(g, i)
}
if i < 8 {
var ok bool
ok, td = np.FindSibling(td, "tag", "td")
if !ok {
return false, g
}
}
}
return true, g
}
示例7: parseBirthday
func (vp *VillagerParser) parseBirthday(root *html.Node) (bool, *time.Time) {
np := parser.NodeParser{}
found, th := np.Find(root, "html", "Birthday")
if !found {
return false, nil
}
_, td := np.FindSibling(th, "tag", "td")
_, anode := np.Find(td, "tag", "a")
textelement := anode.FirstChild
layout := "January 2"
t, err := time.Parse(layout, string(textelement.Data))
if err != nil {
return false, nil
}
fmt.Printf("Found Birthday: %v\n", t)
return true, &t
}
示例8: Parse
func (vp *VillagerParser) Parse(tr *html.Node) (bool, *Villager) {
np := parser.NodeParser{}
ch := make(chan bool)
v := Villager{}
// Start Location
found, td := np.Find(tr, "tag", "th")
if !found {
fmt.Println("Could not parse Villager")
return false, nil
}
// Get name and start request to get the rest of the information
found, td = np.FindSibling(td, "tag", "th")
if !found {
fmt.Println("Could not find villager name")
return false, nil
}
// Get url to next location
ok, anode := np.Find(td, "tag", "a")
if ok {
_, attr := np.GetAttribute(anode, "href")
url := fmt.Sprint(SiteRoot, attr.Val)
go vp.parseAdditionalInformation(url, &v, ch)
}
found, v.Name = vp.parseName(td)
if !found {
fmt.Println("Could not find villager name")
return false, nil
}
// Get JapaneseName
found, td = np.FindSibling(td, "tag", "td")
if !found {
fmt.Println("Could not find villager japanese name")
return false, nil
}
found, v.JapaneseName = vp.parseJapaneseName(td)
if !found {
fmt.Println("Could not find villager japanese name")
return false, nil
}
// Get Species
found, td = np.FindSibling(td, "tag", "td")
if !found {
fmt.Println("Could not find villager species")
return false, nil
}
found, v.Species = vp.parseSpecies(td)
if !found {
fmt.Println("Could not find villager species")
return false, nil
}
// Get Gender
found, td = np.FindSibling(td, "tag", "td")
if !found {
fmt.Println("Could not find villager gender")
return false, nil
}
found, v.Gender = vp.parseGender(td)
if !found {
fmt.Println("Could not find villager gender")
return false, nil
}
// Get Personality
found, td = np.FindSibling(td, "tag", "td")
if !found {
fmt.Println("Could not find villager personality")
return false, nil
}
found, v.Personality = vp.parsePersonality(td)
if !found {
fmt.Println("Could not find villager personality")
return false, nil
}
// Get Games
found, td = np.FindSibling(td, "tag", "td")
if !found {
fmt.Println("Could not find villager games")
return false, nil
}
found, v.Games = vp.parseGames(td)
if !found {
fmt.Println("Could not find villager games")
return false, nil
}
//.........这里部分代码省略.........