main.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "net/http"
  6. "regexp"
  7. "github.com/PuerkitoBio/goquery"
  8. )
  9. func main() {
  10. // Wordpress
  11. // url := "https://addand.kr/shop/new-%ed%95%9c-%ea%b6%8c%ec%9c%bc%eb%a1%9c-%eb%81%9d%eb%82%98%eb%8a%94-%eb%85%b8%ec%85%98/"
  12. url := "https://www.cafe24h.com.vn/ca-phe-truyen-thong/"
  13. // Send an HTTP GET request to the URL
  14. response, err := http.Get(url)
  15. if err != nil {
  16. log.Fatal(err)
  17. }
  18. defer response.Body.Close()
  19. doc, err := goquery.NewDocumentFromReader(response.Body)
  20. if err != nil {
  21. log.Fatal(err)
  22. }
  23. // These will the value of PDP parsing structures
  24. cItemName := ".section-header>.section-title"
  25. cShortDesc := ".content-detail.col-md-8 p"
  26. cItemCategory := ".container>.section-header>.section-title"
  27. cItemTags := ".tagged_as"
  28. cItemImages := ".product-img a"
  29. cItemTextDesc := ".content-detail.col-md-8"
  30. // // cItemOptions := "select#rating option"
  31. // cItemPrice := ".summary>.price .woocommerce-Price-amount.amount"
  32. cEmail := "footer"
  33. cRating := ".star-rating .rating"
  34. cAuthor := ".product-brand a"
  35. cVideo := "iframe"
  36. // Use the Find method to select elements that match the css selector
  37. // doc.Find(cItemName).Each(func(index int, element *goquery.Selection) {
  38. // // Extract the text associated with the selected element
  39. // text := element.Text()
  40. // fmt.Printf("Text associated with %s: %s\n", cItemName, text)
  41. // })
  42. fmt.Println("ItemName: ", doc.Find(cItemName).First().Text())
  43. fmt.Println("ShortDesc: ", doc.Find(cShortDesc).First().Text())
  44. fmt.Println("ItemCategory: ", doc.Find(cItemCategory).First().Text())
  45. fmt.Println("ItemTags: ", doc.Find(cItemTags).First().Text())
  46. fmt.Println("TextDesc: ", doc.Find(cItemTextDesc).First().Text())
  47. // fmt.Println("ItemPice: ", doc.Find(cItemPrice).First().Text())
  48. fmt.Println("Email: ", findEmail(doc.Find(cEmail).First().Text(), ""))
  49. fmt.Println("Rating : ", doc.Find(cRating).First().Text())
  50. doc.Find("link ~ meta").Each(func(i int, s *goquery.Selection) {
  51. v, _ := s.Attr("property")
  52. fmt.Println(v, " : ", s.AttrOr("content", ""))
  53. })
  54. fmt.Println("Author : ")
  55. doc.Find(cAuthor).Each(func(index int, element *goquery.Selection) {
  56. link, _ := element.Attr("href")
  57. fmt.Println("====================")
  58. fmt.Println("AuthorName: ", element.Text())
  59. fmt.Printf("AuthorLink: %s\n", link)
  60. })
  61. vdos := []string{}
  62. doc.Find(cVideo).Each(func(index int, element *goquery.Selection) {
  63. embed, _ := element.Attr("src")
  64. vdos = append(vdos, embed)
  65. })
  66. fmt.Printf("ItemVideos: %s\n", vdos)
  67. imgs := []string{}
  68. doc.Find(cItemImages).Each(func(index int, element *goquery.Selection) {
  69. img, _ := element.Attr("href")
  70. imgs = append(imgs, img)
  71. })
  72. fmt.Println("ItemImages: ", imgs)
  73. }
  74. func findEmail(body string, doms string) (emails []string) {
  75. r, _ := regexp.Compile(`[a-zA-Z0-9_+&*-]+(?:\.[a-zA-Z0-9_+&*-]+)*@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,24}`)
  76. emails = append(emails, r.FindStringSubmatch(body)...)
  77. return
  78. }