├── .bowerrc ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── app.json ├── bower.json ├── configs └── config.default ├── package.json ├── scripts └── init.sh ├── src ├── controller │ ├── auth.js │ ├── config.js │ ├── directory.js │ ├── filetransfert.js │ ├── logs.js │ ├── main.js │ └── torrent.js ├── database │ ├── client.js │ └── server.js ├── index.js ├── public │ ├── index.html │ ├── login.html │ └── src │ │ ├── css │ │ ├── auth.css │ │ ├── config.css │ │ ├── left-menu.css │ │ ├── list.css │ │ ├── loading.css │ │ ├── mediainfo.css │ │ ├── searchtorrent.css │ │ ├── style.css │ │ ├── themes │ │ │ ├── icon.css │ │ │ └── theme.css │ │ ├── top-menu.css │ │ └── torrent.css │ │ ├── image │ │ ├── favicon.ico │ │ ├── file │ │ │ ├── avi.svg │ │ │ ├── css.svg │ │ │ ├── dir.svg │ │ │ ├── file.svg │ │ │ ├── html.svg │ │ │ ├── iso.svg │ │ │ ├── jpg.svg │ │ │ ├── js.svg │ │ │ ├── json.svg │ │ │ ├── mkv.svg │ │ │ ├── mp3.svg │ │ │ ├── mp4.svg │ │ │ ├── pdf.svg │ │ │ ├── png.svg │ │ │ ├── txt.svg │ │ │ ├── xml.svg │ │ │ └── zip.svg │ │ └── logo.svg │ │ └── js │ │ ├── app.js │ │ ├── auth.js │ │ ├── directory.js │ │ ├── format.js │ │ ├── left-menu.js │ │ ├── list.js │ │ ├── loading.js │ │ ├── mediainfo.js │ │ ├── searchtorrent.js │ │ ├── special-event.js │ │ ├── special-event │ │ └── jquery.snow.min.1.0.js │ │ ├── top-menu.js │ │ └── torrent.js └── worker │ ├── auth.js │ ├── client.js │ ├── config.js │ ├── directory.js │ ├── filetransfert.js │ ├── log.js │ ├── mediaInfo.js │ ├── searchtorrent.js │ └── torrent.js └── test └── test.js /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/.bowerrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/app.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/bower.json -------------------------------------------------------------------------------- /configs/config.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/configs/config.default -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/package.json -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /src/controller/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/auth.js -------------------------------------------------------------------------------- /src/controller/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/config.js -------------------------------------------------------------------------------- /src/controller/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/directory.js -------------------------------------------------------------------------------- /src/controller/filetransfert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/filetransfert.js -------------------------------------------------------------------------------- /src/controller/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/logs.js -------------------------------------------------------------------------------- /src/controller/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/main.js -------------------------------------------------------------------------------- /src/controller/torrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/controller/torrent.js -------------------------------------------------------------------------------- /src/database/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/database/client.js -------------------------------------------------------------------------------- /src/database/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/database/server.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/index.js -------------------------------------------------------------------------------- /src/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/index.html -------------------------------------------------------------------------------- /src/public/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/login.html -------------------------------------------------------------------------------- /src/public/src/css/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/auth.css -------------------------------------------------------------------------------- /src/public/src/css/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/config.css -------------------------------------------------------------------------------- /src/public/src/css/left-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/left-menu.css -------------------------------------------------------------------------------- /src/public/src/css/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/list.css -------------------------------------------------------------------------------- /src/public/src/css/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/loading.css -------------------------------------------------------------------------------- /src/public/src/css/mediainfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/mediainfo.css -------------------------------------------------------------------------------- /src/public/src/css/searchtorrent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/searchtorrent.css -------------------------------------------------------------------------------- /src/public/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/style.css -------------------------------------------------------------------------------- /src/public/src/css/themes/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/themes/icon.css -------------------------------------------------------------------------------- /src/public/src/css/themes/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/themes/theme.css -------------------------------------------------------------------------------- /src/public/src/css/top-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/top-menu.css -------------------------------------------------------------------------------- /src/public/src/css/torrent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/css/torrent.css -------------------------------------------------------------------------------- /src/public/src/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/favicon.ico -------------------------------------------------------------------------------- /src/public/src/image/file/avi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/avi.svg -------------------------------------------------------------------------------- /src/public/src/image/file/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/css.svg -------------------------------------------------------------------------------- /src/public/src/image/file/dir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/dir.svg -------------------------------------------------------------------------------- /src/public/src/image/file/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/file.svg -------------------------------------------------------------------------------- /src/public/src/image/file/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/html.svg -------------------------------------------------------------------------------- /src/public/src/image/file/iso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/iso.svg -------------------------------------------------------------------------------- /src/public/src/image/file/jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/jpg.svg -------------------------------------------------------------------------------- /src/public/src/image/file/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/js.svg -------------------------------------------------------------------------------- /src/public/src/image/file/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/json.svg -------------------------------------------------------------------------------- /src/public/src/image/file/mkv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/mkv.svg -------------------------------------------------------------------------------- /src/public/src/image/file/mp3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/mp3.svg -------------------------------------------------------------------------------- /src/public/src/image/file/mp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/mp4.svg -------------------------------------------------------------------------------- /src/public/src/image/file/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/pdf.svg -------------------------------------------------------------------------------- /src/public/src/image/file/png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/png.svg -------------------------------------------------------------------------------- /src/public/src/image/file/txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/txt.svg -------------------------------------------------------------------------------- /src/public/src/image/file/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/xml.svg -------------------------------------------------------------------------------- /src/public/src/image/file/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/file/zip.svg -------------------------------------------------------------------------------- /src/public/src/image/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/image/logo.svg -------------------------------------------------------------------------------- /src/public/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/app.js -------------------------------------------------------------------------------- /src/public/src/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/auth.js -------------------------------------------------------------------------------- /src/public/src/js/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/directory.js -------------------------------------------------------------------------------- /src/public/src/js/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/format.js -------------------------------------------------------------------------------- /src/public/src/js/left-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/left-menu.js -------------------------------------------------------------------------------- /src/public/src/js/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/list.js -------------------------------------------------------------------------------- /src/public/src/js/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/loading.js -------------------------------------------------------------------------------- /src/public/src/js/mediainfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/mediainfo.js -------------------------------------------------------------------------------- /src/public/src/js/searchtorrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/searchtorrent.js -------------------------------------------------------------------------------- /src/public/src/js/special-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/special-event.js -------------------------------------------------------------------------------- /src/public/src/js/special-event/jquery.snow.min.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/special-event/jquery.snow.min.1.0.js -------------------------------------------------------------------------------- /src/public/src/js/top-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/top-menu.js -------------------------------------------------------------------------------- /src/public/src/js/torrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/public/src/js/torrent.js -------------------------------------------------------------------------------- /src/worker/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/auth.js -------------------------------------------------------------------------------- /src/worker/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/client.js -------------------------------------------------------------------------------- /src/worker/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/config.js -------------------------------------------------------------------------------- /src/worker/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/directory.js -------------------------------------------------------------------------------- /src/worker/filetransfert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/filetransfert.js -------------------------------------------------------------------------------- /src/worker/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/log.js -------------------------------------------------------------------------------- /src/worker/mediaInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/mediaInfo.js -------------------------------------------------------------------------------- /src/worker/searchtorrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/searchtorrent.js -------------------------------------------------------------------------------- /src/worker/torrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/src/worker/torrent.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunik/Lunik-Torrent/HEAD/test/test.js --------------------------------------------------------------------------------