├── .gitignore
├── sources
├── lib
│ └── .gitignore
└── app
│ ├── dict
│ ├── settings
│ │ ├── app.ini
│ │ ├── console.ini
│ │ └── f3.ini
│ └── l10n
│ │ └── en.php
│ ├── controllers
│ ├── controller.php
│ ├── home.php
│ ├── sign.php
│ ├── link.php
│ ├── admin.php
│ ├── links.php
│ ├── downloads.php
│ └── install.php
│ ├── models
│ ├── objects
│ │ ├── user.php
│ │ ├── mobject.php
│ │ ├── media.php
│ │ └── download.php
│ ├── media.php
│ ├── users.php
│ ├── config.php
│ ├── downloads.php
│ └── model.php
│ ├── views
│ ├── link.html
│ ├── footer.htm
│ ├── server-infos.htm
│ ├── links-browse.html
│ ├── login.html
│ ├── links-download.html
│ ├── home.html
│ ├── header.htm
│ ├── links-add.html
│ ├── install.html
│ ├── downloads.html
│ ├── link.htm
│ └── admin.html
│ ├── lib
│ ├── utils.php
│ ├── traits
│ │ └── readaccess.php
│ ├── validations
│ │ ├── rules
│ │ │ ├── youtubedl.php
│ │ │ └── phpversion.php
│ │ └── exceptions
│ │ │ ├── youtubedlexception.php
│ │ │ └── phpversionexception.php
│ ├── exception.php
│ ├── keyscounter.php
│ ├── human.php
│ ├── signedinuser.php
│ ├── command.php
│ ├── session.php
│ ├── install.php
│ ├── alerter.php
│ ├── logger.php
│ ├── debugger.php
│ ├── downloadsmanager.php
│ ├── formatinfo.php
│ ├── process.php
│ └── youtubedl.php
│ ├── bin
│ ├── bin.php
│ └── downloadsmanager.php
│ └── app.php
├── temp
└── .gitignore
├── resources
├── logs
│ └── .gitignore
├── databases
│ └── .gitignore
└── sessions
│ └── .gitignore
├── public
├── downloads
│ └── .gitignore
├── css
│ ├── code.css
│ ├── main.css
│ ├── gfonts.css
│ └── font-awesome.min.css
├── debugbar
├── img
│ ├── admin.jpg
│ ├── home.jpg
│ ├── links.jpg
│ └── list.jpg
├── index.php
├── fonts
│ ├── glyphicons
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── sourcesanspro
│ │ └── v9
│ │ ├── M2Jd71oPJhLKp0zdtTvoM40tgx99jmYGv_xzYuwd1rU.woff2
│ │ ├── M2Jd71oPJhLKp0zdtTvoM7YHq4FgHI02B8rPccK0FJQ.woff2
│ │ ├── M2Jd71oPJhLKp0zdtTvoMxgy2Fsj5sj3EzlXpqVXRKo.woff2
│ │ ├── ODelI1aHBYDBqgeIAH2zlC2Q8seG17bfDXYR_jUsrzg.woff2
│ │ ├── ODelI1aHBYDBqgeIAH2zlNOAHFN6BivSraYkjhveRHY.woff2
│ │ ├── ODelI1aHBYDBqgeIAH2zlNV_2ngZ8dMf8fLgjYEouxg.woff2
│ │ ├── toadOcfmlt9b38dHJxOBGDRVvBvQIc1z78c__uoBcyI.woff2
│ │ ├── toadOcfmlt9b38dHJxOBGD_j0nMiB9fPhg_k1wdK2h0.woff2
│ │ ├── toadOcfmlt9b38dHJxOBGDovqjS_dXPZszO_XltPdNg.woff2
│ │ ├── toadOcfmlt9b38dHJxOBGEo0As1BFRXtCDhS66znb_k.woff2
│ │ ├── toadOcfmlt9b38dHJxOBGFxe-GPfKKFmiXaJ_Q0GFr8.woff2
│ │ └── toadOcfmlt9b38dHJxOBGOode0-EuMkY--TSyExeINg.woff2
├── .htaccess
└── js
│ └── bootstrap.min.js
├── mdc
├── composer.json
├── README.md
├── LICENSE
└── composer.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/sources/lib/.gitignore:
--------------------------------------------------------------------------------
1 | composer/
2 |
--------------------------------------------------------------------------------
/temp/.gitignore:
--------------------------------------------------------------------------------
1 | /*
2 | /*/
3 | !/.gitignore
4 |
--------------------------------------------------------------------------------
/resources/logs/.gitignore:
--------------------------------------------------------------------------------
1 | /*
2 | /*/
3 | !/.gitignore
4 |
--------------------------------------------------------------------------------
/public/downloads/.gitignore:
--------------------------------------------------------------------------------
1 | /*
2 | /*/
3 | !/.gitignore
4 |
--------------------------------------------------------------------------------
/resources/databases/.gitignore:
--------------------------------------------------------------------------------
1 | /*
2 | /*/
3 | !/.gitignore
4 |
--------------------------------------------------------------------------------
/resources/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | /*
2 | /*/
3 | !/.gitignore
4 |
--------------------------------------------------------------------------------
/public/css/code.css:
--------------------------------------------------------------------------------
1 | ../../sources/lib/composer/bcosca/fatfree-core/code.css
--------------------------------------------------------------------------------
/public/debugbar:
--------------------------------------------------------------------------------
1 | ../sources/lib/composer/maximebf/debugbar/src/DebugBar/Resources/
--------------------------------------------------------------------------------
/public/img/admin.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/img/admin.jpg
--------------------------------------------------------------------------------
/public/img/home.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/img/home.jpg
--------------------------------------------------------------------------------
/public/img/links.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/img/links.jpg
--------------------------------------------------------------------------------
/public/img/list.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/img/list.jpg
--------------------------------------------------------------------------------
/sources/app/dict/settings/app.ini:
--------------------------------------------------------------------------------
1 | ; === App globals ===
2 | [App]
3 | Name=MediaDownloader
4 |
--------------------------------------------------------------------------------
/sources/app/controllers/controller.php:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/public/index.php:
--------------------------------------------------------------------------------
1 | Run();
--------------------------------------------------------------------------------
/public/fonts/glyphicons/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/fonts/glyphicons/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/fonts/glyphicons/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/fonts/glyphicons/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/fonts/glyphicons/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kallys/MediaDownloader/HEAD/public/fonts/glyphicons/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/sources/app/views/link.html:
--------------------------------------------------------------------------------
1 |