Browse Source

Fixed emails being saved to a wrong file under query=everything; improved page saving process; fixed pages being saved not considering the actual setting; Added non-link resolving variation of FindPageLinks; Added query=archive functionality; working directory is now an actual working directory instead an executables directory

master v0.3.5
parent
commit
722f3fb536
  1. 17
      README.md
  2. 1
      src/config/config.go
  3. 58
      src/main.go
  4. 90
      src/web/audio.go
  5. 107
      src/web/documents.go
  6. 38
      src/web/extentions.go
  7. 90
      src/web/images.go
  8. 84
      src/web/text.go
  9. 90
      src/web/videos.go
  10. 167
      src/worker/worker.go

17
README.md

@ -4,9 +4,9 @@
A simple HTML web spider with no dependencies. It is possible to search for pages with a text on them or for the text itself, extract images, video, audio and save pages that satisfy the criteria along the way. A simple HTML web spider with no dependencies. It is possible to search for pages with a text on them or for the text itself, extract images, video, audio and save pages that satisfy the criteria along the way.
## Configuration ## Configuration Overview
The flow of work fully depends on the configuration file. By default `conf.json` is used as a configuration file, but the name can be changed via `-conf` flag. The default configuration is embedded in the program so on the first launch or by simply deleting the file, a new `conf.json` will be created in the same directory as the executable itself unless the `-wdir` (working directory) flag is set to some other value. To see al available flags run `wecr -h`. The flow of work fully depends on the configuration file. By default `conf.json` is used as a configuration file, but the name can be changed via `-conf` flag. The default configuration is embedded in the program so on the first launch or by simply deleting the file, a new `conf.json` will be created in the working directory unless the `-wdir` (working directory) flag is set to some other value, in which case it has a bigger importance. To see all available flags run `wecr -h`.
The configuration is split into different branches like `requests` (how requests are made, ie: request timeout, wait time, user agent), `logging` (use logs, output to a file), `save` (output file|directory, save pages or not) or `search` (use regexp, query string) each of which contain tweakable parameters. There are global ones as well such as `workers` (working threads that make requests in parallel) and `depth` (literally, how deep the recursive search should go). The names are simple and self-explanatory so no attribute-by-attribute explanation needed for most of them. The configuration is split into different branches like `requests` (how requests are made, ie: request timeout, wait time, user agent), `logging` (use logs, output to a file), `save` (output file|directory, save pages or not) or `search` (use regexp, query string) each of which contain tweakable parameters. There are global ones as well such as `workers` (working threads that make requests in parallel) and `depth` (literally, how deep the recursive search should go). The names are simple and self-explanatory so no attribute-by-attribute explanation needed for most of them.
@ -18,7 +18,7 @@ You can change search `query` at **runtime** via web dashboard if `launch_dashbo
### Search query ### Search query
There are some special `query` values: There are some special `query` values to control the flow of work:
- `email` - tells wecr to scrape email addresses and output to `output_file` - `email` - tells wecr to scrape email addresses and output to `output_file`
- `images` - find all images on pages and output to the corresponding directory in `output_dir` (**IMPORTANT**: set `content_fetch_timeout_ms` to `0` so the images (and other content below) load fully) - `images` - find all images on pages and output to the corresponding directory in `output_dir` (**IMPORTANT**: set `content_fetch_timeout_ms` to `0` so the images (and other content below) load fully)
@ -26,12 +26,13 @@ There are some special `query` values:
- `audio` - find and fetch files that look like audio - `audio` - find and fetch files that look like audio
- `documents` - find and fetch files that look like a document - `documents` - find and fetch files that look like a document
- `everything` - find and fetch images, audio, video, documents and email addresses - `everything` - find and fetch images, audio, video, documents and email addresses
- `archive` - no text to be searched, save every visited page
When `is_regexp` is enabled, the `query` is treated as a regexp string and pages will be scanned for matches that satisfy it. When `is_regexp` is enabled, the `query` is treated as a regexp string (in Go "flavor") and pages will be scanned for matches that satisfy it.
### Output ### Data Output
By default, if the query is not something of special values all the matches and other data will be outputted to `output.json` file as separate continuous JSON objects, but if `save_pages` is set to `true` and|or `query` is set to `images`, `videos`, `audio`, etc. - the additional contents will be put in the corresponding directories inside `output_dir`, which is neatly created by the executable's side. If the query is not something of special value, all text matches will be outputted to `found_text.json` file as separate continuous JSON objects in `output_dir`; if `save_pages` is set to `true` and|or `query` is set to `images`, `videos`, `audio`, etc. - the additional contents will be also put in the corresponding directories inside `output_dir`, which is neatly created in the working directory or, if `-wdir` flag is set - there. If `output_dir` is happened to be empty - contents will be outputted directly to the working directory.
The output almost certainly contains some duplicates and is not easy to work with programmatically, so you can use `-extractData` with the output JSON file argument (like `found_text.json`, which is the default output file name for simple text searches) to extract the actual data, filter out the duplicates and put each entry on its new line in a new text file. The output almost certainly contains some duplicates and is not easy to work with programmatically, so you can use `-extractData` with the output JSON file argument (like `found_text.json`, which is the default output file name for simple text searches) to extract the actual data, filter out the duplicates and put each entry on its new line in a new text file.
@ -43,7 +44,7 @@ Otherwise - `go build` in the `src` directory to build `wecr`. No dependencies.
## Examples ## Examples
See [page on my website](https://unbewohnte.su/wecr) for some basic examples. See [a page on my website](https://unbewohnte.su/wecr) for some basic examples.
Dump of a basic configuration: Dump of a basic configuration:
@ -87,4 +88,4 @@ Dump of a basic configuration:
``` ```
## License ## License
AGPLv3 wecr is distributed under AGPLv3 license

1
src/config/config.go

@ -31,6 +31,7 @@ const (
QueryEmail string = "email" QueryEmail string = "email"
QueryDocuments string = "documents" QueryDocuments string = "documents"
QueryEverything string = "everything" QueryEverything string = "everything"
QueryArchive string = "archive"
) )
const ( const (

58
src/main.go

@ -39,7 +39,7 @@ import (
"unbewohnte/wecr/worker" "unbewohnte/wecr/worker"
) )
const version = "v0.3.4" const version = "v0.3.5"
const ( const (
configFilename string = "conf.json" configFilename string = "conf.json"
@ -107,12 +107,12 @@ func init() {
if *wDir != "" { if *wDir != "" {
workingDirectory = *wDir workingDirectory = *wDir
} else { } else {
exePath, err := os.Executable() wdir, err := os.Getwd()
if err != nil { if err != nil {
logger.Error("Failed to determine executable's path: %s", err) logger.Error("Failed to determine working directory path: %s", err)
return return
} }
workingDirectory = filepath.Dir(exePath) workingDirectory = wdir
} }
logger.Info("Working in \"%s\"", workingDirectory) logger.Info("Working in \"%s\"", workingDirectory)
@ -294,6 +294,8 @@ func main() {
logger.Info("Looking for audio (%+s)", web.AudioExtentions) logger.Info("Looking for audio (%+s)", web.AudioExtentions)
case config.QueryDocuments: case config.QueryDocuments:
logger.Info("Looking for documents (%+s)", web.DocumentExtentions) logger.Info("Looking for documents (%+s)", web.DocumentExtentions)
case config.QueryArchive:
logger.Info("Archiving every visited page")
case config.QueryEverything: case config.QueryEverything:
logger.Info("Looking for email addresses, images, videos, audio and various documents (%+s - %+s - %+s - %+s)", logger.Info("Looking for email addresses, images, videos, audio and various documents (%+s - %+s - %+s - %+s)",
web.ImageExtentions, web.ImageExtentions,
@ -309,30 +311,6 @@ func main() {
} }
} }
// create and redirect logs if needed
if conf.Logging.OutputLogs {
if conf.Logging.LogsFile != "" {
// output logs to a file
logFile, err := os.Create(filepath.Join(workingDirectory, conf.Logging.LogsFile))
if err != nil {
logger.Error("Failed to create logs file: %s", err)
return
}
defer logFile.Close()
logger.Info("Outputting logs to %s", conf.Logging.LogsFile)
logger.SetOutput(logFile)
} else {
// output logs to stdout
logger.Info("Outputting logs to stdout")
logger.SetOutput(os.Stdout)
}
} else {
// no logging needed
logger.Info("No further logs will be outputted")
logger.SetOutput(nil)
}
// create visit queue file if not turned off // create visit queue file if not turned off
var visitQueueFile *os.File = nil var visitQueueFile *os.File = nil
if !conf.InMemoryVisitQueue { if !conf.InMemoryVisitQueue {
@ -401,6 +379,30 @@ func main() {
logger.Info("Launched dashboard at http://localhost:%d", conf.Dashboard.Port) logger.Info("Launched dashboard at http://localhost:%d", conf.Dashboard.Port)
} }
// create and redirect logs if needed
if conf.Logging.OutputLogs {
if conf.Logging.LogsFile != "" {
// output logs to a file
logFile, err := os.Create(filepath.Join(workingDirectory, conf.Logging.LogsFile))
if err != nil {
logger.Error("Failed to create logs file: %s", err)
return
}
defer logFile.Close()
logger.Info("Outputting logs to %s", conf.Logging.LogsFile)
logger.SetOutput(logFile)
} else {
// output logs to stdout
logger.Info("Outputting logs to stdout")
logger.SetOutput(os.Stdout)
}
} else {
// no logging needed
logger.Info("No further logs will be outputted")
logger.SetOutput(nil)
}
// launch concurrent scraping ! // launch concurrent scraping !
workerPool.Work() workerPool.Work()
logger.Info("Started scraping...") logger.Info("Started scraping...")

90
src/web/audio.go

@ -20,99 +20,25 @@ package web
import ( import (
"net/url" "net/url"
"strings"
) )
func HasAudioExtention(url string) bool {
for _, extention := range AudioExtentions {
if strings.HasSuffix(url, extention) {
return true
}
}
return false
}
// Tries to find audio URLs on the page // Tries to find audio URLs on the page
func FindPageAudio(pageBody []byte, from *url.URL) []string { func FindPageAudio(pageBody []byte, from url.URL) []url.URL {
var urls []string var urls []url.URL
// for every element that has "src" attribute // for every element that has "src" attribute
for _, match := range tagSrcRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageSrcLinks(pageBody, from) {
var linkStartIndex int if HasAudioExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasAudioExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// for every "a" element as well // for every "a" element as well
for _, match := range tagHrefRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageLinks(pageBody, from) {
var linkStartIndex int if HasAudioExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasAudioExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// return discovered mutual video urls
return urls return urls
} }

107
src/web/documents.go

@ -1,97 +1,42 @@
/*
Wecr - crawl the web for data
Copyright (C) 2023 Kasyanov Nikolay Alexeyevich (Unbewohnte)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package web package web
import ( import (
"net/url" "net/url"
"strings"
) )
func HasDocumentExtention(url string) bool {
for _, extention := range DocumentExtentions {
if strings.HasSuffix(url, extention) {
return true
}
}
return false
}
// Tries to find docs' URLs on the page // Tries to find docs' URLs on the page
func FindPageDocuments(pageBody []byte, from *url.URL) []string { func FindPageDocuments(pageBody []byte, from url.URL) []url.URL {
var urls []string var urls []url.URL
// for every element that has "src" attribute // for every element that has "src" attribute
for _, match := range tagSrcRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageSrcLinks(pageBody, from) {
var linkStartIndex int if HasDocumentExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasDocumentExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// for every "a" element as well // for every "a" element as well
for _, match := range tagHrefRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageLinks(pageBody, from) {
var linkStartIndex int if HasDocumentExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasDocumentExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }

38
src/web/extentions.go

@ -18,6 +18,8 @@
package web package web
import "strings"
var AudioExtentions = []string{ var AudioExtentions = []string{
".3gp", ".3gp",
".aa", ".aa",
@ -134,3 +136,39 @@ var DocumentExtentions = []string{
".otf", ".otf",
".exif", ".exif",
} }
func HasImageExtention(urlPath string) bool {
for _, extention := range ImageExtentions {
if strings.HasSuffix(urlPath, extention) {
return true
}
}
return false
}
func HasDocumentExtention(urlPath string) bool {
for _, extention := range DocumentExtentions {
if strings.HasSuffix(urlPath, extention) {
return true
}
}
return false
}
func HasVideoExtention(urlPath string) bool {
for _, extention := range VideoExtentions {
if strings.HasSuffix(urlPath, extention) {
return true
}
}
return false
}
func HasAudioExtention(urlPath string) bool {
for _, extention := range AudioExtentions {
if strings.HasSuffix(urlPath, extention) {
return true
}
}
return false
}

90
src/web/images.go

@ -20,99 +20,25 @@ package web
import ( import (
"net/url" "net/url"
"strings"
) )
func HasImageExtention(url string) bool {
for _, extention := range ImageExtentions {
if strings.HasSuffix(url, extention) {
return true
}
}
return false
}
// Tries to find images' URLs on the page // Tries to find images' URLs on the page
func FindPageImages(pageBody []byte, from *url.URL) []string { func FindPageImages(pageBody []byte, from url.URL) []url.URL {
var urls []string var urls []url.URL
// for every element that has "src" attribute // for every element that has "src" attribute
for _, match := range tagSrcRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageSrcLinks(pageBody, from) {
var linkStartIndex int if HasImageExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasImageExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// for every "a" element as well // for every "a" element as well
for _, match := range tagHrefRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageLinks(pageBody, from) {
var linkStartIndex int if HasImageExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasImageExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// return discovered mutual image urls from <img> and <a> tags
return urls return urls
} }

84
src/web/text.go

@ -37,25 +37,27 @@ var tagSrcRegexp *regexp.Regexp = regexp.MustCompile(`(?i)(src)[\s]*=[\s]*("|')(
var emailRegexp *regexp.Regexp = regexp.MustCompile(`[A-Za-z0-9._%+\-!%&?~^#$]+@[A-Za-z0-9.\-]+\.[a-zA-Z]{2,4}`) var emailRegexp *regexp.Regexp = regexp.MustCompile(`[A-Za-z0-9._%+\-!%&?~^#$]+@[A-Za-z0-9.\-]+\.[a-zA-Z]{2,4}`)
// Fix relative link and construct an absolute one. Does nothing if the URL already looks alright // Fix relative link and construct an absolute one. Does nothing if the URL already looks alright
func ResolveLink(url *url.URL, fromHost string) string { func ResolveLink(link url.URL, fromHost string) url.URL {
if !url.IsAbs() { var resolvedURL url.URL = link
if url.Scheme == "" {
if !resolvedURL.IsAbs() {
if resolvedURL.Scheme == "" {
// add scheme // add scheme
url.Scheme = "http" resolvedURL.Scheme = "https"
} }
if url.Host == "" { if resolvedURL.Host == "" {
// add host // add host
url.Host = fromHost resolvedURL.Host = fromHost
} }
} }
return url.String() return resolvedURL
} }
// Find all links on page that are specified in <a> tag // Find all links on page that are specified in href attribute. Do not resolve links. Return URLs as they are on the page
func FindPageLinks(pageBody []byte, from *url.URL) []string { func FindPageLinksDontResolve(pageBody []byte) []url.URL {
var urls []string var urls []url.URL
for _, match := range tagHrefRegexp.FindAllString(string(pageBody), -1) { for _, match := range tagHrefRegexp.FindAllString(string(pageBody), -1) {
var linkStartIndex int var linkStartIndex int
@ -88,12 +90,72 @@ func FindPageLinks(pageBody []byte, from *url.URL) []string {
continue continue
} }
urls = append(urls, ResolveLink(link, from.Host)) urls = append(urls, *link)
}
return urls
}
// Find all links on page that are specified in href attribute
func FindPageLinks(pageBody []byte, from url.URL) []url.URL {
urls := FindPageLinksDontResolve(pageBody)
for index := 0; index < len(urls); index++ {
urls[index] = ResolveLink(urls[index], from.Host)
}
return urls
}
// Find all links on page that are specified in "src" attribute. Do not resolve ULRs, return them as they are on page
func FindPageSrcLinksDontResolve(pageBody []byte) []url.URL {
var urls []url.URL
for _, match := range tagSrcRegexp.FindAllString(string(pageBody), -1) {
var linkStartIndex int
var linkEndIndex int
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
urls = append(urls, *link)
} }
return urls return urls
} }
// Find all links on page that are specified in "src" attribute
func FindPageSrcLinks(pageBody []byte, from url.URL) []url.URL {
urls := FindPageSrcLinksDontResolve(pageBody)
for index := 0; index < len(urls); index++ {
urls[index] = ResolveLink(urls[index], from.Host)
}
return urls
}
// Tries to find a certain string in page. Returns true if such string has been found // Tries to find a certain string in page. Returns true if such string has been found
func IsTextOnPage(text string, ignoreCase bool, pageBody []byte) bool { func IsTextOnPage(text string, ignoreCase bool, pageBody []byte) bool {
scanner := bufio.NewScanner(bytes.NewReader(pageBody)) scanner := bufio.NewScanner(bytes.NewReader(pageBody))

90
src/web/videos.go

@ -20,99 +20,25 @@ package web
import ( import (
"net/url" "net/url"
"strings"
) )
func HasVideoExtention(url string) bool {
for _, extention := range VideoExtentions {
if strings.HasSuffix(url, extention) {
return true
}
}
return false
}
// Tries to find videos' URLs on the page // Tries to find videos' URLs on the page
func FindPageVideos(pageBody []byte, from *url.URL) []string { func FindPageVideos(pageBody []byte, from url.URL) []url.URL {
var urls []string var urls []url.URL
// for every element that has "src" attribute // for every element that has "src" attribute
for _, match := range tagSrcRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageSrcLinks(pageBody, from) {
var linkStartIndex int if HasVideoExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasVideoExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// for every "a" element as well // for every "a" element as well
for _, match := range tagHrefRegexp.FindAllString(string(pageBody), -1) { for _, link := range FindPageLinks(pageBody, from) {
var linkStartIndex int if HasVideoExtention(link.EscapedPath()) {
var linkEndIndex int urls = append(urls, link)
linkStartIndex = strings.Index(match, "\"")
if linkStartIndex == -1 {
linkStartIndex = strings.Index(match, "'")
if linkStartIndex == -1 {
continue
}
linkEndIndex = strings.LastIndex(match, "'")
if linkEndIndex == -1 {
continue
}
} else {
linkEndIndex = strings.LastIndex(match, "\"")
if linkEndIndex == -1 {
continue
}
}
if linkEndIndex <= linkStartIndex+1 {
continue
}
link, err := url.Parse(match[linkStartIndex+1 : linkEndIndex])
if err != nil {
continue
}
linkResolved := ResolveLink(link, from.Host)
if HasVideoExtention(linkResolved) {
urls = append(urls, linkResolved)
} }
} }
// return discovered mutual video urls
return urls return urls
} }

167
src/worker/worker.go

@ -19,6 +19,7 @@
package worker package worker
import ( import (
"bytes"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io" "io"
@ -27,6 +28,7 @@ import (
"path" "path"
"path/filepath" "path/filepath"
"regexp" "regexp"
"strings"
"sync" "sync"
"time" "time"
"unbewohnte/wecr/config" "unbewohnte/wecr/config"
@ -72,8 +74,8 @@ func NewWorker(jobs chan web.Job, conf *WorkerConf, visited *visited, stats *Sta
} }
} }
func (w *Worker) saveContent(links []string, pageURL *url.URL) { func (w *Worker) saveContent(links []url.URL, pageURL *url.URL) {
var alreadyProcessedUrls []string var alreadyProcessedUrls []url.URL
for count, link := range links { for count, link := range links {
// check if this URL has been processed already // check if this URL has been processed already
var skip bool = false var skip bool = false
@ -91,29 +93,29 @@ func (w *Worker) saveContent(links []string, pageURL *url.URL) {
} }
alreadyProcessedUrls = append(alreadyProcessedUrls, link) alreadyProcessedUrls = append(alreadyProcessedUrls, link)
var fileName string = fmt.Sprintf("%s_%d_%s", pageURL.Host, count, path.Base(link)) var fileName string = fmt.Sprintf("%s_%d_%s", pageURL.Host, count, path.Base(link.Path))
var filePath string var filePath string
if web.HasImageExtention(link) { if web.HasImageExtention(link.Path) {
filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveImagesDir, fileName) filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveImagesDir, fileName)
} else if web.HasVideoExtention(link) { } else if web.HasVideoExtention(link.Path) {
filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveVideosDir, fileName) filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveVideosDir, fileName)
} else if web.HasAudioExtention(link) { } else if web.HasAudioExtention(link.Path) {
filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveAudioDir, fileName) filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveAudioDir, fileName)
} else if web.HasDocumentExtention(link) { } else if web.HasDocumentExtention(link.Path) {
filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveDocumentsDir, fileName) filePath = filepath.Join(w.Conf.Save.OutputDir, config.SaveDocumentsDir, fileName)
} else { } else {
filePath = filepath.Join(w.Conf.Save.OutputDir, fileName) filePath = filepath.Join(w.Conf.Save.OutputDir, fileName)
} }
err := web.FetchFile( err := web.FetchFile(
link, link.String(),
w.Conf.Requests.UserAgent, w.Conf.Requests.UserAgent,
w.Conf.Requests.ContentFetchTimeoutMs, w.Conf.Requests.ContentFetchTimeoutMs,
filePath, filePath,
) )
if err != nil { if err != nil {
logger.Error("Failed to fetch file at %s: %s", link, err) logger.Error("Failed to fetch file located at %s: %s", link.String(), err)
return return
} }
@ -122,31 +124,105 @@ func (w *Worker) saveContent(links []string, pageURL *url.URL) {
} }
} }
// Save page to the disk with a corresponding name // Save page to the disk with a corresponding name; Download any src files, stylesheets and JS along the way
func (w *Worker) savePage(baseURL *url.URL, pageData []byte) { func (w *Worker) savePage(baseURL url.URL, pageData []byte) {
if w.Conf.Save.SavePages && w.Conf.Save.OutputDir != "" { var findPageFileContentURLs func([]byte) []url.URL = func(pageBody []byte) []url.URL {
var pageName string = fmt.Sprintf("%s_%s.html", baseURL.Host, path.Base(baseURL.String())) var urls []url.URL
pageFile, err := os.Create(filepath.Join(w.Conf.Save.OutputDir, config.SavePagesDir, pageName))
for _, link := range web.FindPageLinksDontResolve(pageData) {
if strings.Contains(link.Path, ".css") ||
strings.Contains(link.Path, ".scss") ||
strings.Contains(link.Path, ".js") ||
strings.Contains(link.Path, ".mjs") {
urls = append(urls, link)
}
}
urls = append(urls, web.FindPageSrcLinksDontResolve(pageBody)...)
return urls
}
var cleanLink func(url.URL, url.URL) url.URL = func(link url.URL, from url.URL) url.URL {
resolvedLink := web.ResolveLink(link, from.Host)
cleanLink, err := url.Parse(resolvedLink.Scheme + "://" + resolvedLink.Host + resolvedLink.Path)
if err != nil { if err != nil {
logger.Error("Failed to create page of \"%s\": %s", baseURL.String(), err) return resolvedLink
return
} }
defer pageFile.Close() return *cleanLink
}
// Create directory with all file content on the page
var pageFilesDirectoryName string = fmt.Sprintf(
"%s_%s_files",
baseURL.Host,
strings.ReplaceAll(baseURL.Path, "/", "_"),
)
err := os.MkdirAll(filepath.Join(w.Conf.Save.OutputDir, config.SavePagesDir, pageFilesDirectoryName), os.ModePerm)
if err != nil {
logger.Error("Failed to create directory to store file contents of %s: %s", baseURL.String(), err)
return
}
// Save files on page
srcLinks := findPageFileContentURLs(pageData)
for _, srcLink := range srcLinks {
web.FetchFile(srcLink.String(),
w.Conf.Requests.UserAgent,
w.Conf.Requests.ContentFetchTimeoutMs,
filepath.Join(
w.Conf.Save.OutputDir,
config.SavePagesDir,
pageFilesDirectoryName,
path.Base(srcLink.String()),
),
)
}
pageFile.Write(pageData) // Redirect old content URLs to local files
for _, srcLink := range srcLinks {
cleanLink := cleanLink(srcLink, baseURL)
pageData = bytes.ReplaceAll(
pageData,
[]byte(srcLink.String()),
[]byte("./"+filepath.Join(pageFilesDirectoryName, path.Base(cleanLink.String()))),
)
}
logger.Info("Saved \"%s\"", pageName) // Create page output file
w.stats.PagesSaved++ pageName := fmt.Sprintf(
"%s_%s.html",
baseURL.Host,
strings.ReplaceAll(baseURL.Path, "/", "_"),
)
outfile, err := os.Create(filepath.Join(
filepath.Join(w.Conf.Save.OutputDir, config.SavePagesDir),
pageName,
))
if err != nil {
fmt.Printf("Failed to create output file: %s\n", err)
} }
defer outfile.Close()
outfile.Write(pageData)
logger.Info("Saved \"%s\"", pageName)
w.stats.PagesSaved++
} }
func (w *Worker) saveResult(result web.Result) { const (
// write result to the output file textTypeMatch = iota
textTypeEmail = iota
)
// Save text result to an appropriate file
func (w *Worker) saveResult(result web.Result, textType int) {
// write result to the output file
var output io.Writer var output io.Writer
if result.Search.Query == config.QueryEmail { switch textType {
case textTypeEmail:
output = w.Conf.EmailsOutput output = w.Conf.EmailsOutput
} else {
default:
output = w.Conf.TextOutput output = w.Conf.TextOutput
} }
@ -257,7 +333,7 @@ func (w *Worker) Work() {
} }
// find links // find links
pageLinks := web.FindPageLinks(pageData, pageURL) pageLinks := web.FindPageLinks(pageData, *pageURL)
go func() { go func() {
if job.Depth > 1 { if job.Depth > 1 {
// decrement depth and add new jobs // decrement depth and add new jobs
@ -267,9 +343,9 @@ func (w *Worker) Work() {
// add to the visit queue // add to the visit queue
w.Conf.VisitQueue.Lock.Lock() w.Conf.VisitQueue.Lock.Lock()
for _, link := range pageLinks { for _, link := range pageLinks {
if link != job.URL { if link.String() != job.URL {
err = queue.InsertNewJob(w.Conf.VisitQueue.VisitQueue, web.Job{ err = queue.InsertNewJob(w.Conf.VisitQueue.VisitQueue, web.Job{
URL: link, URL: link.String(),
Search: *w.Conf.Search, Search: *w.Conf.Search,
Depth: job.Depth, Depth: job.Depth,
}) })
@ -283,9 +359,9 @@ func (w *Worker) Work() {
} else { } else {
// add to the in-memory channel // add to the in-memory channel
for _, link := range pageLinks { for _, link := range pageLinks {
if link != job.URL { if link.String() != job.URL {
w.Jobs <- web.Job{ w.Jobs <- web.Job{
URL: link, URL: link.String(),
Search: *w.Conf.Search, Search: *w.Conf.Search,
Depth: job.Depth, Depth: job.Depth,
} }
@ -301,9 +377,12 @@ func (w *Worker) Work() {
var savePage bool = false var savePage bool = false
switch job.Search.Query { switch job.Search.Query {
case config.QueryArchive:
savePage = true
case config.QueryImages: case config.QueryImages:
// find image URLs, output images to the file while not saving already outputted ones // find image URLs, output images to the file while not saving already outputted ones
imageLinks := web.FindPageImages(pageData, pageURL) imageLinks := web.FindPageImages(pageData, *pageURL)
if len(imageLinks) > 0 { if len(imageLinks) > 0 {
w.saveContent(imageLinks, pageURL) w.saveContent(imageLinks, pageURL)
savePage = true savePage = true
@ -312,7 +391,7 @@ func (w *Worker) Work() {
case config.QueryVideos: case config.QueryVideos:
// search for videos // search for videos
// find video URLs, output videos to the files while not saving already outputted ones // find video URLs, output videos to the files while not saving already outputted ones
videoLinks := web.FindPageVideos(pageData, pageURL) videoLinks := web.FindPageVideos(pageData, *pageURL)
if len(videoLinks) > 0 { if len(videoLinks) > 0 {
w.saveContent(videoLinks, pageURL) w.saveContent(videoLinks, pageURL)
savePage = true savePage = true
@ -321,7 +400,7 @@ func (w *Worker) Work() {
case config.QueryAudio: case config.QueryAudio:
// search for audio // search for audio
// find audio URLs, output audio to the file while not saving already outputted ones // find audio URLs, output audio to the file while not saving already outputted ones
audioLinks := web.FindPageAudio(pageData, pageURL) audioLinks := web.FindPageAudio(pageData, *pageURL)
if len(audioLinks) > 0 { if len(audioLinks) > 0 {
w.saveContent(audioLinks, pageURL) w.saveContent(audioLinks, pageURL)
savePage = true savePage = true
@ -330,7 +409,7 @@ func (w *Worker) Work() {
case config.QueryDocuments: case config.QueryDocuments:
// search for various documents // search for various documents
// find documents URLs, output docs to the file while not saving already outputted ones // find documents URLs, output docs to the file while not saving already outputted ones
docsLinks := web.FindPageDocuments(pageData, pageURL) docsLinks := web.FindPageDocuments(pageData, *pageURL)
if len(docsLinks) > 0 { if len(docsLinks) > 0 {
w.saveContent(docsLinks, pageURL) w.saveContent(docsLinks, pageURL)
savePage = true savePage = true
@ -344,7 +423,7 @@ func (w *Worker) Work() {
PageURL: job.URL, PageURL: job.URL,
Search: job.Search, Search: job.Search,
Data: emailAddresses, Data: emailAddresses,
}) }, textTypeEmail)
w.stats.MatchesFound += uint64(len(emailAddresses)) w.stats.MatchesFound += uint64(len(emailAddresses))
savePage = true savePage = true
} }
@ -353,11 +432,11 @@ func (w *Worker) Work() {
// search for everything // search for everything
// files // files
var contentLinks []string var contentLinks []url.URL
contentLinks = append(contentLinks, web.FindPageImages(pageData, pageURL)...) contentLinks = append(contentLinks, web.FindPageImages(pageData, *pageURL)...)
contentLinks = append(contentLinks, web.FindPageAudio(pageData, pageURL)...) contentLinks = append(contentLinks, web.FindPageAudio(pageData, *pageURL)...)
contentLinks = append(contentLinks, web.FindPageVideos(pageData, pageURL)...) contentLinks = append(contentLinks, web.FindPageVideos(pageData, *pageURL)...)
contentLinks = append(contentLinks, web.FindPageDocuments(pageData, pageURL)...) contentLinks = append(contentLinks, web.FindPageDocuments(pageData, *pageURL)...)
w.saveContent(contentLinks, pageURL) w.saveContent(contentLinks, pageURL)
if len(contentLinks) > 0 { if len(contentLinks) > 0 {
@ -371,7 +450,7 @@ func (w *Worker) Work() {
PageURL: job.URL, PageURL: job.URL,
Search: job.Search, Search: job.Search,
Data: emailAddresses, Data: emailAddresses,
}) }, textTypeEmail)
w.stats.MatchesFound += uint64(len(emailAddresses)) w.stats.MatchesFound += uint64(len(emailAddresses))
savePage = true savePage = true
} }
@ -393,7 +472,7 @@ func (w *Worker) Work() {
PageURL: job.URL, PageURL: job.URL,
Search: job.Search, Search: job.Search,
Data: matches, Data: matches,
}) }, textTypeMatch)
logger.Info("Found matches: %+v", matches) logger.Info("Found matches: %+v", matches)
w.stats.MatchesFound += uint64(len(matches)) w.stats.MatchesFound += uint64(len(matches))
savePage = true savePage = true
@ -405,7 +484,7 @@ func (w *Worker) Work() {
PageURL: job.URL, PageURL: job.URL,
Search: job.Search, Search: job.Search,
Data: []string{job.Search.Query}, Data: []string{job.Search.Query},
}) }, textTypeMatch)
logger.Info("Found \"%s\" on page", job.Search.Query) logger.Info("Found \"%s\" on page", job.Search.Query)
w.stats.MatchesFound++ w.stats.MatchesFound++
savePage = true savePage = true
@ -414,8 +493,8 @@ func (w *Worker) Work() {
} }
// save page // save page
if savePage { if savePage && w.Conf.Save.SavePages {
w.savePage(pageURL, pageData) w.savePage(*pageURL, pageData)
} }
pageData = nil pageData = nil
pageURL = nil pageURL = nil

Loading…
Cancel
Save