├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── Vagrantfile ├── app ├── commands │ ├── .gitkeep │ ├── DummyPathsCommand.php │ ├── GenerateSitemapCommand.php │ ├── IndexCommand.php │ ├── MergeAutoUploadsCommand.php │ ├── ReverseIndexCommand.php │ ├── UpdateSeriesCommand.php │ ├── UpdateSizeCommand.php │ └── WatcherCommand.php ├── composers.php ├── composers │ └── GlobalComposer.php ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── jessie64 │ │ └── app.php │ ├── local │ │ └── app.php │ ├── mail.php │ ├── packages │ │ ├── .gitkeep │ │ └── ceesvanegmond │ │ │ └── minify │ │ │ └── config.php │ ├── production │ │ ├── app.php │ │ ├── cache.php │ │ └── session.php │ ├── queue.php │ ├── remote.php │ ├── services.php │ ├── session.php │ ├── sphinx.php │ ├── test │ │ ├── app.php │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── AdminController.php │ ├── ApiController.php │ ├── BaseController.php │ ├── IndexController.php │ ├── ReaderController.php │ ├── RecentController.php │ ├── ReportsController.php │ ├── SearchController.php │ └── UsersController.php ├── database │ ├── .gitignore │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2015_03_05_160338_create_path_records_table.php │ │ ├── 2015_03_05_161402_create_series_table.php │ │ ├── 2015_03_05_162253_create_facets_table.php │ │ ├── 2015_03_05_162405_create_facet_series_table.php │ │ ├── 2015_03_05_162707_create_related_series_table.php │ │ ├── 2015_03_05_162951_create_users_table.php │ │ ├── 2015_03_05_163257_create_user_series_table.php │ │ ├── 2015_03_05_165651_create_notifications_table.php │ │ └── 2015_03_05_170241_create_reports_table.php │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── filters.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── lib │ ├── Archive │ │ ├── Archive.php │ │ ├── Exception.php │ │ ├── Factory.php │ │ ├── RarArchive.php │ │ ├── Utils.php │ │ └── ZipArchive.php │ ├── AsciiSafeDownloadFile.php │ ├── DisplaySize.php │ ├── DisplayTime.php │ ├── GlobalViewSetup.php │ ├── Indexer.php │ ├── MangaUpdates.php │ ├── Minify │ │ ├── Minify.php │ │ └── MinifyServiceProvider.php │ ├── Path.php │ ├── Search.php │ └── Sorting.php ├── models │ ├── Facet.php │ ├── Notification.php │ ├── PathRecord.php │ ├── RelatedSeries.php │ ├── Report.php │ ├── Series.php │ └── User.php ├── observers │ └── PathRecordNotifications.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── debugbar │ │ └── .gitignore │ ├── images │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── manga │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── ExampleTest.php │ └── TestCase.php └── views │ ├── donate.blade.php │ ├── index-atom.blade.php │ ├── index-rss.blade.php │ ├── index.blade.php │ ├── layout.blade.php │ ├── message.blade.php │ ├── notifications.blade.php │ ├── opml.blade.php │ ├── reader.blade.php │ ├── recent.blade.php │ ├── reports.blade.php │ ├── search.blade.php │ └── unauth.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── builds │ │ └── .gitignore │ ├── fonts.css │ ├── jquery-ui.structure.css │ ├── manga.css │ ├── normalize.css │ └── reader.css ├── favicon.ico ├── fonts │ ├── OpenSans-Light.ttf │ ├── OpenSans-Regular.ttf │ ├── fonts.json │ └── icomoon.woff ├── img │ ├── corona-madokami.png │ ├── fu3.png │ ├── icon.png │ └── loli-madokami.png ├── index.php ├── js │ ├── builds │ │ └── .gitignore │ ├── jquery-ui.js │ ├── jquery.js │ ├── manga.js │ └── reader.js ├── robots.txt └── unsafe-file.html ├── readme.md └── server.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/DummyPathsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/DummyPathsCommand.php -------------------------------------------------------------------------------- /app/commands/GenerateSitemapCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/GenerateSitemapCommand.php -------------------------------------------------------------------------------- /app/commands/IndexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/IndexCommand.php -------------------------------------------------------------------------------- /app/commands/MergeAutoUploadsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/MergeAutoUploadsCommand.php -------------------------------------------------------------------------------- /app/commands/ReverseIndexCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/ReverseIndexCommand.php -------------------------------------------------------------------------------- /app/commands/UpdateSeriesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/UpdateSeriesCommand.php -------------------------------------------------------------------------------- /app/commands/UpdateSizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/UpdateSizeCommand.php -------------------------------------------------------------------------------- /app/commands/WatcherCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/commands/WatcherCommand.php -------------------------------------------------------------------------------- /app/composers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/composers.php -------------------------------------------------------------------------------- /app/composers/GlobalComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/composers/GlobalComposer.php -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/jessie64/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/jessie64/app.php -------------------------------------------------------------------------------- /app/config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/local/app.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/ceesvanegmond/minify/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/packages/ceesvanegmond/minify/config.php -------------------------------------------------------------------------------- /app/config/production/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/production/app.php -------------------------------------------------------------------------------- /app/config/production/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/production/cache.php -------------------------------------------------------------------------------- /app/config/production/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/production/session.php -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/sphinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/sphinx.php -------------------------------------------------------------------------------- /app/config/test/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/test/app.php -------------------------------------------------------------------------------- /app/config/test/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/test/cache.php -------------------------------------------------------------------------------- /app/config/test/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/test/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/AdminController.php -------------------------------------------------------------------------------- /app/controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/ApiController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/IndexController.php -------------------------------------------------------------------------------- /app/controllers/ReaderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/ReaderController.php -------------------------------------------------------------------------------- /app/controllers/RecentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/RecentController.php -------------------------------------------------------------------------------- /app/controllers/ReportsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/ReportsController.php -------------------------------------------------------------------------------- /app/controllers/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/SearchController.php -------------------------------------------------------------------------------- /app/controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/controllers/UsersController.php -------------------------------------------------------------------------------- /app/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_160338_create_path_records_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_160338_create_path_records_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_161402_create_series_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_161402_create_series_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_162253_create_facets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_162253_create_facets_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_162405_create_facet_series_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_162405_create_facet_series_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_162707_create_related_series_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_162707_create_related_series_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_162951_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_162951_create_users_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_163257_create_user_series_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_163257_create_user_series_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_165651_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_165651_create_notifications_table.php -------------------------------------------------------------------------------- /app/database/migrations/2015_03_05_170241_create_reports_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/migrations/2015_03_05_170241_create_reports_table.php -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/lib/Archive/Archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/Archive/Archive.php -------------------------------------------------------------------------------- /app/lib/Archive/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/Archive/Exception.php -------------------------------------------------------------------------------- /app/lib/Archive/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/Archive/Factory.php -------------------------------------------------------------------------------- /app/lib/Archive/RarArchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/Archive/RarArchive.php -------------------------------------------------------------------------------- /app/lib/Archive/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/Archive/Utils.php -------------------------------------------------------------------------------- /app/lib/Archive/ZipArchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/Archive/ZipArchive.php -------------------------------------------------------------------------------- /app/lib/AsciiSafeDownloadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/AsciiSafeDownloadFile.php -------------------------------------------------------------------------------- /app/lib/DisplaySize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/DisplaySize.php -------------------------------------------------------------------------------- /app/lib/DisplayTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qqueue/MangaIndex/HEAD/app/lib/DisplayTime.php -------------------------------------------------------------------------------- /app/lib/GlobalViewSetup.php: -------------------------------------------------------------------------------- 1 |