├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── database └── yggo.mwb ├── example └── environment │ ├── crontab │ ├── mysql.cnf │ └── sphinx.conf ├── media ├── db-prototype.png ├── main-sm.png ├── main.png └── search.png └── src ├── cli └── yggo.php ├── config └── app.php.example ├── crontab ├── cleaner.php └── crawler.php ├── library ├── cli.php ├── curl.php ├── filter.php ├── ftp.php ├── helper.php ├── mysql.php ├── robots.php ├── sitemap.php ├── sphinxql.php └── yggstate.php ├── public ├── api.php ├── explore.php ├── file.php ├── index.php ├── robots.txt ├── search.php └── top.php └── storage ├── cache └── index.html ├── snap └── index.html └── tmp └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/composer.json -------------------------------------------------------------------------------- /database/yggo.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/database/yggo.mwb -------------------------------------------------------------------------------- /example/environment/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/example/environment/crontab -------------------------------------------------------------------------------- /example/environment/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/example/environment/mysql.cnf -------------------------------------------------------------------------------- /example/environment/sphinx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/example/environment/sphinx.conf -------------------------------------------------------------------------------- /media/db-prototype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/media/db-prototype.png -------------------------------------------------------------------------------- /media/main-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/media/main-sm.png -------------------------------------------------------------------------------- /media/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/media/main.png -------------------------------------------------------------------------------- /media/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/media/search.png -------------------------------------------------------------------------------- /src/cli/yggo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/cli/yggo.php -------------------------------------------------------------------------------- /src/config/app.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/config/app.php.example -------------------------------------------------------------------------------- /src/crontab/cleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/crontab/cleaner.php -------------------------------------------------------------------------------- /src/crontab/crawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/crontab/crawler.php -------------------------------------------------------------------------------- /src/library/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/cli.php -------------------------------------------------------------------------------- /src/library/curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/curl.php -------------------------------------------------------------------------------- /src/library/filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/filter.php -------------------------------------------------------------------------------- /src/library/ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/ftp.php -------------------------------------------------------------------------------- /src/library/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/helper.php -------------------------------------------------------------------------------- /src/library/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/mysql.php -------------------------------------------------------------------------------- /src/library/robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/robots.php -------------------------------------------------------------------------------- /src/library/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/sitemap.php -------------------------------------------------------------------------------- /src/library/sphinxql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/sphinxql.php -------------------------------------------------------------------------------- /src/library/yggstate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/library/yggstate.php -------------------------------------------------------------------------------- /src/public/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/api.php -------------------------------------------------------------------------------- /src/public/explore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/explore.php -------------------------------------------------------------------------------- /src/public/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/file.php -------------------------------------------------------------------------------- /src/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/index.php -------------------------------------------------------------------------------- /src/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/robots.txt -------------------------------------------------------------------------------- /src/public/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/search.php -------------------------------------------------------------------------------- /src/public/top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGGverse/YGGo/HEAD/src/public/top.php -------------------------------------------------------------------------------- /src/storage/cache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/storage/snap/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/storage/tmp/index.html: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------