Floodesh is middleware based web spider written with Nodejs. "Floodesh" is a combination of two words, flood
and mesh
.
- Requirement
- Quick start
- Context
- Configuration
- Error handling
- Diagram
- Middlewares
Make sure g++
, make
, libboost-all-dev
, gperf
, libevent-dev
and uuid-dev
have been installed.
$ wget https://launchpad.net/gearmand/1.2/1.1.12/+download/gearmand-1.1.12.tar.gz | tar xvf
$ cd gearmand-1.1.12
$ ./configure
$ make
$ make install
$ npm install -g floodesh-cli
Generate new app from templates by only one command.
$ mkdir demo
$ cd demo
$ floodesh-cli init # all necessary files will be generated in your directory.
Please make sure you have /data/tests and /var/log/bda/tests created and have Write access before use, you can customize path by modifying logBaseDir in config/[env]/index.js
A context instance is a kind of Finite-State Machine implemented by Generators
which is ECMAScript 6 feature. By context, we can access almost all fields in response
and request
, like:
worker.use( (ctx,next) => {
ctx.content = ctx.body.toString(); // totally do not care about the body
return next();
})
- <String>
Get querystring.
- <Boolean>
Check if the request is idempotent.
- <String>
Get the search string. It includes the leading "?" compare to querystring.
- <String>
Get request method.
- <Object>
Get parsed query-string.
- <String>
Get the request pathname
- <String>
Return request url, the same as ctx.href.
- <String>
Get the origin of URL, for instance, "https://www.google.com".
- <String>
Return the protocol string "http:" or "https:".
- <String>, hostname:port
Parse the "Host" header field host and support X-Forwarded-Host when a proxy is enabled.
- <String>
Parse the "Host" header field hostname and support X-Forwarded-Host when a proxy is enabled.
- <Boolean>
Check if protocol is https.
- <Number>
Get status code from response.
- <String>
Get status message from response.
- <Buffer>
Get the response body in Buffer.
- <Number>
Get length of response body.
- <String>
Get the response mime type, for instance, "text/html"
- <Date>
Get the Last-Modified date in Date form, if it exists.
- <String>
Get the ETag of a response.
- <Object>
Return the response header.
- <String>
key
<String>- Return: <String>
Get value by key in response headers
type
s <String>|Array>- Return: <String>|false|null
Check if the incoming response contains the "Content-Type" header field, and it contains any of the give mime type
s.If there is no response body, null
is returned.If there is no content type, false
is returned.Otherwise, it returns the first type
that matches.
- <Array>
Array of generated tasks. A task is an object consists of Options and next
, next
is a function name in your spider you want to call in next task , Supported format:
[{
opt:<Options>,
next:<String>
}]
- <Map>
A map to store result, that will be parsed and saved by floodesh.
retry
<Integer>: Retry times at worker side, default3
logBaseDir
<String>: Directory where project's log directory exists, default '/var/log/bda/'parsers
<Array>: Array of parsers, which are file names in parser directory without '.js'
defaultCfg
<Object>rate
<Integer>: Number of milliseconds to delay between each requestsconcurrent
<Integer>: Size of the worker poolpriorityRange
<Integer>: Range of acceptable priorities starting from 0, default3
defaultPriority
<Integer>: priority of the requesthomogenous
<Boolean>:true
headers
<Object>: HTTP headers
jobs
<Integer>: Max number of jobs per worker, default1
srvQueueSize
<Integer>: Max number of jobs queued to gearman server, default1000
mongodb
<String>: Mongodb Connection String URI,worker
<Object>:servers
<Array>: Array of server list, server should be an object like{'host':'gearman-server'}
client
<Object>:servers
<Array>: Same as above,loadBalancing
<String>: 'RoundRobin'
retry
<Integer>: Retry times at client side
mongodb
<String>: Mongodb Connection String URI
repo
<String>: [redis|mongodb] default use memory as repo.removeKeys
<Array>:Array of keys in query string to skip when test if an url is seen
server
<String>: Remote service origin
Just throw an Error
in a synced middleware, otherwise return a rejected Promise. err.stack
will be logged and err.code
will be sent to client to persist.
// sync
module.exports = (ctx, next) => {
// balabala
throw new Error('crash here');
}
// async
module.exports = (ctx, next) => {
return new Promise( (resolve, reject) => {
// balabala
reject(new Error('got error'));
});
}
- mof-cheerio: A simple wrapper of
Cheerio
. - mof-charsetparser: Parse
Charset
in response headers. - mof-iconv: Encoding converter middleware using
iconv
oriconv-lite
. - mof-request: A wrapper of
Request.js
, with some default options. - mof-bottleneck: A wrapper of
bottleneckp
which is asynchronous rate limiter with priority. - mof-proxy: With power to acquire proxy from a proxy service.
- mof-whacko: A wrapper of
whacko
, which is a fork of cheerio that uses parse5 as an underlying platform. - mof-statsd: A wrapper of
statsd-client
, which enables you send metrics to a statsd daemon. - mof-uarotate: Rotate
User-Agent
header automatically from a local file. - mof-seenreq: Only make sense in flowesh, a simple wrapper of
seenreq
. - mof-validbody: Check if a response body meets a pattern, for instance, a html body should start with
<
and json body{
. - mof-statuscode: Status code detector.
- mof-genestamp: Prints gene and url of a task, along with # of new tasks and # of records.