├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── albumgrab ├── composer.json ├── composer.lock ├── features ├── bootstrap │ └── FeatureContext.php ├── download_from_facebook.feature └── download_from_instagram.feature ├── images └── .gitignore ├── phpspec.yml.dist ├── spec ├── Console │ └── AlbumgrabApplicationSpec.php ├── DownloaderSpec.php ├── ElementSpec.php ├── Event │ └── DownloadAndSaveEventSpec.php ├── EventListener │ └── DownloadAndSaveListenerSpec.php ├── FacebookAlbumSpec.php └── GrabSpec.php └── src ├── Album.php ├── Console ├── AlbumgrabApplication.php └── Command │ └── DebugPageSourceCommand.php ├── DependencyInjection ├── Compiler │ └── RegisterConsoleCommandsPass.php ├── Configuration.php └── CrawlerExtension.php ├── Downloader.php ├── Element.php ├── Event └── DownloadAndSaveEvent.php ├── EventListener └── DownloadAndSaveListener.php ├── FacebookAlbum.php ├── Grab.php ├── GrabFactory.php ├── Image.php ├── RemoteResourceClient.php └── Resources └── config └── services.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/README.md -------------------------------------------------------------------------------- /bin/albumgrab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/bin/albumgrab -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/composer.lock -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/download_from_facebook.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/features/download_from_facebook.feature -------------------------------------------------------------------------------- /features/download_from_instagram.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/features/download_from_instagram.feature -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /phpspec.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/phpspec.yml.dist -------------------------------------------------------------------------------- /spec/Console/AlbumgrabApplicationSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/Console/AlbumgrabApplicationSpec.php -------------------------------------------------------------------------------- /spec/DownloaderSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/DownloaderSpec.php -------------------------------------------------------------------------------- /spec/ElementSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/ElementSpec.php -------------------------------------------------------------------------------- /spec/Event/DownloadAndSaveEventSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/Event/DownloadAndSaveEventSpec.php -------------------------------------------------------------------------------- /spec/EventListener/DownloadAndSaveListenerSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/EventListener/DownloadAndSaveListenerSpec.php -------------------------------------------------------------------------------- /spec/FacebookAlbumSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/FacebookAlbumSpec.php -------------------------------------------------------------------------------- /spec/GrabSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/spec/GrabSpec.php -------------------------------------------------------------------------------- /src/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Album.php -------------------------------------------------------------------------------- /src/Console/AlbumgrabApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Console/AlbumgrabApplication.php -------------------------------------------------------------------------------- /src/Console/Command/DebugPageSourceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Console/Command/DebugPageSourceCommand.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/RegisterConsoleCommandsPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/DependencyInjection/Compiler/RegisterConsoleCommandsPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/CrawlerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/DependencyInjection/CrawlerExtension.php -------------------------------------------------------------------------------- /src/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Downloader.php -------------------------------------------------------------------------------- /src/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Element.php -------------------------------------------------------------------------------- /src/Event/DownloadAndSaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Event/DownloadAndSaveEvent.php -------------------------------------------------------------------------------- /src/EventListener/DownloadAndSaveListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/EventListener/DownloadAndSaveListener.php -------------------------------------------------------------------------------- /src/FacebookAlbum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/FacebookAlbum.php -------------------------------------------------------------------------------- /src/Grab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Grab.php -------------------------------------------------------------------------------- /src/GrabFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/GrabFactory.php -------------------------------------------------------------------------------- /src/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Image.php -------------------------------------------------------------------------------- /src/RemoteResourceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/RemoteResourceClient.php -------------------------------------------------------------------------------- /src/Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamelso/albumgrab/HEAD/src/Resources/config/services.yml --------------------------------------------------------------------------------