YGGo/README.md

240 lines
5.8 KiB
Markdown
Raw Normal View History

2023-04-25 19:44:25 +03:00
### YGGo! - Distributed & Open Source Web Search Engine
2023-04-01 19:40:37 +03:00
2023-04-23 07:16:40 +03:00
роект присвячується захисникам міста Бахмут_
2023-04-12 12:53:51 +03:00
2023-04-05 17:54:46 +03:00
Written by inspiration to explore [Yggdrasil](https://yggdrasil-network.github.io) ecosystem, because of last [YaCy](https://yacy.net/) node there was discontinued.
2023-04-02 20:50:30 +03:00
This engine also could be useful for crawling regular websites, small business resources, local networks.
2023-04-01 19:40:37 +03:00
2023-04-02 20:50:30 +03:00
The project goal - simple interface, clear architecture and lightweight server requirement.
2023-04-01 19:40:37 +03:00
2023-04-23 07:10:32 +03:00
#### Overview
2023-04-01 21:43:43 +03:00
2023-04-23 07:07:33 +03:00
![Home page](https://github.com/YGGverse/YGGo/blob/main/media/main-sm.png?raw=true)
2023-04-01 21:43:43 +03:00
2023-04-03 17:56:51 +03:00
https://github.com/YGGverse/YGGo/tree/main/media
2023-04-01 19:40:37 +03:00
2023-04-23 07:09:28 +03:00
#### Online instances
* [http://[201:23b4:991a:634d:8359:4521:5576:15b7]/yggo](http://[201:23b4:991a:634d:8359:4521:5576:15b7]/yggo)
* [http://94.140.114.241/yggo/](http://94.140.114.241/yggo)
2023-04-01 19:40:37 +03:00
#### Requirements
```
2023-04-02 22:43:05 +03:00
php8^
php-dom
2023-04-01 19:40:37 +03:00
php-pdo
2023-04-02 22:43:38 +03:00
php-curl
2023-04-03 01:59:34 +03:00
php-gd
2023-05-13 03:01:00 +03:00
php-mbstring
2023-05-13 10:15:07 +03:00
php-zip
php-mysql
2023-04-07 18:24:50 +03:00
sphinxsearch
2023-04-01 19:40:37 +03:00
```
2023-04-03 17:56:51 +03:00
#### Installation
2023-04-01 21:01:55 +03:00
2023-04-23 09:03:02 +03:00
* The web root dir is `/public`
2023-04-23 09:03:53 +03:00
* Deploy the database using [MySQL Workbench](https://www.mysql.com/products/workbench) project presented in the `/database` folder
2023-04-23 09:03:02 +03:00
* Install [Sphinx Search Server](https://sphinxsearch.com)
* Configuration examples are placed at `/config` folder
2023-05-15 09:18:18 +03:00
* Make sure `/storage/cache`, `/storage/tmp`, `/storage/snap` folders writable
* Set up the `/crontab` scripts by following [example](https://github.com/YGGverse/YGGo/blob/main/config/crontab.txt)
2023-04-23 03:29:02 +03:00
#### JSON API
2023-04-23 03:01:51 +03:00
2023-04-23 03:29:02 +03:00
Build third party applications / index distribution.
2023-04-23 03:03:27 +03:00
2023-04-23 03:04:01 +03:00
Could be enabled or disabled by `API_ENABLED` option
2023-04-23 03:01:51 +03:00
2023-04-23 03:03:27 +03:00
###### Address
2023-04-23 03:01:51 +03:00
```
/api.php
```
2023-04-25 19:35:52 +03:00
##### Search
2023-04-23 03:01:51 +03:00
Returns search results.
2023-04-23 03:03:27 +03:00
2023-04-23 03:04:01 +03:00
Could be enabled or disabled by `API_SEARCH_ENABLED` option
2023-04-23 03:01:51 +03:00
###### Request attributes
```
2023-04-23 03:08:49 +03:00
GET action=search - required
GET query={string} - optional, search request, empty if not provided
GET type={string} - optional, filter mime type of available or empty
2023-04-23 03:08:49 +03:00
GET page={int} - optional, search results page, 1 if not provided
GET mode=SphinxQL - optional, enable extended SphinxQL syntax
2023-04-23 03:01:51 +03:00
```
2023-04-25 19:35:52 +03:00
##### Hosts distribution
2023-04-23 03:01:51 +03:00
2023-04-23 03:08:49 +03:00
Returns node hosts collected with fields provided in `API_HOSTS_FIELDS` option.
2023-04-23 03:03:27 +03:00
2023-04-23 03:04:01 +03:00
Could be enabled or disabled by `API_HOSTS_ENABLED` option
2023-04-23 03:01:51 +03:00
###### Request attributes
```
2023-04-23 03:08:49 +03:00
GET action=hosts - required
2023-04-23 03:01:51 +03:00
```
2023-04-25 19:35:52 +03:00
##### Application manifest
Returns node information.
Could be enabled or disabled by `API_MANIFEST_ENABLED` option
###### Request attributes
```
GET action=manifest - required
```
2023-04-29 07:49:09 +03:00
#### Search textual filtering
##### Default constructions
2023-05-01 19:09:28 +03:00
```
operator OR:
hello | world
operator MAYBE:
hello MAYBE world
operator NOT:
hello -world
strict order operator (aka operator "before"):
aaa << bbb << ccc
exact form modifier:
raining =cats and =dogs
field-start and field-end modifier:
^hello world$
keyword IDF boost modifier:
boosted^1.234 boostedfieldend$^1.234
```
##### Extended syntax
https://sphinxsearch.com/docs/current.html#extended-syntax
Could be enabled with following attributes
```
GET m=SphinxQL
```
2023-05-05 11:46:03 +03:00
#### Roadmap
2023-04-01 19:40:37 +03:00
2023-05-05 12:49:07 +03:00
##### Basic features
2023-05-15 09:18:18 +03:00
* [x] Web pages full text ranking search
+ [x] Sphinx
2023-05-14 19:42:55 +03:00
* [x] Unlimited content MIME crawling
2023-05-05 12:49:07 +03:00
* [x] Flexible settings compatible with IPv4/IPv6 networks
2023-05-13 05:54:15 +03:00
* [x] Extended search syntax support
2023-05-14 19:42:55 +03:00
* [x] Compressed page history snaps with multi-provider storage sync
2023-05-13 10:15:07 +03:00
+ [x] Local
+ [x] Remote
+ [x] MEGAcmd/FTP
2023-05-14 19:42:55 +03:00
+ [ ] Yggdrasil over NAT
2023-05-15 09:18:18 +03:00
+ [x] Privacy-oriented downloads counting, traffic controls
2023-05-05 12:49:07 +03:00
##### UI
2023-05-05 12:59:46 +03:00
* [x] CSS only, JS-less interface
2023-05-05 12:49:07 +03:00
* [x] Unique ident icons for sites without favicons
2023-05-13 10:18:05 +03:00
* [x] Content genre tabs (#1)
2023-05-14 19:42:55 +03:00
* [x] Safe images preview
2023-05-14 01:51:30 +03:00
* [x] Page index explorer
2023-05-14 01:45:55 +03:00
+ [x] Meta
+ [x] Snaps history
2023-05-14 01:45:55 +03:00
+ [x] Referrers
2023-05-05 12:49:07 +03:00
* [ ] Results with found matches highlight
2023-05-13 10:18:05 +03:00
* [ ] The time machine feature by content snaps history
2023-05-05 12:49:07 +03:00
##### API
2023-05-05 13:22:53 +03:00
* [ ] Index API
2023-05-05 13:15:49 +03:00
+ [x] Manifest
+ [x] Search
+ [x] Hosts
+ [ ] Snaps
+ [ ] MIME list
2023-05-05 12:49:07 +03:00
* [ ] Context advertising API
##### Crawler
* [x] Auto crawl links by regular expression rules
2023-05-08 11:04:59 +03:00
+ [x] Pages
+ [x] Manifests
2023-05-05 12:49:07 +03:00
* [x] Robots.txt / robots meta tags support (#2)
* [x] Specific rules configuration for every host
2023-05-05 11:49:16 +03:00
* [x] Auto stop crawling on disk quota reached
2023-05-05 12:52:20 +03:00
* [x] Transactions support to prevent data loss on queue failures
2023-05-05 13:20:50 +03:00
* [x] Distributed index crawling between YGGo nodes trough manifest API
2023-05-10 14:32:36 +03:00
* [x] MIME Content-type settings
* [x] Ban non-condition links to prevent extra requests
2023-05-08 11:04:59 +03:00
* [x] Debug log
2023-05-05 11:41:40 +03:00
* [ ] Indexing new sites homepage in higher priority
2023-05-05 12:49:07 +03:00
* [ ] Redirect codes extended processing
* [ ] Palette image index / filter
* [ ] Crawl queue balancer, that depends of CPU available
2023-05-08 11:04:59 +03:00
##### Cleaner
* [x] Deprecated DB items auto deletion / host settings update
+ [x] Pages
2023-05-15 09:18:18 +03:00
+ [x] Snaps
+ [x] Snap downloads
2023-05-15 09:34:36 +03:00
+ [ ] Missed snap file relations
2023-05-08 11:04:59 +03:00
+ [x] Manifests
+ [x] Logs
+ [x] Crawler
+ [x] Cleaner
* [x] Banned resources reset by timeout
* [x] Debug log
2023-05-05 12:49:07 +03:00
##### Other
2023-05-05 12:17:48 +03:00
* [ ] Administrative panel for useful index moderation
2023-05-05 13:32:56 +03:00
* [ ] Deployment tools
2023-05-05 12:49:07 +03:00
#### Contributions
2023-04-05 19:28:58 +03:00
2023-04-12 13:11:09 +03:00
Please make a new branch of master|sqliteway tree for each patch in your fork before create PR
2023-04-05 19:28:58 +03:00
```
git checkout master
git checkout -b my-pr-branch-name
```
See also: [SQLite tree](https://github.com/YGGverse/YGGo/tree/sqliteway)
2023-04-03 17:56:51 +03:00
#### Donate to contributors
2023-04-02 22:31:49 +03:00
2023-04-08 20:13:13 +03:00
* @d47081: [BTC](https://www.blockchain.com/explorer/addresses/btc/bc1qngdf2kwty6djjqpk0ynkpq9wmlrmtm7e0c534y) | [DOGE](https://dogechain.info/address/D5Sez493ibLqTpyB3xwQUspZvJ1cxEdRNQ) | Support our server by order [Linux VPS](https://www.yourserver.se/portal/aff.php?aff=610)
2023-04-02 22:31:49 +03:00
2023-04-23 07:12:40 +03:00
#### License
* Engine sources [MIT License](https://github.com/YGGverse/YGGo/blob/main/LICENSE)
* Home page animation by [alvarotrigo](https://codepen.io/alvarotrigo/pen/GRvYNax)
2023-04-03 17:56:51 +03:00
#### Feedback
2023-04-01 21:31:51 +03:00
2023-04-03 17:56:51 +03:00
Please, feel free to share your ideas and bug reports [here](https://github.com/YGGverse/YGGo/issues) or use sources for your own implementations.
2023-04-01 21:31:51 +03:00
Have a good time.