Micro Web Crawler in PHP & Manticore
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.6 KiB

1 year ago
# Yo!
1 year ago
1 year ago
Micro Web Crawler in PHP & Manticore
1 year ago
1 year ago
Yo! is the super thin layer for Manticore search server that extends official [manticoresearch-php](https://github.com/manticoresoftware/manticoresearch-php) client with CLI tools and simple JS-less WebUI.
1 year ago
1 year ago
## Features
1 year ago
1 year ago
* MIME-based crawler with flexible filter settings by regular expressions, selectors, external links etc
* Page snap history with local and remote mirrors support (including FTP protocol)
* CLI tools for index administration and crontab tasks
1 year ago
* JS-less frontend to run local or public search web portal
1 year ago
* API tools to make search index distributed
1 year ago
## Components
* [Manticore Server](https://github.com/manticoresoftware/manticoresearch)
1 year ago
* [PHP library for Manticore](https://github.com/manticoresoftware/manticoresearch-php)
* [Symfony DOM crawler](https://github.com/symfony/dom-crawler)
* [Symfony CSS selector](https://github.com/symfony/css-selector)
1 year ago
* [FTP client for snap mirrors](https://github.com/YGGverse/ftp-php)
1 year ago
* [Hostname ident icons](https://github.com/dmester/jdenticon-php)
1 year ago
* [Bootstrap icons](https://icons.getbootstrap.com/)
1 year ago
1 year ago
### Install
1 year ago
1. Install `manticore`, `composer` and `php`
1 year ago
2. Grab latest `Yo` version `git clone https://github.com/YGGverse/Yo.git`
1 year ago
3. Run `composer update` inside the project directory
4. Copy and customize config file `cp example/config.json config.json`
1 year ago
5. Make sure `storage` folder writable
1 year ago
6. Run indexes initiation script `php src/cli/index/init.php`
7. Announce new URL `php src/cli/document/add.php URL`
8. Run crawler to grab the data `php src/cli/document/crawl.php`
9. Test search results `php src/cli/document/search.php '*'`
1 year ago
#### Web UI
1. `cd src/webui`
2. `php -S 127.0.0.1:8080`
1 year ago
3. open `127.0.0.1:8080` in browser
1 year ago
## Documentation
1 year ago
1 year ago
### CLI
1 year ago
1 year ago
#### Index
1 year ago
1 year ago
##### Init
1 year ago
Create initial index
```
php src/cli/index/init.php [reset]
```
* `reset` - optional, reset existing index
1 year ago
#### Document
1 year ago
1 year ago
##### Add
1 year ago
```
php src/cli/document/add.php URL
```
* `URL` - add new URL to the crawl queue
1 year ago
##### Crawl
1 year ago
```
php src/cli/document/crawl.php
```
##### Clean
```
php src/cli/document/clean.php
```
* remove `url` duplicates
* make index optimization
1 year ago
##### Search
1 year ago
```
php src/cli/document/search.php '@title "*"' [limit]
```
* `query` - required
* `limit` - optional search results limit
##### Migration
###### YGGo
Import index from YGGo database
```
php src/cli/yggo/import.php 'host' 'port' 'user' 'password' 'database' [unique=off] [start=0] [limit=100]
```
Source DB fields required:
* `host`
* `port`
* `user`
* `password`
* `database`
* `unique` - optional, check for unique URL (takes more time)
* `start` - optional, offset to start queue
1 year ago
* `limit` - optional, limit queue
12 months ago
### Backup
#### Logical
SQL text dumps could be useful for public index distribution, but requires more computing resources
[Read more](https://manual.manticoresearch.com/Securing_and_compacting_a_table/Backup_and_restore#Backup-and-restore-with-mysqldump)
#### Physical
Better for infrastructure administration and includes original data binaries
[Read more](https://manual.manticoresearch.com/Securing_and_compacting_a_table/Backup_and_restore#Using-manticore-backup-command-line-tool)
1 year ago
## Instances
12 months ago
### [Yggdrasil](https://github.com/yggdrasil-network)
* `http://[201:23b4:991a:634d:8359:4521:5576:15b7]/yo/` - IPv6 `0200::/7` addresses only
* `http://yo.ygg` - `.ygg` domain zone search
### [Alfis DNS](https://github.com/Revertron/Alfis)
* `http://ygg.yo.index` - alias of `http://yo.ygg`
1 year ago
12 months ago
_*`*.yo.index` reserved for domain-oriented instances e.g. `.btn`, `.conf`, `.mirror` - feel free to request the address_