├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── CONTRIBUTING.md ├── README.md ├── TRACKER.md ├── assets ├── btc_qr.png └── sol_qr.png ├── auth ├── auth.go └── autocapture.go ├── cmd ├── diagnosis.go ├── fansly-scraper │ └── main.go ├── flags.go └── service.go ├── config.md ├── config ├── config.go └── config_updater.go ├── core ├── account.go ├── download.go ├── filter.go ├── livestream.go └── stream.go ├── db ├── database.go ├── models │ ├── file.go │ └── processed_post.go ├── repository │ ├── file_repository.go │ └── processed_post_repository.go └── service │ ├── file_service.go │ └── processed_post_service.go ├── download ├── chat_log.go ├── m3u8.go ├── messages.go ├── profile.go ├── purchases.go ├── stories.go └── timeline.go ├── example-config.toml ├── go.mod ├── go.sum ├── headers └── headers.go ├── interactions └── timeline.go ├── layout.kdl ├── logger └── logger.go ├── notifications └── notifications.go ├── posts ├── albums.go ├── individual_post.go ├── messages.go ├── stories.go └── timeline.go ├── service ├── chat_recorder.go ├── monitor.go ├── monitor_chat.go ├── monitor_unix.go └── monitor_windows.go ├── ui ├── account.go ├── completion.go ├── config_wizard.go ├── donate.go ├── download_actions.go ├── download_progress.go ├── filter.go ├── followed_models.go ├── interact_progress.go ├── livestream_monitor.go ├── loading.go ├── main_menu.go ├── model.go ├── purchase_progress.go ├── update.go └── wall_selection.go ├── updater └── updater.go └── utils ├── hash.go └── web.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/README.md -------------------------------------------------------------------------------- /TRACKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/TRACKER.md -------------------------------------------------------------------------------- /assets/btc_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/assets/btc_qr.png -------------------------------------------------------------------------------- /assets/sol_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/assets/sol_qr.png -------------------------------------------------------------------------------- /auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/auth/auth.go -------------------------------------------------------------------------------- /auth/autocapture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/auth/autocapture.go -------------------------------------------------------------------------------- /cmd/diagnosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/cmd/diagnosis.go -------------------------------------------------------------------------------- /cmd/fansly-scraper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/cmd/fansly-scraper/main.go -------------------------------------------------------------------------------- /cmd/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/cmd/flags.go -------------------------------------------------------------------------------- /cmd/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/cmd/service.go -------------------------------------------------------------------------------- /config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/config.md -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/config/config_updater.go -------------------------------------------------------------------------------- /core/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/core/account.go -------------------------------------------------------------------------------- /core/download.go: -------------------------------------------------------------------------------- 1 | package core 2 | -------------------------------------------------------------------------------- /core/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/core/filter.go -------------------------------------------------------------------------------- /core/livestream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/core/livestream.go -------------------------------------------------------------------------------- /core/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/core/stream.go -------------------------------------------------------------------------------- /db/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/database.go -------------------------------------------------------------------------------- /db/models/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/models/file.go -------------------------------------------------------------------------------- /db/models/processed_post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/models/processed_post.go -------------------------------------------------------------------------------- /db/repository/file_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/repository/file_repository.go -------------------------------------------------------------------------------- /db/repository/processed_post_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/repository/processed_post_repository.go -------------------------------------------------------------------------------- /db/service/file_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/service/file_service.go -------------------------------------------------------------------------------- /db/service/processed_post_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/db/service/processed_post_service.go -------------------------------------------------------------------------------- /download/chat_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/chat_log.go -------------------------------------------------------------------------------- /download/m3u8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/m3u8.go -------------------------------------------------------------------------------- /download/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/messages.go -------------------------------------------------------------------------------- /download/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/profile.go -------------------------------------------------------------------------------- /download/purchases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/purchases.go -------------------------------------------------------------------------------- /download/stories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/stories.go -------------------------------------------------------------------------------- /download/timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/download/timeline.go -------------------------------------------------------------------------------- /example-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/example-config.toml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/go.sum -------------------------------------------------------------------------------- /headers/headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/headers/headers.go -------------------------------------------------------------------------------- /interactions/timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/interactions/timeline.go -------------------------------------------------------------------------------- /layout.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/layout.kdl -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/logger/logger.go -------------------------------------------------------------------------------- /notifications/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/notifications/notifications.go -------------------------------------------------------------------------------- /posts/albums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/posts/albums.go -------------------------------------------------------------------------------- /posts/individual_post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/posts/individual_post.go -------------------------------------------------------------------------------- /posts/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/posts/messages.go -------------------------------------------------------------------------------- /posts/stories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/posts/stories.go -------------------------------------------------------------------------------- /posts/timeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/posts/timeline.go -------------------------------------------------------------------------------- /service/chat_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/service/chat_recorder.go -------------------------------------------------------------------------------- /service/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/service/monitor.go -------------------------------------------------------------------------------- /service/monitor_chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/service/monitor_chat.go -------------------------------------------------------------------------------- /service/monitor_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/service/monitor_unix.go -------------------------------------------------------------------------------- /service/monitor_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/service/monitor_windows.go -------------------------------------------------------------------------------- /ui/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/account.go -------------------------------------------------------------------------------- /ui/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/completion.go -------------------------------------------------------------------------------- /ui/config_wizard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/config_wizard.go -------------------------------------------------------------------------------- /ui/donate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/donate.go -------------------------------------------------------------------------------- /ui/download_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/download_actions.go -------------------------------------------------------------------------------- /ui/download_progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/download_progress.go -------------------------------------------------------------------------------- /ui/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/filter.go -------------------------------------------------------------------------------- /ui/followed_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/followed_models.go -------------------------------------------------------------------------------- /ui/interact_progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/interact_progress.go -------------------------------------------------------------------------------- /ui/livestream_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/livestream_monitor.go -------------------------------------------------------------------------------- /ui/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/loading.go -------------------------------------------------------------------------------- /ui/main_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/main_menu.go -------------------------------------------------------------------------------- /ui/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/model.go -------------------------------------------------------------------------------- /ui/purchase_progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/purchase_progress.go -------------------------------------------------------------------------------- /ui/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/update.go -------------------------------------------------------------------------------- /ui/wall_selection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/ui/wall_selection.go -------------------------------------------------------------------------------- /updater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/updater/updater.go -------------------------------------------------------------------------------- /utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/utils/hash.go -------------------------------------------------------------------------------- /utils/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnosto/fansly-scraper/HEAD/utils/web.go --------------------------------------------------------------------------------