Initial commit
commit
238e61025a
@ -0,0 +1,2 @@
|
|||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
indent_size = 4
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
|
[*.{yml,yaml}]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[compose.yaml]
|
||||||
|
indent_size = 4
|
||||||
@ -0,0 +1,65 @@
|
|||||||
|
APP_NAME=Laravel
|
||||||
|
APP_ENV=local
|
||||||
|
APP_KEY=
|
||||||
|
APP_DEBUG=true
|
||||||
|
APP_URL=http://localhost
|
||||||
|
|
||||||
|
APP_LOCALE=en
|
||||||
|
APP_FALLBACK_LOCALE=en
|
||||||
|
APP_FAKER_LOCALE=en_US
|
||||||
|
|
||||||
|
APP_MAINTENANCE_DRIVER=file
|
||||||
|
# APP_MAINTENANCE_STORE=database
|
||||||
|
|
||||||
|
PHP_CLI_SERVER_WORKERS=4
|
||||||
|
|
||||||
|
BCRYPT_ROUNDS=12
|
||||||
|
|
||||||
|
LOG_CHANNEL=stack
|
||||||
|
LOG_STACK=single
|
||||||
|
LOG_DEPRECATIONS_CHANNEL=null
|
||||||
|
LOG_LEVEL=debug
|
||||||
|
|
||||||
|
DB_CONNECTION=sqlite
|
||||||
|
# DB_HOST=127.0.0.1
|
||||||
|
# DB_PORT=3306
|
||||||
|
# DB_DATABASE=laravel
|
||||||
|
# DB_USERNAME=root
|
||||||
|
# DB_PASSWORD=
|
||||||
|
|
||||||
|
SESSION_DRIVER=database
|
||||||
|
SESSION_LIFETIME=120
|
||||||
|
SESSION_ENCRYPT=false
|
||||||
|
SESSION_PATH=/
|
||||||
|
SESSION_DOMAIN=null
|
||||||
|
|
||||||
|
BROADCAST_CONNECTION=log
|
||||||
|
FILESYSTEM_DISK=local
|
||||||
|
QUEUE_CONNECTION=database
|
||||||
|
|
||||||
|
CACHE_STORE=database
|
||||||
|
# CACHE_PREFIX=
|
||||||
|
|
||||||
|
MEMCACHED_HOST=127.0.0.1
|
||||||
|
|
||||||
|
REDIS_CLIENT=phpredis
|
||||||
|
REDIS_HOST=127.0.0.1
|
||||||
|
REDIS_PASSWORD=null
|
||||||
|
REDIS_PORT=6379
|
||||||
|
|
||||||
|
MAIL_MAILER=log
|
||||||
|
MAIL_SCHEME=null
|
||||||
|
MAIL_HOST=127.0.0.1
|
||||||
|
MAIL_PORT=2525
|
||||||
|
MAIL_USERNAME=null
|
||||||
|
MAIL_PASSWORD=null
|
||||||
|
MAIL_FROM_ADDRESS="hello@example.com"
|
||||||
|
MAIL_FROM_NAME="${APP_NAME}"
|
||||||
|
|
||||||
|
AWS_ACCESS_KEY_ID=
|
||||||
|
AWS_SECRET_ACCESS_KEY=
|
||||||
|
AWS_DEFAULT_REGION=us-east-1
|
||||||
|
AWS_BUCKET=
|
||||||
|
AWS_USE_PATH_STYLE_ENDPOINT=false
|
||||||
|
|
||||||
|
VITE_APP_NAME="${APP_NAME}"
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
* text=auto eol=lf
|
||||||
|
|
||||||
|
*.blade.php diff=html
|
||||||
|
*.css diff=css
|
||||||
|
*.html diff=html
|
||||||
|
*.md diff=markdown
|
||||||
|
*.php diff=php
|
||||||
|
|
||||||
|
/.github export-ignore
|
||||||
|
CHANGELOG.md export-ignore
|
||||||
|
.styleci.yml export-ignore
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
name: Issues
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [labeled]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
help-wanted:
|
||||||
|
uses: laravel/.github/.github/workflows/issues.yml@main
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
name: Pull Requests
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types: [opened]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
uneditable:
|
||||||
|
uses: laravel/.github/.github/workflows/pull-requests.yml@main
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
name: Tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- '*.x'
|
||||||
|
pull_request:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
|
matrix:
|
||||||
|
php: [8.2, 8.3, 8.4]
|
||||||
|
|
||||||
|
name: PHP ${{ matrix.php }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: ${{ matrix.php }}
|
||||||
|
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
|
||||||
|
coverage: none
|
||||||
|
|
||||||
|
- name: Install Composer dependencies
|
||||||
|
run: composer install --prefer-dist --no-interaction --no-progress
|
||||||
|
|
||||||
|
- name: Copy environment file
|
||||||
|
run: cp .env.example .env
|
||||||
|
|
||||||
|
- name: Generate app key
|
||||||
|
run: php artisan key:generate
|
||||||
|
|
||||||
|
- name: Execute tests
|
||||||
|
run: php artisan test
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
name: Update Changelog
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [released]
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update:
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
uses: laravel/.github/.github/workflows/update-changelog.yml@main
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
*.log
|
||||||
|
.DS_Store
|
||||||
|
.env
|
||||||
|
.env.backup
|
||||||
|
.env.production
|
||||||
|
.phpactor.json
|
||||||
|
.phpunit.result.cache
|
||||||
|
/.fleet
|
||||||
|
/.idea
|
||||||
|
/.nova
|
||||||
|
/.phpunit.cache
|
||||||
|
/.vscode
|
||||||
|
/.zed
|
||||||
|
/auth.json
|
||||||
|
/node_modules
|
||||||
|
/public/build
|
||||||
|
/public/hot
|
||||||
|
/public/storage
|
||||||
|
/storage/*.key
|
||||||
|
/storage/pail
|
||||||
|
/vendor
|
||||||
|
Homestead.json
|
||||||
|
Homestead.yaml
|
||||||
|
Thumbs.db
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
php:
|
||||||
|
preset: laravel
|
||||||
|
disabled:
|
||||||
|
- no_unused_imports
|
||||||
|
finder:
|
||||||
|
not-name:
|
||||||
|
- index.php
|
||||||
|
js: true
|
||||||
|
css: true
|
||||||
@ -0,0 +1,105 @@
|
|||||||
|
# Release Notes
|
||||||
|
|
||||||
|
## [Unreleased](https://github.com/laravel/laravel/compare/v12.7.0...12.x)
|
||||||
|
|
||||||
|
## [v12.7.0](https://github.com/laravel/laravel/compare/v12.6.0...v12.7.0) - 2025-10-14
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/laravel/laravel/compare/v12.6.0...v12.7.0
|
||||||
|
|
||||||
|
## [v12.6.0](https://github.com/laravel/laravel/compare/v12.5.0...v12.6.0) - 2025-10-02
|
||||||
|
|
||||||
|
* Fix setup script by [@goldmont](https://github.com/goldmont) in https://github.com/laravel/laravel/pull/6682
|
||||||
|
|
||||||
|
## [v12.5.0](https://github.com/laravel/laravel/compare/v12.4.0...v12.5.0) - 2025-09-30
|
||||||
|
|
||||||
|
* [12.x] Fix type casting for environment variables in config files by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6670
|
||||||
|
* Fix CVEs affecting vite by [@faissaloux](https://github.com/faissaloux) in https://github.com/laravel/laravel/pull/6672
|
||||||
|
* Update .editorconfig to target compose.yaml by [@fredikaputra](https://github.com/fredikaputra) in https://github.com/laravel/laravel/pull/6679
|
||||||
|
* Add pre-package-uninstall script to composer.json by [@cosmastech](https://github.com/cosmastech) in https://github.com/laravel/laravel/pull/6681
|
||||||
|
|
||||||
|
## [v12.4.0](https://github.com/laravel/laravel/compare/v12.3.1...v12.4.0) - 2025-08-29
|
||||||
|
|
||||||
|
* [12.x] Add default Redis retry configuration by [@mateusjatenee](https://github.com/mateusjatenee) in https://github.com/laravel/laravel/pull/6666
|
||||||
|
|
||||||
|
## [v12.3.1](https://github.com/laravel/laravel/compare/v12.3.0...v12.3.1) - 2025-08-21
|
||||||
|
|
||||||
|
* [12.x] Bump Pint version by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6653
|
||||||
|
* [12.x] Making sure all related processed are closed when terminating the currently command by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6654
|
||||||
|
* [12.x] Use application name from configuration by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6655
|
||||||
|
* Bring back postAutoloadDump script by [@jasonvarga](https://github.com/jasonvarga) in https://github.com/laravel/laravel/pull/6662
|
||||||
|
|
||||||
|
## [v12.3.0](https://github.com/laravel/laravel/compare/v12.2.0...v12.3.0) - 2025-08-03
|
||||||
|
|
||||||
|
* Fix Critical Security Vulnerability in form-data Dependency by [@izzygld](https://github.com/izzygld) in https://github.com/laravel/laravel/pull/6645
|
||||||
|
* Revert "fix" by [@RobertBoes](https://github.com/RobertBoes) in https://github.com/laravel/laravel/pull/6646
|
||||||
|
* Change composer post-autoload-dump script to Artisan command by [@lmjhs](https://github.com/lmjhs) in https://github.com/laravel/laravel/pull/6647
|
||||||
|
|
||||||
|
## [v12.2.0](https://github.com/laravel/laravel/compare/v12.1.0...v12.2.0) - 2025-07-11
|
||||||
|
|
||||||
|
* Add Vite 7 support by [@timacdonald](https://github.com/timacdonald) in https://github.com/laravel/laravel/pull/6639
|
||||||
|
|
||||||
|
## [v12.1.0](https://github.com/laravel/laravel/compare/v12.0.11...v12.1.0) - 2025-07-03
|
||||||
|
|
||||||
|
* [12.x] Disable nightwatch in testing by [@laserhybiz](https://github.com/laserhybiz) in https://github.com/laravel/laravel/pull/6632
|
||||||
|
* [12.x] Reorder environment variables in phpunit.xml for logical grouping by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6634
|
||||||
|
* Change to hyphenate prefixes and cookie names by [@u01jmg3](https://github.com/u01jmg3) in https://github.com/laravel/laravel/pull/6636
|
||||||
|
* [12.x] Fix type casting for environment variables in config files by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6637
|
||||||
|
|
||||||
|
## [v12.0.11](https://github.com/laravel/laravel/compare/v12.0.10...v12.0.11) - 2025-06-10
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/laravel/laravel/compare/v12.0.10...v12.0.11
|
||||||
|
|
||||||
|
## [v12.0.10](https://github.com/laravel/laravel/compare/v12.0.9...v12.0.10) - 2025-06-09
|
||||||
|
|
||||||
|
* fix alphabetical order by [@Khuthaily](https://github.com/Khuthaily) in https://github.com/laravel/laravel/pull/6627
|
||||||
|
* [12.x] Reduce redundancy and keeps the .gitignore file cleaner by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6629
|
||||||
|
* [12.x] Fix: Add void return type to satisfy Rector analysis by [@Aluisio-Pires](https://github.com/Aluisio-Pires) in https://github.com/laravel/laravel/pull/6628
|
||||||
|
|
||||||
|
## [v12.0.9](https://github.com/laravel/laravel/compare/v12.0.8...v12.0.9) - 2025-05-26
|
||||||
|
|
||||||
|
* [12.x] Remove apc by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6611
|
||||||
|
* [12.x] Add JSON Schema to package.json by [@martinbean](https://github.com/martinbean) in https://github.com/laravel/laravel/pull/6613
|
||||||
|
* Minor language update by [@woganmay](https://github.com/woganmay) in https://github.com/laravel/laravel/pull/6615
|
||||||
|
* Enhance .gitignore to exclude common OS and log files by [@mohammadRezaei1380](https://github.com/mohammadRezaei1380) in https://github.com/laravel/laravel/pull/6619
|
||||||
|
|
||||||
|
## [v12.0.8](https://github.com/laravel/laravel/compare/v12.0.7...v12.0.8) - 2025-05-12
|
||||||
|
|
||||||
|
* [12.x] Clean up URL formatting in README by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6601
|
||||||
|
|
||||||
|
## [v12.0.7](https://github.com/laravel/laravel/compare/v12.0.6...v12.0.7) - 2025-04-15
|
||||||
|
|
||||||
|
* Add `composer run test` command by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/laravel/pull/6598
|
||||||
|
* Partner Directory Changes in ReadME by [@joshcirre](https://github.com/joshcirre) in https://github.com/laravel/laravel/pull/6599
|
||||||
|
|
||||||
|
## [v12.0.6](https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6) - 2025-04-08
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/laravel/laravel/compare/v12.0.5...v12.0.6
|
||||||
|
|
||||||
|
## [v12.0.5](https://github.com/laravel/laravel/compare/v12.0.4...v12.0.5) - 2025-04-02
|
||||||
|
|
||||||
|
* [12.x] Update `config/mail.php` to match the latest core configuration by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6594
|
||||||
|
|
||||||
|
## [v12.0.4](https://github.com/laravel/laravel/compare/v12.0.3...v12.0.4) - 2025-03-31
|
||||||
|
|
||||||
|
* Bump vite from 6.0.11 to 6.2.3 - Vulnerability patch by [@abdel-aouby](https://github.com/abdel-aouby) in https://github.com/laravel/laravel/pull/6586
|
||||||
|
* Bump vite from 6.2.3 to 6.2.4 by [@thinkverse](https://github.com/thinkverse) in https://github.com/laravel/laravel/pull/6590
|
||||||
|
|
||||||
|
## [v12.0.3](https://github.com/laravel/laravel/compare/v12.0.2...v12.0.3) - 2025-03-17
|
||||||
|
|
||||||
|
* Remove reverted change from CHANGELOG.md by [@AJenbo](https://github.com/AJenbo) in https://github.com/laravel/laravel/pull/6565
|
||||||
|
* Improves clarity in app.css file by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6569
|
||||||
|
* [12.x] Refactor: Structural improvement for clarity by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6574
|
||||||
|
* Bump axios from 1.7.9 to 1.8.2 - Vulnerability patch by [@abdel-aouby](https://github.com/abdel-aouby) in https://github.com/laravel/laravel/pull/6572
|
||||||
|
* [12.x] Remove Unnecessarily [@source](https://github.com/source) by [@AhmedAlaa4611](https://github.com/AhmedAlaa4611) in https://github.com/laravel/laravel/pull/6584
|
||||||
|
|
||||||
|
## [v12.0.2](https://github.com/laravel/laravel/compare/v12.0.1...v12.0.2) - 2025-03-04
|
||||||
|
|
||||||
|
* Make the github test action run out of the box independent of the choice of testing framework by [@ndeblauw](https://github.com/ndeblauw) in https://github.com/laravel/laravel/pull/6555
|
||||||
|
|
||||||
|
## [v12.0.1](https://github.com/laravel/laravel/compare/v12.0.0...v12.0.1) - 2025-02-24
|
||||||
|
|
||||||
|
* [12.x] prefer stable stability by [@pataar](https://github.com/pataar) in https://github.com/laravel/laravel/pull/6548
|
||||||
|
|
||||||
|
## [v12.0.0 (2025-??-??)](https://github.com/laravel/laravel/compare/v11.0.2...v12.0.0)
|
||||||
|
|
||||||
|
Laravel 12 includes a variety of changes to the application skeleton. Please consult the diff to see what's new.
|
||||||
@ -0,0 +1,61 @@
|
|||||||
|
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
|
||||||
|
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
|
||||||
|
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
|
||||||
|
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## About Laravel
|
||||||
|
|
||||||
|
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
|
||||||
|
|
||||||
|
- [Simple, fast routing engine](https://laravel.com/docs/routing).
|
||||||
|
- [Powerful dependency injection container](https://laravel.com/docs/container).
|
||||||
|
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
|
||||||
|
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
|
||||||
|
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
|
||||||
|
- [Robust background job processing](https://laravel.com/docs/queues).
|
||||||
|
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
|
||||||
|
|
||||||
|
Laravel is accessible, powerful, and provides tools required for large, robust applications.
|
||||||
|
|
||||||
|
## Learning Laravel
|
||||||
|
|
||||||
|
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
|
||||||
|
|
||||||
|
You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
|
||||||
|
|
||||||
|
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
|
||||||
|
|
||||||
|
## Laravel Sponsors
|
||||||
|
|
||||||
|
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
|
||||||
|
|
||||||
|
### Premium Partners
|
||||||
|
|
||||||
|
- **[Vehikl](https://vehikl.com)**
|
||||||
|
- **[Tighten Co.](https://tighten.co)**
|
||||||
|
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
|
||||||
|
- **[64 Robots](https://64robots.com)**
|
||||||
|
- **[Curotec](https://www.curotec.com/services/technologies/laravel)**
|
||||||
|
- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
|
||||||
|
- **[Redberry](https://redberry.international/laravel-development)**
|
||||||
|
- **[Active Logic](https://activelogic.com)**
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
|
||||||
|
|
||||||
|
## Code of Conduct
|
||||||
|
|
||||||
|
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
|
||||||
|
|
||||||
|
## Security Vulnerabilities
|
||||||
|
|
||||||
|
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
abstract class Controller
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
class ConverterController extends Controller
|
||||||
|
{
|
||||||
|
public function showForm()
|
||||||
|
{
|
||||||
|
return view('convert');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function convert(Request $request)
|
||||||
|
{
|
||||||
|
$kg = $request->input('kg');
|
||||||
|
$lbs = $request->input('lbs');
|
||||||
|
$result = null;
|
||||||
|
|
||||||
|
// Convert one direction based on which field is filled
|
||||||
|
if ($kg && !$lbs) {
|
||||||
|
$lbs = $kg * 2.20462;
|
||||||
|
$result = "{$kg} KG = " . number_format($lbs, 2) . " lbs";
|
||||||
|
} elseif ($lbs && !$kg) {
|
||||||
|
$kg = $lbs / 2.20462;
|
||||||
|
$result = "{$lbs} lbs = " . number_format($kg, 2) . " KG";
|
||||||
|
} else {
|
||||||
|
$result = "Please fill only one field!";
|
||||||
|
}
|
||||||
|
|
||||||
|
return view('convert', [
|
||||||
|
'kg' => $kg,
|
||||||
|
'lbs' => $lbs,
|
||||||
|
'result' => $result,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||||
|
use Illuminate\Notifications\Notifiable;
|
||||||
|
|
||||||
|
class User extends Authenticatable
|
||||||
|
{
|
||||||
|
/** @use HasFactory<\Database\Factories\UserFactory> */
|
||||||
|
use HasFactory, Notifiable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The attributes that are mass assignable.
|
||||||
|
*
|
||||||
|
* @var list<string>
|
||||||
|
*/
|
||||||
|
protected $fillable = [
|
||||||
|
'name',
|
||||||
|
'email',
|
||||||
|
'password',
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The attributes that should be hidden for serialization.
|
||||||
|
*
|
||||||
|
* @var list<string>
|
||||||
|
*/
|
||||||
|
protected $hidden = [
|
||||||
|
'password',
|
||||||
|
'remember_token',
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the attributes that should be cast.
|
||||||
|
*
|
||||||
|
* @return array<string, string>
|
||||||
|
*/
|
||||||
|
protected function casts(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'email_verified_at' => 'datetime',
|
||||||
|
'password' => 'hashed',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Providers;
|
||||||
|
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
|
||||||
|
class AppServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Register any application services.
|
||||||
|
*/
|
||||||
|
public function register(): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bootstrap any application services.
|
||||||
|
*/
|
||||||
|
public function boot(): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env php
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Application;
|
||||||
|
use Symfony\Component\Console\Input\ArgvInput;
|
||||||
|
|
||||||
|
define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
|
// Register the Composer autoloader...
|
||||||
|
require __DIR__.'/vendor/autoload.php';
|
||||||
|
|
||||||
|
// Bootstrap Laravel and handle the command...
|
||||||
|
/** @var Application $app */
|
||||||
|
$app = require_once __DIR__.'/bootstrap/app.php';
|
||||||
|
|
||||||
|
$status = $app->handleCommand(new ArgvInput);
|
||||||
|
|
||||||
|
exit($status);
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Application;
|
||||||
|
use Illuminate\Foundation\Configuration\Exceptions;
|
||||||
|
use Illuminate\Foundation\Configuration\Middleware;
|
||||||
|
|
||||||
|
return Application::configure(basePath: dirname(__DIR__))
|
||||||
|
->withRouting(
|
||||||
|
web: __DIR__.'/../routes/web.php',
|
||||||
|
commands: __DIR__.'/../routes/console.php',
|
||||||
|
health: '/up',
|
||||||
|
)
|
||||||
|
->withMiddleware(function (Middleware $middleware): void {
|
||||||
|
//
|
||||||
|
})
|
||||||
|
->withExceptions(function (Exceptions $exceptions): void {
|
||||||
|
//
|
||||||
|
})->create();
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
App\Providers\AppServiceProvider::class,
|
||||||
|
];
|
||||||
@ -0,0 +1,86 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://getcomposer.org/schema.json",
|
||||||
|
"name": "laravel/laravel",
|
||||||
|
"type": "project",
|
||||||
|
"description": "The skeleton application for the Laravel framework.",
|
||||||
|
"keywords": ["laravel", "framework"],
|
||||||
|
"license": "MIT",
|
||||||
|
"require": {
|
||||||
|
"php": "^8.2",
|
||||||
|
"laravel/framework": "^12.0",
|
||||||
|
"laravel/tinker": "^2.10.1"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"fakerphp/faker": "^1.23",
|
||||||
|
"laravel/pail": "^1.2.2",
|
||||||
|
"laravel/pint": "^1.24",
|
||||||
|
"laravel/sail": "^1.41",
|
||||||
|
"mockery/mockery": "^1.6",
|
||||||
|
"nunomaduro/collision": "^8.6",
|
||||||
|
"phpunit/phpunit": "^11.5.3"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"App\\": "app/",
|
||||||
|
"Database\\Factories\\": "database/factories/",
|
||||||
|
"Database\\Seeders\\": "database/seeders/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload-dev": {
|
||||||
|
"psr-4": {
|
||||||
|
"Tests\\": "tests/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"setup": [
|
||||||
|
"composer install",
|
||||||
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
|
||||||
|
"@php artisan key:generate",
|
||||||
|
"@php artisan migrate --force",
|
||||||
|
"npm install",
|
||||||
|
"npm run build"
|
||||||
|
],
|
||||||
|
"dev": [
|
||||||
|
"Composer\\Config::disableProcessTimeout",
|
||||||
|
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite --kill-others"
|
||||||
|
],
|
||||||
|
"test": [
|
||||||
|
"@php artisan config:clear --ansi",
|
||||||
|
"@php artisan test"
|
||||||
|
],
|
||||||
|
"post-autoload-dump": [
|
||||||
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||||
|
"@php artisan package:discover --ansi"
|
||||||
|
],
|
||||||
|
"post-update-cmd": [
|
||||||
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||||
|
],
|
||||||
|
"post-root-package-install": [
|
||||||
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||||
|
],
|
||||||
|
"post-create-project-cmd": [
|
||||||
|
"@php artisan key:generate --ansi",
|
||||||
|
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
||||||
|
"@php artisan migrate --graceful --ansi"
|
||||||
|
],
|
||||||
|
"pre-package-uninstall": [
|
||||||
|
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"laravel": {
|
||||||
|
"dont-discover": []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"optimize-autoloader": true,
|
||||||
|
"preferred-install": "dist",
|
||||||
|
"sort-packages": true,
|
||||||
|
"allow-plugins": {
|
||||||
|
"pestphp/pest-plugin": true,
|
||||||
|
"php-http/discovery": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimum-stability": "stable",
|
||||||
|
"prefer-stable": true
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,126 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value is the name of your application, which will be used when the
|
||||||
|
| framework needs to place the application's name in a notification or
|
||||||
|
| other UI elements where an application name needs to be displayed.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'name' => env('APP_NAME', 'Laravel'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Environment
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value determines the "environment" your application is currently
|
||||||
|
| running in. This may determine how you prefer to configure various
|
||||||
|
| services the application utilizes. Set this in your ".env" file.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'env' => env('APP_ENV', 'production'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Debug Mode
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When your application is in debug mode, detailed error messages with
|
||||||
|
| stack traces will be shown on every error that occurs within your
|
||||||
|
| application. If disabled, a simple generic error page is shown.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'debug' => (bool) env('APP_DEBUG', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application URL
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This URL is used by the console to properly generate URLs when using
|
||||||
|
| the Artisan command line tool. You should set this to the root of
|
||||||
|
| the application so that it's available within Artisan commands.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'url' => env('APP_URL', 'http://localhost'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Timezone
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify the default timezone for your application, which
|
||||||
|
| will be used by the PHP date and date-time functions. The timezone
|
||||||
|
| is set to "UTC" by default as it is suitable for most use cases.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'timezone' => 'UTC',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Application Locale Configuration
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The application locale determines the default locale that will be used
|
||||||
|
| by Laravel's translation / localization methods. This option can be
|
||||||
|
| set to any locale for which you plan to have translation strings.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'locale' => env('APP_LOCALE', 'en'),
|
||||||
|
|
||||||
|
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
|
||||||
|
|
||||||
|
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Encryption Key
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This key is utilized by Laravel's encryption services and should be set
|
||||||
|
| to a random, 32 character string to ensure that all encrypted values
|
||||||
|
| are secure. You should do this prior to deploying the application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'cipher' => 'AES-256-CBC',
|
||||||
|
|
||||||
|
'key' => env('APP_KEY'),
|
||||||
|
|
||||||
|
'previous_keys' => [
|
||||||
|
...array_filter(
|
||||||
|
explode(',', (string) env('APP_PREVIOUS_KEYS', ''))
|
||||||
|
),
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Maintenance Mode Driver
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These configuration options determine the driver used to determine and
|
||||||
|
| manage Laravel's "maintenance mode" status. The "cache" driver will
|
||||||
|
| allow maintenance mode to be controlled across multiple machines.
|
||||||
|
|
|
||||||
|
| Supported drivers: "file", "cache"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'maintenance' => [
|
||||||
|
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
||||||
|
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,115 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Authentication Defaults
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option defines the default authentication "guard" and password
|
||||||
|
| reset "broker" for your application. You may change these values
|
||||||
|
| as required, but they're a perfect start for most applications.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'defaults' => [
|
||||||
|
'guard' => env('AUTH_GUARD', 'web'),
|
||||||
|
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Authentication Guards
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Next, you may define every authentication guard for your application.
|
||||||
|
| Of course, a great default configuration has been defined for you
|
||||||
|
| which utilizes session storage plus the Eloquent user provider.
|
||||||
|
|
|
||||||
|
| All authentication guards have a user provider, which defines how the
|
||||||
|
| users are actually retrieved out of your database or other storage
|
||||||
|
| system used by the application. Typically, Eloquent is utilized.
|
||||||
|
|
|
||||||
|
| Supported: "session"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'guards' => [
|
||||||
|
'web' => [
|
||||||
|
'driver' => 'session',
|
||||||
|
'provider' => 'users',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| User Providers
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| All authentication guards have a user provider, which defines how the
|
||||||
|
| users are actually retrieved out of your database or other storage
|
||||||
|
| system used by the application. Typically, Eloquent is utilized.
|
||||||
|
|
|
||||||
|
| If you have multiple user tables or models you may configure multiple
|
||||||
|
| providers to represent the model / table. These providers may then
|
||||||
|
| be assigned to any extra authentication guards you have defined.
|
||||||
|
|
|
||||||
|
| Supported: "database", "eloquent"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'providers' => [
|
||||||
|
'users' => [
|
||||||
|
'driver' => 'eloquent',
|
||||||
|
'model' => env('AUTH_MODEL', App\Models\User::class),
|
||||||
|
],
|
||||||
|
|
||||||
|
// 'users' => [
|
||||||
|
// 'driver' => 'database',
|
||||||
|
// 'table' => 'users',
|
||||||
|
// ],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Resetting Passwords
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These configuration options specify the behavior of Laravel's password
|
||||||
|
| reset functionality, including the table utilized for token storage
|
||||||
|
| and the user provider that is invoked to actually retrieve users.
|
||||||
|
|
|
||||||
|
| The expiry time is the number of minutes that each reset token will be
|
||||||
|
| considered valid. This security feature keeps tokens short-lived so
|
||||||
|
| they have less time to be guessed. You may change this as needed.
|
||||||
|
|
|
||||||
|
| The throttle setting is the number of seconds a user must wait before
|
||||||
|
| generating more password reset tokens. This prevents the user from
|
||||||
|
| quickly generating a very large amount of password reset tokens.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'passwords' => [
|
||||||
|
'users' => [
|
||||||
|
'provider' => 'users',
|
||||||
|
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
|
||||||
|
'expire' => 60,
|
||||||
|
'throttle' => 60,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Password Confirmation Timeout
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may define the number of seconds before a password confirmation
|
||||||
|
| window expires and users are asked to re-enter their password via the
|
||||||
|
| confirmation screen. By default, the timeout lasts for three hours.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,108 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Cache Store
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the default cache store that will be used by the
|
||||||
|
| framework. This connection is utilized if another isn't explicitly
|
||||||
|
| specified when running a cache operation inside the application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('CACHE_STORE', 'database'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Cache Stores
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may define all of the cache "stores" for your application as
|
||||||
|
| well as their drivers. You may even define multiple stores for the
|
||||||
|
| same cache driver to group types of items stored in your caches.
|
||||||
|
|
|
||||||
|
| Supported drivers: "array", "database", "file", "memcached",
|
||||||
|
| "redis", "dynamodb", "octane", "null"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'stores' => [
|
||||||
|
|
||||||
|
'array' => [
|
||||||
|
'driver' => 'array',
|
||||||
|
'serialize' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'database' => [
|
||||||
|
'driver' => 'database',
|
||||||
|
'connection' => env('DB_CACHE_CONNECTION'),
|
||||||
|
'table' => env('DB_CACHE_TABLE', 'cache'),
|
||||||
|
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||||
|
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'file' => [
|
||||||
|
'driver' => 'file',
|
||||||
|
'path' => storage_path('framework/cache/data'),
|
||||||
|
'lock_path' => storage_path('framework/cache/data'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'memcached' => [
|
||||||
|
'driver' => 'memcached',
|
||||||
|
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||||
|
'sasl' => [
|
||||||
|
env('MEMCACHED_USERNAME'),
|
||||||
|
env('MEMCACHED_PASSWORD'),
|
||||||
|
],
|
||||||
|
'options' => [
|
||||||
|
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||||
|
],
|
||||||
|
'servers' => [
|
||||||
|
[
|
||||||
|
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('MEMCACHED_PORT', 11211),
|
||||||
|
'weight' => 100,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'redis' => [
|
||||||
|
'driver' => 'redis',
|
||||||
|
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||||
|
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'dynamodb' => [
|
||||||
|
'driver' => 'dynamodb',
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||||
|
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||||
|
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'octane' => [
|
||||||
|
'driver' => 'octane',
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Cache Key Prefix
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
|
||||||
|
| stores, there might be other applications using the same cache. For
|
||||||
|
| that reason, you may prefix every cache key to avoid collisions.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,183 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Database Connection Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify which of the database connections below you wish
|
||||||
|
| to use as your default connection for database operations. This is
|
||||||
|
| the connection which will be utilized unless another connection
|
||||||
|
| is explicitly specified when you execute a query / statement.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('DB_CONNECTION', 'sqlite'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Database Connections
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Below are all of the database connections defined for your application.
|
||||||
|
| An example configuration is provided for each database system which
|
||||||
|
| is supported by Laravel. You're free to add / remove connections.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'connections' => [
|
||||||
|
|
||||||
|
'sqlite' => [
|
||||||
|
'driver' => 'sqlite',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||||
|
'prefix' => '',
|
||||||
|
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||||
|
'busy_timeout' => null,
|
||||||
|
'journal_mode' => null,
|
||||||
|
'synchronous' => null,
|
||||||
|
'transaction_mode' => 'DEFERRED',
|
||||||
|
],
|
||||||
|
|
||||||
|
'mysql' => [
|
||||||
|
'driver' => 'mysql',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('DB_PORT', '3306'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'unix_socket' => env('DB_SOCKET', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||||
|
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
'strict' => true,
|
||||||
|
'engine' => null,
|
||||||
|
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||||
|
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||||
|
]) : [],
|
||||||
|
],
|
||||||
|
|
||||||
|
'mariadb' => [
|
||||||
|
'driver' => 'mariadb',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('DB_PORT', '3306'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'unix_socket' => env('DB_SOCKET', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||||
|
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
'strict' => true,
|
||||||
|
'engine' => null,
|
||||||
|
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||||
|
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||||
|
]) : [],
|
||||||
|
],
|
||||||
|
|
||||||
|
'pgsql' => [
|
||||||
|
'driver' => 'pgsql',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('DB_PORT', '5432'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
'search_path' => 'public',
|
||||||
|
'sslmode' => 'prefer',
|
||||||
|
],
|
||||||
|
|
||||||
|
'sqlsrv' => [
|
||||||
|
'driver' => 'sqlsrv',
|
||||||
|
'url' => env('DB_URL'),
|
||||||
|
'host' => env('DB_HOST', 'localhost'),
|
||||||
|
'port' => env('DB_PORT', '1433'),
|
||||||
|
'database' => env('DB_DATABASE', 'laravel'),
|
||||||
|
'username' => env('DB_USERNAME', 'root'),
|
||||||
|
'password' => env('DB_PASSWORD', ''),
|
||||||
|
'charset' => env('DB_CHARSET', 'utf8'),
|
||||||
|
'prefix' => '',
|
||||||
|
'prefix_indexes' => true,
|
||||||
|
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
|
||||||
|
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Migration Repository Table
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This table keeps track of all the migrations that have already run for
|
||||||
|
| your application. Using this information, we can determine which of
|
||||||
|
| the migrations on disk haven't actually been run on the database.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'migrations' => [
|
||||||
|
'table' => 'migrations',
|
||||||
|
'update_date_on_publish' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Redis Databases
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Redis is an open source, fast, and advanced key-value store that also
|
||||||
|
| provides a richer body of commands than a typical key-value system
|
||||||
|
| such as Memcached. You may define your connection settings here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'redis' => [
|
||||||
|
|
||||||
|
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||||
|
|
||||||
|
'options' => [
|
||||||
|
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||||
|
'prefix' => env('REDIS_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-database-'),
|
||||||
|
'persistent' => env('REDIS_PERSISTENT', false),
|
||||||
|
],
|
||||||
|
|
||||||
|
'default' => [
|
||||||
|
'url' => env('REDIS_URL'),
|
||||||
|
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||||
|
'username' => env('REDIS_USERNAME'),
|
||||||
|
'password' => env('REDIS_PASSWORD'),
|
||||||
|
'port' => env('REDIS_PORT', '6379'),
|
||||||
|
'database' => env('REDIS_DB', '0'),
|
||||||
|
'max_retries' => env('REDIS_MAX_RETRIES', 3),
|
||||||
|
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
|
||||||
|
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
|
||||||
|
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
|
||||||
|
],
|
||||||
|
|
||||||
|
'cache' => [
|
||||||
|
'url' => env('REDIS_URL'),
|
||||||
|
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||||
|
'username' => env('REDIS_USERNAME'),
|
||||||
|
'password' => env('REDIS_PASSWORD'),
|
||||||
|
'port' => env('REDIS_PORT', '6379'),
|
||||||
|
'database' => env('REDIS_CACHE_DB', '1'),
|
||||||
|
'max_retries' => env('REDIS_MAX_RETRIES', 3),
|
||||||
|
'backoff_algorithm' => env('REDIS_BACKOFF_ALGORITHM', 'decorrelated_jitter'),
|
||||||
|
'backoff_base' => env('REDIS_BACKOFF_BASE', 100),
|
||||||
|
'backoff_cap' => env('REDIS_BACKOFF_CAP', 1000),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,80 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Filesystem Disk
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify the default filesystem disk that should be used
|
||||||
|
| by the framework. The "local" disk, as well as a variety of cloud
|
||||||
|
| based disks are available to your application for file storage.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('FILESYSTEM_DISK', 'local'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Filesystem Disks
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Below you may configure as many filesystem disks as necessary, and you
|
||||||
|
| may even configure multiple disks for the same driver. Examples for
|
||||||
|
| most supported storage drivers are configured here for reference.
|
||||||
|
|
|
||||||
|
| Supported drivers: "local", "ftp", "sftp", "s3"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'disks' => [
|
||||||
|
|
||||||
|
'local' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => storage_path('app/private'),
|
||||||
|
'serve' => true,
|
||||||
|
'throw' => false,
|
||||||
|
'report' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'public' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => storage_path('app/public'),
|
||||||
|
'url' => env('APP_URL').'/storage',
|
||||||
|
'visibility' => 'public',
|
||||||
|
'throw' => false,
|
||||||
|
'report' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
's3' => [
|
||||||
|
'driver' => 's3',
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION'),
|
||||||
|
'bucket' => env('AWS_BUCKET'),
|
||||||
|
'url' => env('AWS_URL'),
|
||||||
|
'endpoint' => env('AWS_ENDPOINT'),
|
||||||
|
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
||||||
|
'throw' => false,
|
||||||
|
'report' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Symbolic Links
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure the symbolic links that will be created when the
|
||||||
|
| `storage:link` Artisan command is executed. The array keys should be
|
||||||
|
| the locations of the links and the values should be their targets.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'links' => [
|
||||||
|
public_path('storage') => storage_path('app/public'),
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,132 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Monolog\Handler\NullHandler;
|
||||||
|
use Monolog\Handler\StreamHandler;
|
||||||
|
use Monolog\Handler\SyslogUdpHandler;
|
||||||
|
use Monolog\Processor\PsrLogMessageProcessor;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Log Channel
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option defines the default log channel that is utilized to write
|
||||||
|
| messages to your logs. The value provided here should match one of
|
||||||
|
| the channels present in the list of "channels" configured below.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('LOG_CHANNEL', 'stack'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Deprecations Log Channel
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the log channel that should be used to log warnings
|
||||||
|
| regarding deprecated PHP and library features. This allows you to get
|
||||||
|
| your application ready for upcoming major versions of dependencies.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'deprecations' => [
|
||||||
|
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
|
||||||
|
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Log Channels
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure the log channels for your application. Laravel
|
||||||
|
| utilizes the Monolog PHP logging library, which includes a variety
|
||||||
|
| of powerful log handlers and formatters that you're free to use.
|
||||||
|
|
|
||||||
|
| Available drivers: "single", "daily", "slack", "syslog",
|
||||||
|
| "errorlog", "monolog", "custom", "stack"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'channels' => [
|
||||||
|
|
||||||
|
'stack' => [
|
||||||
|
'driver' => 'stack',
|
||||||
|
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
|
||||||
|
'ignore_exceptions' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'single' => [
|
||||||
|
'driver' => 'single',
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'daily' => [
|
||||||
|
'driver' => 'daily',
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'days' => env('LOG_DAILY_DAYS', 14),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'slack' => [
|
||||||
|
'driver' => 'slack',
|
||||||
|
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||||
|
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
|
||||||
|
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
|
||||||
|
'level' => env('LOG_LEVEL', 'critical'),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'papertrail' => [
|
||||||
|
'driver' => 'monolog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
|
||||||
|
'handler_with' => [
|
||||||
|
'host' => env('PAPERTRAIL_URL'),
|
||||||
|
'port' => env('PAPERTRAIL_PORT'),
|
||||||
|
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
|
||||||
|
],
|
||||||
|
'processors' => [PsrLogMessageProcessor::class],
|
||||||
|
],
|
||||||
|
|
||||||
|
'stderr' => [
|
||||||
|
'driver' => 'monolog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'handler' => StreamHandler::class,
|
||||||
|
'handler_with' => [
|
||||||
|
'stream' => 'php://stderr',
|
||||||
|
],
|
||||||
|
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||||
|
'processors' => [PsrLogMessageProcessor::class],
|
||||||
|
],
|
||||||
|
|
||||||
|
'syslog' => [
|
||||||
|
'driver' => 'syslog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'errorlog' => [
|
||||||
|
'driver' => 'errorlog',
|
||||||
|
'level' => env('LOG_LEVEL', 'debug'),
|
||||||
|
'replace_placeholders' => true,
|
||||||
|
],
|
||||||
|
|
||||||
|
'null' => [
|
||||||
|
'driver' => 'monolog',
|
||||||
|
'handler' => NullHandler::class,
|
||||||
|
],
|
||||||
|
|
||||||
|
'emergency' => [
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,118 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Mailer
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the default mailer that is used to send all email
|
||||||
|
| messages unless another mailer is explicitly specified when sending
|
||||||
|
| the message. All additional mailers can be configured within the
|
||||||
|
| "mailers" array. Examples of each type of mailer are provided.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('MAIL_MAILER', 'log'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Mailer Configurations
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure all of the mailers used by your application plus
|
||||||
|
| their respective settings. Several examples have been configured for
|
||||||
|
| you and you are free to add your own as your application requires.
|
||||||
|
|
|
||||||
|
| Laravel supports a variety of mail "transport" drivers that can be used
|
||||||
|
| when delivering an email. You may specify which one you're using for
|
||||||
|
| your mailers below. You may also add additional mailers if needed.
|
||||||
|
|
|
||||||
|
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||||
|
| "postmark", "resend", "log", "array",
|
||||||
|
| "failover", "roundrobin"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'mailers' => [
|
||||||
|
|
||||||
|
'smtp' => [
|
||||||
|
'transport' => 'smtp',
|
||||||
|
'scheme' => env('MAIL_SCHEME'),
|
||||||
|
'url' => env('MAIL_URL'),
|
||||||
|
'host' => env('MAIL_HOST', '127.0.0.1'),
|
||||||
|
'port' => env('MAIL_PORT', 2525),
|
||||||
|
'username' => env('MAIL_USERNAME'),
|
||||||
|
'password' => env('MAIL_PASSWORD'),
|
||||||
|
'timeout' => null,
|
||||||
|
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
|
||||||
|
],
|
||||||
|
|
||||||
|
'ses' => [
|
||||||
|
'transport' => 'ses',
|
||||||
|
],
|
||||||
|
|
||||||
|
'postmark' => [
|
||||||
|
'transport' => 'postmark',
|
||||||
|
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
|
||||||
|
// 'client' => [
|
||||||
|
// 'timeout' => 5,
|
||||||
|
// ],
|
||||||
|
],
|
||||||
|
|
||||||
|
'resend' => [
|
||||||
|
'transport' => 'resend',
|
||||||
|
],
|
||||||
|
|
||||||
|
'sendmail' => [
|
||||||
|
'transport' => 'sendmail',
|
||||||
|
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'log' => [
|
||||||
|
'transport' => 'log',
|
||||||
|
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'array' => [
|
||||||
|
'transport' => 'array',
|
||||||
|
],
|
||||||
|
|
||||||
|
'failover' => [
|
||||||
|
'transport' => 'failover',
|
||||||
|
'mailers' => [
|
||||||
|
'smtp',
|
||||||
|
'log',
|
||||||
|
],
|
||||||
|
'retry_after' => 60,
|
||||||
|
],
|
||||||
|
|
||||||
|
'roundrobin' => [
|
||||||
|
'transport' => 'roundrobin',
|
||||||
|
'mailers' => [
|
||||||
|
'ses',
|
||||||
|
'postmark',
|
||||||
|
],
|
||||||
|
'retry_after' => 60,
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Global "From" Address
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| You may wish for all emails sent by your application to be sent from
|
||||||
|
| the same address. Here you may specify a name and address that is
|
||||||
|
| used globally for all emails that are sent by your application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'from' => [
|
||||||
|
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||||
|
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,120 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Queue Connection Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Laravel's queue supports a variety of backends via a single, unified
|
||||||
|
| API, giving you convenient access to each backend using identical
|
||||||
|
| syntax for each. The default queue connection is defined below.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'default' => env('QUEUE_CONNECTION', 'database'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Queue Connections
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may configure the connection options for every queue backend
|
||||||
|
| used by your application. An example configuration is provided for
|
||||||
|
| each backend supported by Laravel. You're also free to add more.
|
||||||
|
|
|
||||||
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "failover", "null"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'connections' => [
|
||||||
|
|
||||||
|
'sync' => [
|
||||||
|
'driver' => 'sync',
|
||||||
|
],
|
||||||
|
|
||||||
|
'database' => [
|
||||||
|
'driver' => 'database',
|
||||||
|
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||||
|
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
||||||
|
'queue' => env('DB_QUEUE', 'default'),
|
||||||
|
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'beanstalkd' => [
|
||||||
|
'driver' => 'beanstalkd',
|
||||||
|
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
||||||
|
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
||||||
|
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
||||||
|
'block_for' => 0,
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'sqs' => [
|
||||||
|
'driver' => 'sqs',
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||||
|
'queue' => env('SQS_QUEUE', 'default'),
|
||||||
|
'suffix' => env('SQS_SUFFIX'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'redis' => [
|
||||||
|
'driver' => 'redis',
|
||||||
|
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||||
|
'queue' => env('REDIS_QUEUE', 'default'),
|
||||||
|
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||||
|
'block_for' => null,
|
||||||
|
'after_commit' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
'failover' => [
|
||||||
|
'driver' => 'failover',
|
||||||
|
'connections' => [
|
||||||
|
'database',
|
||||||
|
'sync',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Job Batching
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following options configure the database and table that store job
|
||||||
|
| batching information. These options can be updated to any database
|
||||||
|
| connection and table which has been defined by your application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'batching' => [
|
||||||
|
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||||
|
'table' => 'job_batches',
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Failed Queue Jobs
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| These options configure the behavior of failed queue job logging so you
|
||||||
|
| can control how and where failed jobs are stored. Laravel ships with
|
||||||
|
| support for storing failed jobs in a simple file or in a database.
|
||||||
|
|
|
||||||
|
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'failed' => [
|
||||||
|
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||||
|
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||||
|
'table' => 'failed_jobs',
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Third Party Services
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This file is for storing the credentials for third party services such
|
||||||
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||||
|
| location for this type of information, allowing packages to have
|
||||||
|
| a conventional file to locate the various service credentials.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'postmark' => [
|
||||||
|
'token' => env('POSTMARK_TOKEN'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'resend' => [
|
||||||
|
'key' => env('RESEND_KEY'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'ses' => [
|
||||||
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||||
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||||
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||||
|
],
|
||||||
|
|
||||||
|
'slack' => [
|
||||||
|
'notifications' => [
|
||||||
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
||||||
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1,217 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Session Driver
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option determines the default session driver that is utilized for
|
||||||
|
| incoming requests. Laravel supports a variety of storage options to
|
||||||
|
| persist session data. Database storage is a great default choice.
|
||||||
|
|
|
||||||
|
| Supported: "file", "cookie", "database", "memcached",
|
||||||
|
| "redis", "dynamodb", "array"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'driver' => env('SESSION_DRIVER', 'database'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Lifetime
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify the number of minutes that you wish the session
|
||||||
|
| to be allowed to remain idle before it expires. If you want them
|
||||||
|
| to expire immediately when the browser is closed then you may
|
||||||
|
| indicate that via the expire_on_close configuration option.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'lifetime' => (int) env('SESSION_LIFETIME', 120),
|
||||||
|
|
||||||
|
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Encryption
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option allows you to easily specify that all of your session data
|
||||||
|
| should be encrypted before it's stored. All encryption is performed
|
||||||
|
| automatically by Laravel and you may use the session like normal.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'encrypt' => env('SESSION_ENCRYPT', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session File Location
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When utilizing the "file" session driver, the session files are placed
|
||||||
|
| on disk. The default storage location is defined here; however, you
|
||||||
|
| are free to provide another location where they should be stored.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'files' => storage_path('framework/sessions'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Database Connection
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When using the "database" or "redis" session drivers, you may specify a
|
||||||
|
| connection that should be used to manage these sessions. This should
|
||||||
|
| correspond to a connection in your database configuration options.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'connection' => env('SESSION_CONNECTION'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Database Table
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When using the "database" session driver, you may specify the table to
|
||||||
|
| be used to store sessions. Of course, a sensible default is defined
|
||||||
|
| for you; however, you're welcome to change this to another table.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'table' => env('SESSION_TABLE', 'sessions'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cache Store
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| When using one of the framework's cache driven session backends, you may
|
||||||
|
| define the cache store which should be used to store the session data
|
||||||
|
| between requests. This must match one of your defined cache stores.
|
||||||
|
|
|
||||||
|
| Affects: "dynamodb", "memcached", "redis"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'store' => env('SESSION_STORE'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Sweeping Lottery
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Some session drivers must manually sweep their storage location to get
|
||||||
|
| rid of old sessions from storage. Here are the chances that it will
|
||||||
|
| happen on a given request. By default, the odds are 2 out of 100.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'lottery' => [2, 100],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cookie Name
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may change the name of the session cookie that is created by
|
||||||
|
| the framework. Typically, you should not need to change this value
|
||||||
|
| since doing so does not grant a meaningful security improvement.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'cookie' => env(
|
||||||
|
'SESSION_COOKIE',
|
||||||
|
Str::slug((string) env('APP_NAME', 'laravel')).'-session'
|
||||||
|
),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cookie Path
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The session cookie path determines the path for which the cookie will
|
||||||
|
| be regarded as available. Typically, this will be the root path of
|
||||||
|
| your application, but you're free to change this when necessary.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'path' => env('SESSION_PATH', '/'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Session Cookie Domain
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This value determines the domain and subdomains the session cookie is
|
||||||
|
| available to. By default, the cookie will be available to the root
|
||||||
|
| domain and all subdomains. Typically, this shouldn't be changed.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'domain' => env('SESSION_DOMAIN'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| HTTPS Only Cookies
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| By setting this option to true, session cookies will only be sent back
|
||||||
|
| to the server if the browser has a HTTPS connection. This will keep
|
||||||
|
| the cookie from being sent to you when it can't be done securely.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| HTTP Access Only
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Setting this value to true will prevent JavaScript from accessing the
|
||||||
|
| value of the cookie and the cookie will only be accessible through
|
||||||
|
| the HTTP protocol. It's unlikely you should disable this option.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'http_only' => env('SESSION_HTTP_ONLY', true),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Same-Site Cookies
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option determines how your cookies behave when cross-site requests
|
||||||
|
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||||
|
| will set this value to "lax" to permit secure cross-site requests.
|
||||||
|
|
|
||||||
|
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
||||||
|
|
|
||||||
|
| Supported: "lax", "strict", "none", null
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'same_site' => env('SESSION_SAME_SITE', 'lax'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Partitioned Cookies
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Setting this value to true will tie the cookie to the top-level site for
|
||||||
|
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||||
|
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
|
||||||
|
|
||||||
|
];
|
||||||
@ -0,0 +1 @@
|
|||||||
|
*.sqlite*
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Database\Factories;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
|
use Illuminate\Support\Facades\Hash;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||||
|
*/
|
||||||
|
class UserFactory extends Factory
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The current password being used by the factory.
|
||||||
|
*/
|
||||||
|
protected static ?string $password;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the model's default state.
|
||||||
|
*
|
||||||
|
* @return array<string, mixed>
|
||||||
|
*/
|
||||||
|
public function definition(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'name' => fake()->name(),
|
||||||
|
'email' => fake()->unique()->safeEmail(),
|
||||||
|
'email_verified_at' => now(),
|
||||||
|
'password' => static::$password ??= Hash::make('password'),
|
||||||
|
'remember_token' => Str::random(10),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate that the model's email address should be unverified.
|
||||||
|
*/
|
||||||
|
public function unverified(): static
|
||||||
|
{
|
||||||
|
return $this->state(fn (array $attributes) => [
|
||||||
|
'email_verified_at' => null,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('users', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('name');
|
||||||
|
$table->string('email')->unique();
|
||||||
|
$table->timestamp('email_verified_at')->nullable();
|
||||||
|
$table->string('password');
|
||||||
|
$table->rememberToken();
|
||||||
|
$table->timestamps();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
||||||
|
$table->string('email')->primary();
|
||||||
|
$table->string('token');
|
||||||
|
$table->timestamp('created_at')->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('sessions', function (Blueprint $table) {
|
||||||
|
$table->string('id')->primary();
|
||||||
|
$table->foreignId('user_id')->nullable()->index();
|
||||||
|
$table->string('ip_address', 45)->nullable();
|
||||||
|
$table->text('user_agent')->nullable();
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->integer('last_activity')->index();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('users');
|
||||||
|
Schema::dropIfExists('password_reset_tokens');
|
||||||
|
Schema::dropIfExists('sessions');
|
||||||
|
}
|
||||||
|
};
|
||||||
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('cache', function (Blueprint $table) {
|
||||||
|
$table->string('key')->primary();
|
||||||
|
$table->mediumText('value');
|
||||||
|
$table->integer('expiration');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('cache_locks', function (Blueprint $table) {
|
||||||
|
$table->string('key')->primary();
|
||||||
|
$table->string('owner');
|
||||||
|
$table->integer('expiration');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('cache');
|
||||||
|
Schema::dropIfExists('cache_locks');
|
||||||
|
}
|
||||||
|
};
|
||||||
@ -0,0 +1,57 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::create('jobs', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('queue')->index();
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->unsignedTinyInteger('attempts');
|
||||||
|
$table->unsignedInteger('reserved_at')->nullable();
|
||||||
|
$table->unsignedInteger('available_at');
|
||||||
|
$table->unsignedInteger('created_at');
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('job_batches', function (Blueprint $table) {
|
||||||
|
$table->string('id')->primary();
|
||||||
|
$table->string('name');
|
||||||
|
$table->integer('total_jobs');
|
||||||
|
$table->integer('pending_jobs');
|
||||||
|
$table->integer('failed_jobs');
|
||||||
|
$table->longText('failed_job_ids');
|
||||||
|
$table->mediumText('options')->nullable();
|
||||||
|
$table->integer('cancelled_at')->nullable();
|
||||||
|
$table->integer('created_at');
|
||||||
|
$table->integer('finished_at')->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
|
Schema::create('failed_jobs', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->string('uuid')->unique();
|
||||||
|
$table->text('connection');
|
||||||
|
$table->text('queue');
|
||||||
|
$table->longText('payload');
|
||||||
|
$table->longText('exception');
|
||||||
|
$table->timestamp('failed_at')->useCurrent();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('jobs');
|
||||||
|
Schema::dropIfExists('job_batches');
|
||||||
|
Schema::dropIfExists('failed_jobs');
|
||||||
|
}
|
||||||
|
};
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Database\Seeders;
|
||||||
|
|
||||||
|
use App\Models\User;
|
||||||
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||||
|
use Illuminate\Database\Seeder;
|
||||||
|
|
||||||
|
class DatabaseSeeder extends Seeder
|
||||||
|
{
|
||||||
|
use WithoutModelEvents;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Seed the application's database.
|
||||||
|
*/
|
||||||
|
public function run(): void
|
||||||
|
{
|
||||||
|
// User::factory(10)->create();
|
||||||
|
|
||||||
|
User::factory()->create([
|
||||||
|
'name' => 'Test User',
|
||||||
|
'email' => 'test@example.com',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/package.json",
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"build": "vite build",
|
||||||
|
"dev": "vite"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@tailwindcss/vite": "^4.0.0",
|
||||||
|
"axios": "^1.11.0",
|
||||||
|
"concurrently": "^9.0.1",
|
||||||
|
"laravel-vite-plugin": "^2.0.0",
|
||||||
|
"tailwindcss": "^4.0.0",
|
||||||
|
"vite": "^7.0.7"
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||||||
|
bootstrap="vendor/autoload.php"
|
||||||
|
colors="true"
|
||||||
|
>
|
||||||
|
<testsuites>
|
||||||
|
<testsuite name="Unit">
|
||||||
|
<directory>tests/Unit</directory>
|
||||||
|
</testsuite>
|
||||||
|
<testsuite name="Feature">
|
||||||
|
<directory>tests/Feature</directory>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
|
<source>
|
||||||
|
<include>
|
||||||
|
<directory>app</directory>
|
||||||
|
</include>
|
||||||
|
</source>
|
||||||
|
<php>
|
||||||
|
<env name="APP_ENV" value="testing"/>
|
||||||
|
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
|
||||||
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
||||||
|
<env name="CACHE_STORE" value="array"/>
|
||||||
|
<env name="DB_CONNECTION" value="sqlite"/>
|
||||||
|
<env name="DB_DATABASE" value=":memory:"/>
|
||||||
|
<env name="MAIL_MAILER" value="array"/>
|
||||||
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||||
|
<env name="SESSION_DRIVER" value="array"/>
|
||||||
|
<env name="PULSE_ENABLED" value="false"/>
|
||||||
|
<env name="TELESCOPE_ENABLED" value="false"/>
|
||||||
|
<env name="NIGHTWATCH_ENABLED" value="false"/>
|
||||||
|
</php>
|
||||||
|
</phpunit>
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
<IfModule mod_negotiation.c>
|
||||||
|
Options -MultiViews -Indexes
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
RewriteEngine On
|
||||||
|
|
||||||
|
# Handle Authorization Header
|
||||||
|
RewriteCond %{HTTP:Authorization} .
|
||||||
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||||
|
|
||||||
|
# Handle X-XSRF-Token Header
|
||||||
|
RewriteCond %{HTTP:x-xsrf-token} .
|
||||||
|
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
|
||||||
|
|
||||||
|
# Redirect Trailing Slashes If Not A Folder...
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteCond %{REQUEST_URI} (.+)/$
|
||||||
|
RewriteRule ^ %1 [L,R=301]
|
||||||
|
|
||||||
|
# Send Requests To Front Controller...
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteRule ^ index.php [L]
|
||||||
|
</IfModule>
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Application;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
define('LARAVEL_START', microtime(true));
|
||||||
|
|
||||||
|
// Determine if the application is in maintenance mode...
|
||||||
|
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||||
|
require $maintenance;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Register the Composer autoloader...
|
||||||
|
require __DIR__.'/../vendor/autoload.php';
|
||||||
|
|
||||||
|
// Bootstrap Laravel and handle the request...
|
||||||
|
/** @var Application $app */
|
||||||
|
$app = require_once __DIR__.'/../bootstrap/app.php';
|
||||||
|
|
||||||
|
$app->handleRequest(Request::capture());
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
User-agent: *
|
||||||
|
Disallow:
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
@import 'tailwindcss';
|
||||||
|
|
||||||
|
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
||||||
|
@source '../../storage/framework/views/*.php';
|
||||||
|
@source '../**/*.blade.php';
|
||||||
|
@source '../**/*.js';
|
||||||
|
|
||||||
|
@theme {
|
||||||
|
--font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
||||||
|
'Segoe UI Symbol', 'Noto Color Emoji';
|
||||||
|
}
|
||||||
@ -0,0 +1 @@
|
|||||||
|
import './bootstrap';
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
import axios from 'axios';
|
||||||
|
window.axios = axios;
|
||||||
|
|
||||||
|
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||||
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Weight Converter</title>
|
||||||
|
<style>
|
||||||
|
body { font-family: Arial; text-align: center; margin-top: 80px; }
|
||||||
|
input { padding: 10px; width: 200px; margin: 10px; }
|
||||||
|
button { padding: 10px 20px; cursor: pointer; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Weight Converter</h1>
|
||||||
|
|
||||||
|
<form method="POST" action="/convert">
|
||||||
|
@csrf
|
||||||
|
<input type="number" step="0.01" name="kg" placeholder="Enter KG" value="{{ old('kg', $kg ?? '') }}">
|
||||||
|
<br>
|
||||||
|
<input type="number" step="0.01" name="lbs" placeholder="Enter LBS" value="{{ old('lbs', $lbs ?? '') }}">
|
||||||
|
<br>
|
||||||
|
<button type="submit">Convert</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
@isset($result)
|
||||||
|
<h2>{{ $result }}</h2>
|
||||||
|
@endisset
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Inspiring;
|
||||||
|
use Illuminate\Support\Facades\Artisan;
|
||||||
|
|
||||||
|
Artisan::command('inspire', function () {
|
||||||
|
$this->comment(Inspiring::quote());
|
||||||
|
})->purpose('Display an inspiring quote');
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
class ConverterController extends Controller
|
||||||
|
{
|
||||||
|
public function showForm()
|
||||||
|
{
|
||||||
|
return view('convert');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function convert(Request $request)
|
||||||
|
{
|
||||||
|
$kg = $request->input('kg');
|
||||||
|
$lbs = $kg * 2.20462;
|
||||||
|
|
||||||
|
return view('convert', ['kg' => $kg, 'lbs' => $lbs]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
*
|
||||||
|
!private/
|
||||||
|
!public/
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
compiled.php
|
||||||
|
config.php
|
||||||
|
down
|
||||||
|
events.scanned.php
|
||||||
|
maintenance.php
|
||||||
|
routes.php
|
||||||
|
routes.scanned.php
|
||||||
|
schedule-*
|
||||||
|
services.json
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
*
|
||||||
|
!data/
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Feature;
|
||||||
|
|
||||||
|
// use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
class ExampleTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* A basic test example.
|
||||||
|
*/
|
||||||
|
public function test_the_application_returns_a_successful_response(): void
|
||||||
|
{
|
||||||
|
$response = $this->get('/');
|
||||||
|
|
||||||
|
$response->assertStatus(200);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||||||
|
|
||||||
|
abstract class TestCase extends BaseTestCase
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Unit;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class ExampleTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* A basic test example.
|
||||||
|
*/
|
||||||
|
public function test_that_true_is_true(): void
|
||||||
|
{
|
||||||
|
$this->assertTrue(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
import { defineConfig } from 'vite';
|
||||||
|
import laravel from 'laravel-vite-plugin';
|
||||||
|
import tailwindcss from '@tailwindcss/vite';
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
plugins: [
|
||||||
|
laravel({
|
||||||
|
input: ['resources/css/app.css', 'resources/js/app.js'],
|
||||||
|
refresh: true,
|
||||||
|
}),
|
||||||
|
tailwindcss(),
|
||||||
|
],
|
||||||
|
});
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
gender = 'nigga'
|
||||||
|
age = 22
|
||||||
|
|
||||||
|
print("hi my gender is", gender, "and my age is", age)
|
||||||
|
|
||||||
|
with open('bignigga.txt', 'w', encoding='utf-8') as f:
|
||||||
|
f.write(f"hi my gender is {gender} and my age is {age}\n")
|
||||||
|
|
||||||
|
x = 0
|
||||||
|
while x < 2000000:
|
||||||
|
x += 1
|
||||||
|
f.write(str(x) + "\n")
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
import os
|
||||||
|
import requests
|
||||||
|
|
||||||
|
os.remove('bignigga.txt')
|
||||||
|
|
||||||
|
gender = input('youre gender nigga:')
|
||||||
|
age = input('your age nigga:')
|
||||||
|
|
||||||
|
print("hi my gender is", gender, "and my age is", age)
|
||||||
|
|
||||||
|
with open('bignigga.txt', 'w', encoding='utf-8') as f:
|
||||||
|
f.write(f"hi my gender is {gender} and my age is {age}")
|
||||||
|
|
||||||
|
x = 0
|
||||||
|
with open('bignigga.txt', 'a', encoding='utf-8') as f:
|
||||||
|
while x<100:
|
||||||
|
x += 1
|
||||||
|
f.write("\n" + str(x))
|
||||||
|
|
||||||
|
|
||||||
|
f = open('bignigga.txt', 'a', encoding='utf-8')
|
||||||
|
|
||||||
|
f.write("nigger\n" * 100000)
|
||||||
|
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
print("done")
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import requests
|
||||||
|
|
||||||
|
def crawl_website(url):
|
||||||
|
response = requests.get(url)
|
||||||
|
soup = BeautifulSoup(response.content, 'html.parser')
|
||||||
|
return soup
|
||||||
|
|
||||||
|
def fetch_images(url):
|
||||||
|
soup = crawl_website(url)
|
||||||
|
divs = soup.find_all('div', class_="video-splash")
|
||||||
|
|
||||||
|
for div in divs:
|
||||||
|
style = div.get("style")
|
||||||
|
if style and "background-image" in style:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def fetch_all_links(url):
|
||||||
|
soup = crawl_website(url)
|
||||||
|
links = soup.find_all('a')
|
||||||
|
for link in links:
|
||||||
|
href = link.get("href")
|
||||||
|
print(href)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
url = 'https://masterbate.io'
|
||||||
|
fetch_images(url)
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
from selenium import webdriver
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import re
|
||||||
|
|
||||||
|
driver = webdriver.Chrome() # Make sure ChromeDriver is installed
|
||||||
|
driver.get('https://www.snapchat.com/add/topxbabes')
|
||||||
|
|
||||||
|
import time
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
html_content = driver.page_source
|
||||||
|
driver.quit()
|
||||||
|
|
||||||
|
pattern = r'"mediaPreviewUrl":\{"value":"(https://.*?)"}'
|
||||||
|
matches = re.findall(pattern, html_content)
|
||||||
|
|
||||||
|
if matches:
|
||||||
|
print("Extracted Embed Links:")
|
||||||
|
for link in matches:
|
||||||
|
print(link)
|
||||||
|
else:
|
||||||
|
print("No embed links were found.")
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
from selenium import webdriver
|
||||||
|
import re
|
||||||
|
import requests
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
creator_name = input("Enter the Snapchat creator's name: ").strip().replace(" ", "_")
|
||||||
|
snapchat_url = input("Enter the Snapchat profile URL: ").strip()
|
||||||
|
|
||||||
|
main_folder = "snapchat_photos"
|
||||||
|
if not os.path.exists(main_folder):
|
||||||
|
os.makedirs(main_folder)
|
||||||
|
|
||||||
|
creator_folder = os.path.join(main_folder, creator_name)
|
||||||
|
if not os.path.exists(creator_folder):
|
||||||
|
os.makedirs(creator_folder)
|
||||||
|
|
||||||
|
print(f"Opening Snapchat profile: {snapchat_url}")
|
||||||
|
driver = webdriver.Chrome()
|
||||||
|
driver.get(snapchat_url)
|
||||||
|
|
||||||
|
import time
|
||||||
|
time.sleep(2)
|
||||||
|
|
||||||
|
html_content = driver.page_source
|
||||||
|
driver.quit()
|
||||||
|
|
||||||
|
pattern = r'"mediaPreviewUrl":\{"value":"(https://.*?)"}'
|
||||||
|
matches = re.findall(pattern, html_content)
|
||||||
|
|
||||||
|
if matches:
|
||||||
|
print(f"Extracted Embed Links and Saving Photos to '{creator_folder}':")
|
||||||
|
for idx, link in enumerate(matches):
|
||||||
|
try:
|
||||||
|
|
||||||
|
response = requests.get(link)
|
||||||
|
if response.status_code == 200:
|
||||||
|
filename = os.path.join(creator_folder, f"photo{idx + 1}.jpg")
|
||||||
|
with open(filename, 'wb') as f:
|
||||||
|
f.write(response.content)
|
||||||
|
print(f"Saved: {filename}")
|
||||||
|
else:
|
||||||
|
print(f"Failed to download: {link}")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error downloading {link}: {e}")
|
||||||
|
else:
|
||||||
|
print("No embed links were found.")
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
from selenium import webdriver
|
||||||
|
import re
|
||||||
|
import requests
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Input Snapchat profile URL
|
||||||
|
snapchat_url = input("Enter the Snapchat profile URL: ").strip()
|
||||||
|
|
||||||
|
# Set up Selenium and fetch the page source
|
||||||
|
print(f"Opening Snapchat profile: {snapchat_url}")
|
||||||
|
driver = webdriver.Chrome() # Ensure ChromeDriver is installed
|
||||||
|
driver.get(snapchat_url)
|
||||||
|
|
||||||
|
import time
|
||||||
|
time.sleep(2) # Give time for the page to load fully
|
||||||
|
|
||||||
|
html_content = driver.page_source
|
||||||
|
driver.quit()
|
||||||
|
|
||||||
|
# Extract the username using regex
|
||||||
|
username_pattern = r'<span class="Header_desktopSubscriberTextOnMedia__U_dVM Header_subscribersDesktop__lTKg1">(.*?)</span>'
|
||||||
|
username_match = re.search(username_pattern, html_content)
|
||||||
|
|
||||||
|
if username_match:
|
||||||
|
creator_name = username_match.group(1).strip().replace(" ", "_")
|
||||||
|
print(f"Creator's username extracted: {creator_name}")
|
||||||
|
else:
|
||||||
|
print("Could not extract the username. Exiting...")
|
||||||
|
exit()
|
||||||
|
|
||||||
|
# Create a main folder to save all Snapchat photos
|
||||||
|
main_folder = "snapchat_photos"
|
||||||
|
if not os.path.exists(main_folder):
|
||||||
|
os.makedirs(main_folder)
|
||||||
|
|
||||||
|
# Create a subfolder for the specific creator
|
||||||
|
creator_folder = os.path.join(main_folder, creator_name)
|
||||||
|
if not os.path.exists(creator_folder):
|
||||||
|
os.makedirs(creator_folder)
|
||||||
|
|
||||||
|
# Use regex to find all photo embed links
|
||||||
|
pattern = r'"mediaPreviewUrl":\{"value":"(https://.*?)"}'
|
||||||
|
matches = re.findall(pattern, html_content)
|
||||||
|
|
||||||
|
# Download and save each photo in the creator's folder
|
||||||
|
if matches:
|
||||||
|
print(f"Extracted Embed Links and Saving Photos to '{creator_folder}':")
|
||||||
|
for idx, link in enumerate(matches):
|
||||||
|
try:
|
||||||
|
# Request the image
|
||||||
|
response = requests.get(link)
|
||||||
|
if response.status_code == 200:
|
||||||
|
filename = os.path.join(creator_folder, f"photo{idx + 1}.jpg")
|
||||||
|
with open(filename, 'wb') as f:
|
||||||
|
f.write(response.content)
|
||||||
|
print(f"Saved: {filename}")
|
||||||
|
else:
|
||||||
|
print(f"Failed to download: {link}")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error downloading {link}: {e}")
|
||||||
|
else:
|
||||||
|
print("No embed links were found.")
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
MIXDROP_EMAIL=HydroXLR@proton.me
|
||||||
|
MIXDROP_API_KEY=MFhoJNLQEcs1wKpL
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
import yt_dlp
|
||||||
|
import requests
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
load_dotenv()
|
||||||
|
|
||||||
|
def download_video(url):
|
||||||
|
ydl_opts = {
|
||||||
|
'format': 'bestvideo+bestaudio',
|
||||||
|
'outtmpl': '/downloads/%(title)s.%(ext)s',
|
||||||
|
'noplaylist': True,
|
||||||
|
}
|
||||||
|
with yt_dlp.YoutubeDL(ydl_opts) as ydl:
|
||||||
|
info_dict = ydl.extract_info(url, download=True)
|
||||||
|
|
||||||
|
video_title = info_dict.get("title", "video")
|
||||||
|
video_ext = info_dict.get("ext", "mp4")
|
||||||
|
video_path = f'/downloads/{video_title}.{video_ext}'
|
||||||
|
return video_path
|
||||||
|
|
||||||
|
def upload_video_to_mixdrop(file_path):
|
||||||
|
# Get email and API key from environment variables
|
||||||
|
email = os.getenv("MIXDROP_EMAIL")
|
||||||
|
api_key = os.getenv("MIXDROP_API_KEY")
|
||||||
|
|
||||||
|
if not email or not api_key:
|
||||||
|
print("Error: Mixdrop email or API key not set.")
|
||||||
|
return
|
||||||
|
|
||||||
|
url = "https://ul.mixdrop.ag/api"
|
||||||
|
|
||||||
|
with open(file_path, 'rb') as file:
|
||||||
|
files = {'file': file}
|
||||||
|
data = {'email': email, 'api_key': api_key}
|
||||||
|
response = requests.post(url, files=files, data=data)
|
||||||
|
|
||||||
|
if response.status_code != 200:
|
||||||
|
print("Upload Failed!")
|
||||||
|
else:
|
||||||
|
print(response.json())
|
||||||
|
|
||||||
|
|
||||||
|
video_url = input('Enter the YouTube URL: ')
|
||||||
|
video_path = download_video(video_url)
|
||||||
|
upload_video_to_mixdrop(video_path)
|
||||||
Binary file not shown.
@ -0,0 +1,316 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charSet="utf-8"/>
|
||||||
|
<meta name="viewport" content="width=device-width"/>
|
||||||
|
<title>MiraVelle Stripchat recording at MiraVelle@2025-10-21-05-07.mp4</title>
|
||||||
|
<meta name="title" content="MiraVelle Stripchat recording at MiraVelle@2025-10-21-05-07.mp4"/>
|
||||||
|
<meta name="description" content="Cam model MiraVelle show recording on MiraVelle@2025-10-21-05-07.mp4. StripHub - Watch your favourite hot models live reordings for free."/>
|
||||||
|
<meta name="keywords" content="MiraVelle Cam recordings,MiraVelle Cam show, MiraVelle Cam recordings, MiraVelle live shows,MiraVelle Cam recordings, MiraVelle stripchat show, MiraVelle stripchat recordings, MiraVelle stripchat shows, Cam, camgirl, Cam performer, Stripchat Recordings, Xhamsterlive Recordings, hot model, adult cam, adult performer, camgirls, webcam tube, free cam videos, XXX tube, camwhores, cam show, camwhores alternative, Recurbate alternative"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:site_name" content="recordjerk"/>
|
||||||
|
<meta property="og:url" content="https://recordjerk.cam/play/68f731ea62f66877cc80e54f"/>
|
||||||
|
<meta property="og:title" content="MiraVelle Stripchat recording at MiraVelle@2025-10-21-05-07.mp4"/>
|
||||||
|
<meta property="og:description" content="Cam model MiraVelle show recording on MiraVelle@2025-10-21-05-07.mp4. StripHub - Watch your favourite hot models live reordings for free."/>
|
||||||
|
<meta property="og:image" content="https://static.recordjerk.cam/media/images/MiraVelle/fb0aaab4-0078-4152-9800-df21fe7e1366"/>
|
||||||
|
<meta property="og:image:width" content="1200"/>
|
||||||
|
<meta property="og:image:height" content="630"/>
|
||||||
|
<meta property="og:locale" content="en_US"/>
|
||||||
|
<meta property="article:publisher" content=""/>
|
||||||
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:site" content="@Chaturflix"/>
|
||||||
|
<meta name="twitter:title" content="MiraVelle Stripchat recording at MiraVelle@2025-10-21-05-07.mp4"/>
|
||||||
|
<meta name="twitter:description" content="Cam model MiraVelle show recording on MiraVelle@2025-10-21-05-07.mp4. StripHub - Watch your favourite hot models live reordings for free."/>
|
||||||
|
<meta name="twitter:image" content="https://static.recordjerk.cam/media/images/MiraVelle/fb0aaab4-0078-4152-9800-df21fe7e1366"/>
|
||||||
|
<meta name="twitter:image:alt" content="MiraVelle Stripchat recording at MiraVelle@2025-10-21-05-07.mp4"/>
|
||||||
|
<meta name="robots" content="index, follow"/>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<meta http-equiv="content-language" content="en"/>
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
|
||||||
|
<link rel="manifest" href="/site.webmanifest"/>
|
||||||
|
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-FL2M7S43YZ"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag() {
|
||||||
|
dataLayer.push(arguments);
|
||||||
|
}
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', 'G-FL2M7S43YZ');
|
||||||
|
</script>
|
||||||
|
<meta name="next-head-count" content="31"/>
|
||||||
|
<link rel="preload" href="/_next/static/css/e5db6c01610a1415.css" as="style"/>
|
||||||
|
<link rel="stylesheet" href="/_next/static/css/e5db6c01610a1415.css" data-n-g=""/>
|
||||||
|
<noscript data-n-css=""></noscript>
|
||||||
|
<script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script>
|
||||||
|
<script src="/_next/static/chunks/webpack-be20342c33773a33.js" defer=""></script>
|
||||||
|
<script src="/_next/static/chunks/framework-0c7baedefba6b077.js" defer=""></script>
|
||||||
|
<script src="/_next/static/chunks/main-7af7d5359a6145de.js" defer=""></script>
|
||||||
|
<script src="/_next/static/chunks/pages/_app-744bafa374e79f96.js" defer=""></script>
|
||||||
|
<script src="/_next/static/chunks/75fc9c18-165f0fc0c463a090.js" defer=""></script>
|
||||||
|
<script src="/_next/static/chunks/pages/play/%5Bid%5D-38819b96a582d9ce.js" defer=""></script>
|
||||||
|
<script src="/_next/static/-vZbDXryM1mmBj6cDtzb_/_buildManifest.js" defer=""></script>
|
||||||
|
<script src="/_next/static/-vZbDXryM1mmBj6cDtzb_/_ssgManifest.js" defer=""></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="__next">
|
||||||
|
<script>
|
||||||
|
!function() {
|
||||||
|
try {
|
||||||
|
var d = document.documentElement
|
||||||
|
, c = d.classList;
|
||||||
|
c.remove('light', 'dark');
|
||||||
|
var e = localStorage.getItem('theme');
|
||||||
|
if (e) {
|
||||||
|
c.add(e || '')
|
||||||
|
} else {
|
||||||
|
c.add('dark');
|
||||||
|
}
|
||||||
|
if (e === 'light' || e === 'dark' || !e)
|
||||||
|
d.style.colorScheme = e || 'dark'
|
||||||
|
} catch (t) {}
|
||||||
|
}();
|
||||||
|
</script>
|
||||||
|
<main class="min-h-screen flex flex-col ">
|
||||||
|
<nav class="bg-slate-100 dark:bg-dark-200">
|
||||||
|
<div class="w-full font-semibold flex justify-between items-center vf-container py-3 ">
|
||||||
|
<div class="flex items-center gap-5 pr-5 flex-auto lg:flex-none">
|
||||||
|
<a href="/" class=" font-bold text-3xl">
|
||||||
|
<span class="text-primary">Strip</span>
|
||||||
|
<span class="text-white">Hub</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class=" w-1/3">
|
||||||
|
<div class="">
|
||||||
|
<form class="relative w-full font-normal text-sm flex-auto">
|
||||||
|
<input class="peer border dark:bg-dark-100 bg-slate-200 px-3.5 py-2.5 border-primary border-opacity-0 rounded transition-all duration-200 focus:border-opacity-100 outline-none w-full placeholder:text-gray-900 dark:placeholder:text-gray-300 placeholder:tracking-wider placeholder:opacity-60" placeholder="Search Performers/Tags" value=""/>
|
||||||
|
<div class="peer-placeholder-shown:hidden peer-placeholder-shown:text-current absolute right-2.5 top-0 flex justify-center items-center h-full gap-x-2">
|
||||||
|
<button type="submit" class=" flex justify-center items-center ">
|
||||||
|
<span class="text-xs text-gray-400 border-[1px] border-slate-300 px-1 rounded-sm">view all</span>
|
||||||
|
</button>
|
||||||
|
<button type="reset" class=" flex justify-center items-center ">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" class="w-6 h-6">
|
||||||
|
<path fill-rule="evenodd" d="M5.47 5.47a.75.75 0 011.06 0L12 10.94l5.47-5.47a.75.75 0 111.06 1.06L13.06 12l5.47 5.47a.75.75 0 11-1.06 1.06L12 13.06l-5.47 5.47a.75.75 0 01-1.06-1.06L10.94 12 5.47 6.53a.75.75 0 010-1.06z" clip-rule="evenodd"></path>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<span class="peer-placeholder-shown:flex hidden absolute right-2.5 top-0 justify-center items-center h-full peer-placeholder-shown:text-current ">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" class="w-5 h-5">
|
||||||
|
<path fill-rule="evenodd" d="M10.5 3.75a6.75 6.75 0 100 13.5 6.75 6.75 0 000-13.5zM2.25 10.5a8.25 8.25 0 1114.59 5.28l4.69 4.69a.75.75 0 11-1.06 1.06l-4.69-4.69A8.25 8.25 0 012.25 10.5z" clip-rule="evenodd"></path>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="">
|
||||||
|
<div class="hidden text-sm lg:flex font-light items-center gap-x-5">
|
||||||
|
<a href="https://theporndude.com/" target="_blank" class="mr-10 font-medium text-orange-400">ThePornDude</a>
|
||||||
|
<button>
|
||||||
|
<span slot="dark" class="">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" class="w-4 hover:text-primary transition-all duration-300 ease-in-out">
|
||||||
|
<path d="M12 2.25a.75.75 0 01.75.75v2.25a.75.75 0 01-1.5 0V3a.75.75 0 01.75-.75zM7.5 12a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0zM18.894 6.166a.75.75 0 00-1.06-1.06l-1.591 1.59a.75.75 0 101.06 1.061l1.591-1.59zM21.75 12a.75.75 0 01-.75.75h-2.25a.75.75 0 010-1.5H21a.75.75 0 01.75.75zM17.834 18.894a.75.75 0 001.06-1.06l-1.59-1.591a.75.75 0 10-1.061 1.06l1.59 1.591zM12 18a.75.75 0 01.75.75V21a.75.75 0 01-1.5 0v-2.25A.75.75 0 0112 18zM7.758 17.303a.75.75 0 00-1.061-1.06l-1.591 1.59a.75.75 0 001.06 1.061l1.591-1.59zM6 12a.75.75 0 01-.75.75H3a.75.75 0 010-1.5h2.25A.75.75 0 016 12zM6.697 7.757a.75.75 0 001.06-1.06l-1.59-1.591a.75.75 0 00-1.061 1.06l1.59 1.591z"></path>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
<a href="/" class="nav-link">Home</a>
|
||||||
|
<a href="/performer" class="nav-link">Performers</a>
|
||||||
|
<a href="https://rec.recordjerk.cam/" class="add-to-record-button">
|
||||||
|
<div class="border-pink-500 group border-2 text-primary tracking-wider font-semibold rounded-full gap-x-1.5 flex items-center">
|
||||||
|
<div class="relative w-5 h-5 m-1">
|
||||||
|
<div class="absolute top-0 left-0 w-full h-full bg-primary animate-pulse rounded-full"></div>
|
||||||
|
<div class="absolute top-0 left-0 w-full h-full bg-primary animate-ping rounded-full"></div>
|
||||||
|
</div>
|
||||||
|
<span class=" pr-3.5 flex-auto text-center">Add model to Recoding</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<button class="block lg:hidden border p-2 py-1 rounded">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" class="w-6">
|
||||||
|
<path fill-rule="evenodd" d="M3 6.75A.75.75 0 013.75 6h16.5a.75.75 0 010 1.5H3.75A.75.75 0 013 6.75zM3 12a.75.75 0 01.75-.75h16.5a.75.75 0 010 1.5H3.75A.75.75 0 013 12zm0 5.25a.75.75 0 01.75-.75h16.5a.75.75 0 010 1.5H3.75a.75.75 0 01-.75-.75z" clip-rule="evenodd"></path>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="sub-menu lg:px-16 bg-gray-1000 lg:hidden dark:text-gray-200 text-gray-800 hidden">
|
||||||
|
<div class="border-t border-gray-400 gap-2 dark:border-dark-100 flex justify-end px-8 py-4 items-center w-full">
|
||||||
|
<span>Theme</span>
|
||||||
|
<button>
|
||||||
|
<span slot="dark" class="">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" class="w-4 hover:text-primary transition-all duration-300 ease-in-out">
|
||||||
|
<path d="M12 2.25a.75.75 0 01.75.75v2.25a.75.75 0 01-1.5 0V3a.75.75 0 01.75-.75zM7.5 12a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0zM18.894 6.166a.75.75 0 00-1.06-1.06l-1.591 1.59a.75.75 0 101.06 1.061l1.591-1.59zM21.75 12a.75.75 0 01-.75.75h-2.25a.75.75 0 010-1.5H21a.75.75 0 01.75.75zM17.834 18.894a.75.75 0 001.06-1.06l-1.59-1.591a.75.75 0 10-1.061 1.06l1.59 1.591zM12 18a.75.75 0 01.75.75V21a.75.75 0 01-1.5 0v-2.25A.75.75 0 0112 18zM7.758 17.303a.75.75 0 00-1.061-1.06l-1.591 1.59a.75.75 0 001.06 1.061l1.591-1.59zM6 12a.75.75 0 01-.75.75H3a.75.75 0 010-1.5h2.25A.75.75 0 016 12zM6.697 7.757a.75.75 0 001.06-1.06l-1.59-1.591a.75.75 0 00-1.061 1.06l1.59 1.591z"></path>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<a href="/">
|
||||||
|
<div class="link">Home</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer">
|
||||||
|
<div class="link">Performers</div>
|
||||||
|
</a>
|
||||||
|
<a href="/dmca">
|
||||||
|
<div class="link">DMCA</div>
|
||||||
|
</a>
|
||||||
|
<a href="https://theporndude.com/" target="_blank" class="mr-10 font-medium text-pink-400 link">ThePornDude</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<div class="flex-auto">
|
||||||
|
<div class="flex vf-container">
|
||||||
|
<div class="w-full lg:w-9/12 mt-5 ">
|
||||||
|
<div class="lg:flex justify-center hidden "></div>
|
||||||
|
<div class="aspect-video w-full ">
|
||||||
|
<div class="w-full h-full">
|
||||||
|
<video id="fluid-player" class="w-full h-full"></video>
|
||||||
|
</div>
|
||||||
|
<iframe id="video-iframe" class="w-full h-full" style="display:none" allowfullscreen="" title="Video"></iframe>
|
||||||
|
</div>
|
||||||
|
<div class="flex justify-center w-full py-4">
|
||||||
|
<button disabled="" class="px-4 py-2 text-sm rounded-md bg-primary text-white hover:bg-primary disabled:bg-orange-200 disabled:text-gray-500 disabled:cursor-not-allowed">Skip Ad in 10s</button>
|
||||||
|
</div>
|
||||||
|
<div class="p-3 bg-gray-100 dark:bg-dark-100">
|
||||||
|
<div class="flex items-center justify-between py-2 ">
|
||||||
|
<div>
|
||||||
|
<a href="/performer/MiraVelle">
|
||||||
|
<h1 class="text-lg font-semibold block ">
|
||||||
|
<span class="text-primary hover:underline ">MiraVelle</span>
|
||||||
|
Cam recordings
|
||||||
|
</h1>
|
||||||
|
</a>
|
||||||
|
<span class="text-sm ">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1855716a794e7d74747d582a282a2d352928352a2935282d35282f3675682c">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<a href="https://mxdrop.to/f/z1jk3p0eckp6rd" target="_blank" rel="noreferrer">
|
||||||
|
<button class="px-4 py-2 text-sm text-white bg-primary hover:bg-orange-500 rounded-lg flex items-center gap-1">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 ">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3"></path>
|
||||||
|
</svg>
|
||||||
|
Download
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="video-tags mt-3 mb-2"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="hidden md:block lg:w-3/12 p-5 pt-10"></div>
|
||||||
|
</div>
|
||||||
|
<div class="vf-container my-10">
|
||||||
|
<h2 class="font-semibold pb-5">
|
||||||
|
More records from
|
||||||
|
<!-- -->
|
||||||
|
<a class="hover:text-primary" href="/performer/MiraVelle">MiraVelle</a>
|
||||||
|
</h2>
|
||||||
|
<div class=" grid grid-cols-1 lg:grid-cols-4 gap-4">
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f5ba8c62f66877cc80af43">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">01:00:06</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="034e6a716255666f6f6643313331362e32332e31332e33322e37352d6e7337">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f6c46b62f66877cc80d07d">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">29:47</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="307d59425166555c5c5570020002051d01001d02001d02021d02091e5d4004">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f70f3362f66877cc80dc21">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">19:54</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="125f7b607344777e7e7752202220273f23223f20233f22213f26273c7f6226">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f6b62362f66877cc80ceaf">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">19:06</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bcf1d5ceddead9d0d0d9fc8e8c8e89918d8c918e8c918e8d91888592d1cc88">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f704b762f66877cc80da01">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">39:04</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="aee3c7dccff8cbc2c2cbee9c9e9c9b839f9e839c9f839e9f839b9880c3de9a">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f6d7e062f66877cc80d3ba">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">43:47</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="eea3879c8fb88b82828baedcdedcdbc3dfdec3dcdec3dcddc3dfdec0839eda">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f5ef3962f66877cc80bc4d">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">20:06</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="dd90b4afbc8bb8b1b1b89defedefe8f0ecedf0efedf0edeef0e8ecf3b0ade9">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="group video-item">
|
||||||
|
<a href="/play/68f7261e62f66877cc80e233">
|
||||||
|
<div class=" relative video-card animate-pulse duration-200 bg-gray-400 bg-opacity-60">
|
||||||
|
<span class="absolute bottom-1 rounded right-1 text-xs group-hover:bg-red-400 group-hover:text-white bg-white bg-opacity-60 text-black px-1 pb-1">01:00:06</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="/performer/MiraVelle" class=" block pt-1 cursor-pointer font-semibold 2xl:text-lg group-hover:text-primary ">MiraVelle</a>
|
||||||
|
<span class="block text-xs">
|
||||||
|
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="84c9edf6e5d2e1e8e8e1c4b6b4b6b1a9b5b4a9b6b5a9b4b0a9b4b2aae9f4b0">[email  protected]</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span class="opacity-0 hover:opacity-100 text-[10px] transition-all duraiton-300 pl-2">Generated At:
|
||||||
|
<!-- -->
|
||||||
|
10/21/2025, 7:17:21 AM</span>
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-col justify-center items-center py-3 bg-slate-200 dark:bg-dark-200">
|
||||||
|
<span class="text-sm">
|
||||||
|
Powered by
|
||||||
|
<!-- -->
|
||||||
|
<a href="https://recordjerk.cam/" class="text-red-400 hover:underline">recordjerk.cam</a>
|
||||||
|
</span>
|
||||||
|
<div class="mt-1 text-xs underline flex items-center gap-x-2 ">
|
||||||
|
<a href="/contact">Contact</a>
|
||||||
|
<a href="/dmca">DMCA</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
|
||||||
|
<script id="__NEXT_DATA__" type="application/json">
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -0,0 +1,60 @@
|
|||||||
|
import requests
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import time
|
||||||
|
|
||||||
|
def fetch_video_links(page_url):
|
||||||
|
|
||||||
|
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"}
|
||||||
|
|
||||||
|
try:
|
||||||
|
response = requests.get(page_url, headers=headers, timeout=10)
|
||||||
|
response.raise_for_status()
|
||||||
|
except requests.RequestException as e:
|
||||||
|
print(f"❌ Failed to fetch {page_url}: {e}")
|
||||||
|
return []
|
||||||
|
|
||||||
|
soup = BeautifulSoup(response.text, "html.parser")
|
||||||
|
|
||||||
|
video_links = []
|
||||||
|
for a_tag in soup.find_all("a", href=True):
|
||||||
|
if a_tag["href"].startswith("/play/"):
|
||||||
|
# Build full URL
|
||||||
|
base_url = "https://striphub.cam"
|
||||||
|
full_link = base_url + a_tag["href"]
|
||||||
|
video_links.append(full_link)
|
||||||
|
|
||||||
|
print(f"✅ Found {len(video_links)} videos on {page_url}")
|
||||||
|
return video_links
|
||||||
|
|
||||||
|
|
||||||
|
def crawl_all_pages(base_url, total_pages, output_file="video_links.txt"):
|
||||||
|
|
||||||
|
all_links = []
|
||||||
|
|
||||||
|
for page in range(1, total_pages + 1):
|
||||||
|
page_url = f"{base_url}/page/{page}"
|
||||||
|
print(f"\n🌐 Crawling page {page_url}...")
|
||||||
|
links = fetch_video_links(page_url)
|
||||||
|
all_links.extend(links)
|
||||||
|
time.sleep(1) # polite delay so you don't hammer the server
|
||||||
|
|
||||||
|
# Remove duplicates
|
||||||
|
all_links = list(set(all_links))
|
||||||
|
|
||||||
|
# Save all to file
|
||||||
|
with open(output_file, "w", encoding="utf-8") as f:
|
||||||
|
for link in all_links:
|
||||||
|
f.write(link + "\n")
|
||||||
|
|
||||||
|
print(f"\n✅ Done! Saved {len(all_links)} unique video links to {output_file}")
|
||||||
|
return all_links
|
||||||
|
for link in all_links:
|
||||||
|
r = requests.get(link)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Example usage:
|
||||||
|
crawl_all_pages("https://striphub.cam", total_pages=5)
|
||||||
@ -0,0 +1,137 @@
|
|||||||
|
# playwright_iframe_extract_debug.py
|
||||||
|
from playwright.sync_api import sync_playwright
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import re, time, os, sys
|
||||||
|
|
||||||
|
TEST_URL = "https://striphub.cam/play/68f731ea62f66877cc80e54f" # replace if needed
|
||||||
|
MX_PATTERN = re.compile(r"https?://(?:www\.)?mxdrop\.to/e/[^\s\"'<>]+", re.I)
|
||||||
|
|
||||||
|
def extract_from_html(html: str):
|
||||||
|
"""Fallback regex scan over raw HTML (catches inline JS/JSON)."""
|
||||||
|
return set(MX_PATTERN.findall(html))
|
||||||
|
|
||||||
|
def run():
|
||||||
|
found = set()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
# Use headless=False while debugging to *see* what's happening
|
||||||
|
browser = p.chromium.launch(headless=False, args=["--disable-blink-features=AutomationControlled"])
|
||||||
|
context = browser.new_context(
|
||||||
|
user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
|
||||||
|
"(KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
|
||||||
|
locale="en-US",
|
||||||
|
viewport={"width": 1280, "height": 900}
|
||||||
|
)
|
||||||
|
page = context.new_page()
|
||||||
|
|
||||||
|
# 1) Capture ANY network response hitting mxdrop
|
||||||
|
def on_response(resp):
|
||||||
|
url = resp.url
|
||||||
|
if "mxdrop.to/e/" in url:
|
||||||
|
print("[NET] mxdrop response:", url)
|
||||||
|
found.add(url)
|
||||||
|
page.on("response", on_response)
|
||||||
|
|
||||||
|
print("Navigating to", TEST_URL)
|
||||||
|
page.goto(TEST_URL, wait_until="domcontentloaded", timeout=60000)
|
||||||
|
|
||||||
|
# 2) Give the page time to settle network/XHR
|
||||||
|
try:
|
||||||
|
page.wait_for_load_state("networkidle", timeout=20000)
|
||||||
|
except Exception:
|
||||||
|
print("⚠️ networkidle timed out—continuing")
|
||||||
|
|
||||||
|
# 3) Try a few generic clicks that often reveal the player/iframe
|
||||||
|
# (No-ops if not present; they just fail silently)
|
||||||
|
for sel in [
|
||||||
|
'button:has-text("Play")',
|
||||||
|
'button:has-text("I understand")',
|
||||||
|
'button:has-text("Continue")',
|
||||||
|
'button:has-text("Accept")',
|
||||||
|
"#player, .video-player, .plyr__control",
|
||||||
|
]:
|
||||||
|
try:
|
||||||
|
el = page.locator(sel)
|
||||||
|
if el.count() > 0:
|
||||||
|
el.first.click(timeout=2000)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 4) Scroll to bottom to trigger lazy-load iframes
|
||||||
|
try:
|
||||||
|
page.evaluate("""
|
||||||
|
const delay = ms => new Promise(r => setTimeout(r, ms));
|
||||||
|
(async () => {
|
||||||
|
for (let y = 0; y < document.body.scrollHeight; y += 800) {
|
||||||
|
window.scrollTo(0, y);
|
||||||
|
await delay(200);
|
||||||
|
}
|
||||||
|
window.scrollTo(0, document.body.scrollHeight);
|
||||||
|
})();
|
||||||
|
""")
|
||||||
|
time.sleep(1.0)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 5) Dump a screenshot & HTML so you can inspect what loaded
|
||||||
|
try:
|
||||||
|
page.screenshot(path="debug_page.png", full_page=True)
|
||||||
|
print("Saved screenshot -> debug_page.png")
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
html = page.content()
|
||||||
|
with open("debug_page.html", "w", encoding="utf-8") as f:
|
||||||
|
f.write(html)
|
||||||
|
print("Saved HTML -> debug_page.html")
|
||||||
|
|
||||||
|
# 6) Parse DOM for iframes (src and data-src)
|
||||||
|
soup = BeautifulSoup(html, "html.parser")
|
||||||
|
iframes = soup.find_all("iframe")
|
||||||
|
print(f"Found {len(iframes)} <iframe> tags in DOM")
|
||||||
|
|
||||||
|
for iframe in iframes:
|
||||||
|
for attr in ("src", "data-src"):
|
||||||
|
val = iframe.get(attr)
|
||||||
|
if val and "mxdrop.to/e/" in val:
|
||||||
|
print("[DOM] iframe", attr, "=", val)
|
||||||
|
found.add(val)
|
||||||
|
|
||||||
|
# 7) Regex over the full HTML (catches script-injected strings)
|
||||||
|
regex_hits = extract_from_html(html)
|
||||||
|
for u in regex_hits:
|
||||||
|
print("[HTML-REGEX]", u)
|
||||||
|
found.update(regex_hits)
|
||||||
|
|
||||||
|
# 8) Also list all frame URLs Playwright sees (nested frames)
|
||||||
|
for fr in page.frames:
|
||||||
|
if fr.url and "mxdrop.to/e/" in fr.url:
|
||||||
|
print("[FRAME] url:", fr.url)
|
||||||
|
found.add(fr.url)
|
||||||
|
|
||||||
|
# 9) Print final result
|
||||||
|
found = sorted(found)
|
||||||
|
print("\n==== MXDROP RESULTS ====")
|
||||||
|
if found:
|
||||||
|
for u in found:
|
||||||
|
print(u)
|
||||||
|
else:
|
||||||
|
title = soup.title.string.strip() if soup.title and soup.title.string else "(no title)"
|
||||||
|
print("No mxdrop links detected.")
|
||||||
|
print("Page title:", title)
|
||||||
|
# Quick hint if you hit a challenge:
|
||||||
|
snippet = html[:400].replace("\n", " ")
|
||||||
|
if "Just a moment" in snippet or "Cloudflare" in snippet or "cf-chl" in snippet:
|
||||||
|
print("Looks like a Cloudflare challenge / interstitial (human step required).")
|
||||||
|
|
||||||
|
# 10) Save results if any
|
||||||
|
if found:
|
||||||
|
with open("embedLinks.txt", "w", encoding="utf-8") as f:
|
||||||
|
for u in found:
|
||||||
|
f.write(u + "\n")
|
||||||
|
print("Saved -> embedLinks.txt")
|
||||||
|
|
||||||
|
browser.close()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
run()
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
@ -0,0 +1,137 @@
|
|||||||
|
# playwright_iframe_extract_debug.py
|
||||||
|
from playwright.sync_api import sync_playwright
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import re, time, os, sys
|
||||||
|
|
||||||
|
TEST_URL = "https://example.com/play/68f731ea62f66877cc80e54f" # replace if needed
|
||||||
|
MX_PATTERN = re.compile(r"https?://(?:www\.)?mxdrop\.to/e/[^\s\"'<>]+", re.I)
|
||||||
|
|
||||||
|
def extract_from_html(html: str):
|
||||||
|
"""Fallback regex scan over raw HTML (catches inline JS/JSON)."""
|
||||||
|
return set(MX_PATTERN.findall(html))
|
||||||
|
|
||||||
|
def run():
|
||||||
|
found = set()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
# Use headless=False while debugging to *see* what's happening
|
||||||
|
browser = p.chromium.launch(headless=False, args=["--disable-blink-features=AutomationControlled"])
|
||||||
|
context = browser.new_context(
|
||||||
|
user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
|
||||||
|
"(KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
|
||||||
|
locale="en-US",
|
||||||
|
viewport={"width": 1280, "height": 900}
|
||||||
|
)
|
||||||
|
page = context.new_page()
|
||||||
|
|
||||||
|
# 1) Capture ANY network response hitting mxdrop
|
||||||
|
def on_response(resp):
|
||||||
|
url = resp.url
|
||||||
|
if "mxdrop.to/e/" in url:
|
||||||
|
print("[NET] mxdrop response:", url)
|
||||||
|
found.add(url)
|
||||||
|
page.on("response", on_response)
|
||||||
|
|
||||||
|
print("Navigating to", TEST_URL)
|
||||||
|
page.goto(TEST_URL, wait_until="domcontentloaded", timeout=60000)
|
||||||
|
|
||||||
|
# 2) Give the page time to settle network/XHR
|
||||||
|
try:
|
||||||
|
page.wait_for_load_state("networkidle", timeout=20000)
|
||||||
|
except Exception:
|
||||||
|
print("⚠️ networkidle timed out—continuing")
|
||||||
|
|
||||||
|
# 3) Try a few generic clicks that often reveal the player/iframe
|
||||||
|
# (No-ops if not present; they just fail silently)
|
||||||
|
for sel in [
|
||||||
|
'button:has-text("Play")',
|
||||||
|
'button:has-text("I understand")',
|
||||||
|
'button:has-text("Continue")',
|
||||||
|
'button:has-text("Accept")',
|
||||||
|
"#player, .video-player, .plyr__control",
|
||||||
|
]:
|
||||||
|
try:
|
||||||
|
el = page.locator(sel)
|
||||||
|
if el.count() > 0:
|
||||||
|
el.first.click(timeout=2000)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 4) Scroll to bottom to trigger lazy-load iframes
|
||||||
|
try:
|
||||||
|
page.evaluate("""
|
||||||
|
const delay = ms => new Promise(r => setTimeout(r, ms));
|
||||||
|
(async () => {
|
||||||
|
for (let y = 0; y < document.body.scrollHeight; y += 800) {
|
||||||
|
window.scrollTo(0, y);
|
||||||
|
await delay(200);
|
||||||
|
}
|
||||||
|
window.scrollTo(0, document.body.scrollHeight);
|
||||||
|
})();
|
||||||
|
""")
|
||||||
|
time.sleep(1.0)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 5) Dump a screenshot & HTML so you can inspect what loaded
|
||||||
|
try:
|
||||||
|
page.screenshot(path="debug_page.png", full_page=True)
|
||||||
|
print("Saved screenshot -> debug_page.png")
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
html = page.content()
|
||||||
|
with open("debug_page.html", "w", encoding="utf-8") as f:
|
||||||
|
f.write(html)
|
||||||
|
print("Saved HTML -> debug_page.html")
|
||||||
|
|
||||||
|
# 6) Parse DOM for iframes (src and data-src)
|
||||||
|
soup = BeautifulSoup(html, "html.parser")
|
||||||
|
iframes = soup.find_all("iframe")
|
||||||
|
print(f"Found {len(iframes)} <iframe> tags in DOM")
|
||||||
|
|
||||||
|
for iframe in iframes:
|
||||||
|
for attr in ("src", "data-src"):
|
||||||
|
val = iframe.get(attr)
|
||||||
|
if val and "mxdrop.to/e/" in val:
|
||||||
|
print("[DOM] iframe", attr, "=", val)
|
||||||
|
found.add(val)
|
||||||
|
|
||||||
|
# 7) Regex over the full HTML (catches script-injected strings)
|
||||||
|
regex_hits = extract_from_html(html)
|
||||||
|
for u in regex_hits:
|
||||||
|
print("[HTML-REGEX]", u)
|
||||||
|
found.update(regex_hits)
|
||||||
|
|
||||||
|
# 8) Also list all frame URLs Playwright sees (nested frames)
|
||||||
|
for fr in page.frames:
|
||||||
|
if fr.url and "mxdrop.to/e/" in fr.url:
|
||||||
|
print("[FRAME] url:", fr.url)
|
||||||
|
found.add(fr.url)
|
||||||
|
|
||||||
|
# 9) Print final result
|
||||||
|
found = sorted(found)
|
||||||
|
print("\n==== MXDROP RESULTS ====")
|
||||||
|
if found:
|
||||||
|
for u in found:
|
||||||
|
print(u)
|
||||||
|
else:
|
||||||
|
title = soup.title.string.strip() if soup.title and soup.title.string else "(no title)"
|
||||||
|
print("No mxdrop links detected.")
|
||||||
|
print("Page title:", title)
|
||||||
|
# Quick hint if you hit a challenge:
|
||||||
|
snippet = html[:400].replace("\n", " ")
|
||||||
|
if "Just a moment" in snippet or "Cloudflare" in snippet or "cf-chl" in snippet:
|
||||||
|
print("Looks like a Cloudflare challenge / interstitial (human step required).")
|
||||||
|
|
||||||
|
# 10) Save results if any
|
||||||
|
if found:
|
||||||
|
with open("embedLinks.txt", "w", encoding="utf-8") as f:
|
||||||
|
for u in found:
|
||||||
|
f.write(u + "\n")
|
||||||
|
print("Saved -> embedLinks.txt")
|
||||||
|
|
||||||
|
browser.close()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
run()
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
import requests
|
||||||
|
url = "https://tubeasiancams.com/embed/player-6w.php?token=ez0SLbAi85b0Oje3m7YA75ilxdtoQzrHN%2B3Be1YMFqoCMLLWBmQE%2BOKohasr08C61WCxSCFrujvs1q5ifTyvyuo4Xq7uLVzP2Ypc7TrRymDYu8cqs%2BepKqkIzh8caDxZDRXedt9%2B3JXNxAFDfsEw%2Fw%3D%3D&poster=https://tubeasiancams.com/wp-content/uploads/2025/10/52r85ux6mdtf-640x360.jpg&id=231245"
|
||||||
|
|
||||||
|
data = requests.get(url)
|
||||||
|
|
||||||
|
with open("html.text", 'w', encoding='utf-8') as f:
|
||||||
|
f.write(data.text)
|
||||||
@ -0,0 +1,31 @@
|
|||||||
|
import requests
|
||||||
|
|
||||||
|
API_KEY = "1058i9fguonl5ibz854n" # replace with your real key
|
||||||
|
API_URL = "https://abstream.to/api/upload/url"
|
||||||
|
VIDEO_URL = "https://abstream.to/embed/s5nntho2s6rk" # replace with the video embed/download URL
|
||||||
|
|
||||||
|
|
||||||
|
# Optional fields:
|
||||||
|
params = {
|
||||||
|
"key": API_KEY,
|
||||||
|
"url": VIDEO_URL,
|
||||||
|
"file_public": 1, # 1 = public, 0 = private
|
||||||
|
"file_adult": 1, # 1 = adult, 0 = safe
|
||||||
|
"tags": "test, upload" # optional tagsR
|
||||||
|
}
|
||||||
|
|
||||||
|
response = requests.get(API_URL, params=params)
|
||||||
|
|
||||||
|
if response.status_code == 200:
|
||||||
|
data = response.json()
|
||||||
|
if data["status"] == 200:
|
||||||
|
filecode = data["result"]["filecode"]
|
||||||
|
print(f"✅ Upload started successfully! File code: {filecode}")
|
||||||
|
print(f"Embed page: https://abstream.to/{filecode}.html")
|
||||||
|
else:
|
||||||
|
print("❌ API error:", data["msg"])
|
||||||
|
else:
|
||||||
|
print("❌ Request failed:", response.status_code, response.text)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,34 @@
|
|||||||
|
import requests
|
||||||
|
|
||||||
|
# Your API credentials
|
||||||
|
login = "xpornium.unstopped516@passinbox.com"
|
||||||
|
key = "cc68a4602270850382925da35aadab72"
|
||||||
|
|
||||||
|
# The direct video URL (or embed link that points to the file)
|
||||||
|
video_url = "https://cmb-202.filestore.app/4a8d5985765a8/edcbaa88ef611/alternative_resolution_c7d5e3f0d6372_360p.mp4?temp_url_expires=1761075762&temp_url_id=18c469ed-f17b-4f12-b57a-f1d7107912b7&countable=true&filename=littlehapp+Tits+Show.mp4&inline=true&content_type=video%2Fmp4&concurrency=32&rate_limit=0&response_limit=31332000&ip_access_policy=everyone&tags=file_type%3Avideo_360p%2Caction%3Alimited_view%2Cproject%3Atz%2Cowner_id%3A1556%2Csite_owner_id%3A1556%2Csize%3A242565119%2Cfile_id%3Afed8abf418351%2Csite_id%3A21828%2Cuser_pc_id%3Acb106f428ab63%2Cis_partner_side%3Afalse%2Ccts%3A1760989362%2Cdevice_type%3Adesktop%2Cuser_os%3AWindows%2Cuser_file_id%3Afed8abf418351%2Cuser_id%3A&temp_url_issuer=5445f78a91de707b297e67ed&temp_url_sig=0b49ec49d60be6977faf16300224c11e1a548462eb8dcb13291aa3ad9b4731247995c10ade9cbcb928f098e6767c30677dfe91889f883c99f5f4e38ee8d01e6e&client_ip="
|
||||||
|
|
||||||
|
# Optional: title and category
|
||||||
|
title = "My test upload"
|
||||||
|
cat = 1 # 1 = Straight
|
||||||
|
|
||||||
|
# Construct the request URL
|
||||||
|
api_url = "https://api.xpornium.net/remoteupload"
|
||||||
|
|
||||||
|
parameters = {
|
||||||
|
"login": login,
|
||||||
|
"key": key,
|
||||||
|
"url": video_url,
|
||||||
|
"cat": cat,
|
||||||
|
"title": title
|
||||||
|
}
|
||||||
|
|
||||||
|
# Send the GET request
|
||||||
|
response = requests.get(api_url, params=parameters)
|
||||||
|
data = response.json()
|
||||||
|
|
||||||
|
# Check result
|
||||||
|
if data["status"] == 200:
|
||||||
|
upload_id = data["result"]["id"]
|
||||||
|
print(f"✅ Remote upload started! Upload ID: {upload_id}")
|
||||||
|
else:
|
||||||
|
print(f"❌ Error: {data['error']}")
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
import requests
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
def crawler(url):
|
||||||
|
res = requests.get(url)
|
||||||
|
soup = BeautifulSoup(res.text, 'html.parser')
|
||||||
|
return soup
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,6 @@
|
|||||||
|
import requests, json
|
||||||
|
|
||||||
|
response = requests.head("https://striphub.cam/play/68f652a162f66877cc80c920")
|
||||||
|
|
||||||
|
with open("pahe_headers.txt", "w", encoding="utf-8") as f:
|
||||||
|
json.dump(dict(response.headers), f, indent=4, ensure_ascii=False)
|
||||||
@ -0,0 +1,116 @@
|
|||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"pageProps": {
|
||||||
|
"video": {
|
||||||
|
"_id": "68f731ea62f66877cc80e54f",
|
||||||
|
"title": "MiraVelle@2025-10-21-05-07.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"link": "https://mxdrop.to/f/z1jk3p0eckp6rd",
|
||||||
|
"embedUrl": "https://mxdrop.to/e/z1jk3p0eckp6rd",
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/fb0aaab4-0078-4152-9800-df21fe7e1366",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/b2076748-3bb5-4f9c-8d60-2834eaa1a279",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"platform": "mixdrop",
|
||||||
|
"tags": []
|
||||||
|
},
|
||||||
|
"performer": {
|
||||||
|
"_id": "684b99952a0b70fb5248c9e6",
|
||||||
|
"username": "MiraVelle",
|
||||||
|
"tags": []
|
||||||
|
},
|
||||||
|
"relatedVideoList": [
|
||||||
|
{
|
||||||
|
"_id": "68f5ba8c62f66877cc80af43",
|
||||||
|
"title": "MiraVelle@2025-10-20-01-46.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 3606,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/57a029e2-10a9-4113-84d6-7d4a49d215c6",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/61893ef0-bec3-44e1-892c-35e2b63d29fb",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f6c46b62f66877cc80d07d",
|
||||||
|
"title": "MiraVelle@2025-10-20-22-29.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 1787,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/bddc6b1e-ea8c-4d2e-9350-c7f494538494",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/ae924fa5-41cc-4035-9035-a634567d80c0",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f70f3362f66877cc80dc21",
|
||||||
|
"title": "MiraVelle@2025-10-21-03-45.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 1194,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/0e828ec0-6d7c-49a0-926a-a592ba3b0c42",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/db844cd5-7e4d-498f-bb80-2dcf74da3b18",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f6b62362f66877cc80ceaf",
|
||||||
|
"title": "MiraVelle@2025-10-20-21-49.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 1146,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/c41328a0-3b3a-415f-a9c7-9ced857854c4",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/c254f946-46ae-4224-a640-be133820987f",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f704b762f66877cc80da01",
|
||||||
|
"title": "MiraVelle@2025-10-21-01-56.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 2344,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/a1c83ab0-a174-409a-9a59-6e39ce1c3c62",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/8b53a70b-a891-4412-8118-0ce8382dae08",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f6d7e062f66877cc80d3ba",
|
||||||
|
"title": "MiraVelle@2025-10-20-23-10.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 2627,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/4082cb75-8526-456b-8b9b-6deaf4059aa1",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/82fab467-4a59-4c3f-a7aa-97c66c07f4c9",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f5ef3962f66877cc80bc4d",
|
||||||
|
"title": "MiraVelle@2025-10-20-03-51.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 1206,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/88e6e1c8-3694-43c9-b30c-8d11d3f617aa",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/20206662-0f30-41bd-9231-e2dd3362191e",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_id": "68f7261e62f66877cc80e233",
|
||||||
|
"title": "MiraVelle@2025-10-21-04-06.mp4",
|
||||||
|
"performer": "MiraVelle",
|
||||||
|
"length": 3606,
|
||||||
|
"single_img": "https://static.recordjerk.cam/media/images/MiraVelle/a2ce928d-eb4f-4110-bedf-f6b1276a130d",
|
||||||
|
"splash_img": "https://static.recordjerk.cam/media/images/MiraVelle/5da4fc56-e6cc-477a-b402-9675add75eb0",
|
||||||
|
"splash_image_size": "4x4",
|
||||||
|
"quality": "HQ"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"serverTime": 1761031041426
|
||||||
|
},
|
||||||
|
"__N_SSG": true
|
||||||
|
},
|
||||||
|
"page": "/play/[id]",
|
||||||
|
"query": {
|
||||||
|
"id": "68f731ea62f66877cc80e54f"
|
||||||
|
},
|
||||||
|
"buildId": "-vZbDXryM1mmBj6cDtzb_",
|
||||||
|
"isFallback": false,
|
||||||
|
"isExperimentalCompile": false,
|
||||||
|
"gsp": true,
|
||||||
|
"scriptLoader": []
|
||||||
|
}
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
import yt_dlp
|
||||||
|
import os
|
||||||
|
|
||||||
|
def download_video(url):
|
||||||
|
ydl_opts = {
|
||||||
|
'format': 'bestvideo+bestaudio',
|
||||||
|
'outtmpl': '/downloads/%(title)s.%(ext)s',
|
||||||
|
'noplaylist': True,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
with yt_dlp.YoutubeDL(ydl_opts) as ydl:
|
||||||
|
info_dict = ydl.extract_info(url, download=True)
|
||||||
|
# Get the file name and path of the downloaded video
|
||||||
|
video_title = info_dict.get("title", "video")
|
||||||
|
video_ext = info_dict.get("ext", "mp4")
|
||||||
|
video_path = f'/downloads/{video_title}.{video_ext}'
|
||||||
|
return video_path
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
URL = input("Insert the url: ")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,137 @@
|
|||||||
|
# playwright_iframe_extract_debug.py
|
||||||
|
from playwright.sync_api import sync_playwright
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import re, time, os, sys
|
||||||
|
|
||||||
|
TEST_URL = "https://striphub.cam/play/68f731ea62f66877cc80e54f" # replace if needed
|
||||||
|
MX_PATTERN = re.compile(r"https?://(?:www\.)?mxdrop\.to/e/[^\s\"'<>]+", re.I)
|
||||||
|
|
||||||
|
def extract_from_html(html: str):
|
||||||
|
"""Fallback regex scan over raw HTML (catches inline JS/JSON)."""
|
||||||
|
return set(MX_PATTERN.findall(html))
|
||||||
|
|
||||||
|
def run():
|
||||||
|
found = set()
|
||||||
|
|
||||||
|
with sync_playwright() as p:
|
||||||
|
# Use headless=False while debugging to *see* what's happening
|
||||||
|
browser = p.chromium.launch(headless=False, args=["--disable-blink-features=AutomationControlled"])
|
||||||
|
context = browser.new_context(
|
||||||
|
user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
|
||||||
|
"(KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
|
||||||
|
locale="en-US",
|
||||||
|
viewport={"width": 1280, "height": 900}
|
||||||
|
)
|
||||||
|
page = context.new_page()
|
||||||
|
|
||||||
|
# 1) Capture ANY network response hitting mxdrop
|
||||||
|
def on_response(resp):
|
||||||
|
url = resp.url
|
||||||
|
if "mxdrop.to/e/" in url:
|
||||||
|
print("[NET] mxdrop response:", url)
|
||||||
|
found.add(url)
|
||||||
|
page.on("response", on_response)
|
||||||
|
|
||||||
|
print("Navigating to", TEST_URL)
|
||||||
|
page.goto(TEST_URL, wait_until="domcontentloaded", timeout=60000)
|
||||||
|
|
||||||
|
# 2) Give the page time to settle network/XHR
|
||||||
|
try:
|
||||||
|
page.wait_for_load_state("networkidle", timeout=20000)
|
||||||
|
except Exception:
|
||||||
|
print("⚠️ networkidle timed out—continuing")
|
||||||
|
|
||||||
|
# 3) Try a few generic clicks that often reveal the player/iframe
|
||||||
|
# (No-ops if not present; they just fail silently)
|
||||||
|
for sel in [
|
||||||
|
'button:has-text("Play")',
|
||||||
|
'button:has-text("I understand")',
|
||||||
|
'button:has-text("Continue")',
|
||||||
|
'button:has-text("Accept")',
|
||||||
|
"#player, .video-player, .plyr__control",
|
||||||
|
]:
|
||||||
|
try:
|
||||||
|
el = page.locator(sel)
|
||||||
|
if el.count() > 0:
|
||||||
|
el.first.click(timeout=2000)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 4) Scroll to bottom to trigger lazy-load iframes
|
||||||
|
try:
|
||||||
|
page.evaluate("""
|
||||||
|
const delay = ms => new Promise(r => setTimeout(r, ms));
|
||||||
|
(async () => {
|
||||||
|
for (let y = 0; y < document.body.scrollHeight; y += 800) {
|
||||||
|
window.scrollTo(0, y);
|
||||||
|
await delay(200);
|
||||||
|
}
|
||||||
|
window.scrollTo(0, document.body.scrollHeight);
|
||||||
|
})();
|
||||||
|
""")
|
||||||
|
time.sleep(1.0)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# 5) Dump a screenshot & HTML so you can inspect what loaded
|
||||||
|
try:
|
||||||
|
page.screenshot(path="debug_page.png", full_page=True)
|
||||||
|
print("Saved screenshot -> debug_page.png")
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
html = page.content()
|
||||||
|
with open("debug_page.html", "w", encoding="utf-8") as f:
|
||||||
|
f.write(html)
|
||||||
|
print("Saved HTML -> debug_page.html")
|
||||||
|
|
||||||
|
# 6) Parse DOM for iframes (src and data-src)
|
||||||
|
soup = BeautifulSoup(html, "html.parser")
|
||||||
|
iframes = soup.find_all("iframe")
|
||||||
|
print(f"Found {len(iframes)} <iframe> tags in DOM")
|
||||||
|
|
||||||
|
for iframe in iframes:
|
||||||
|
for attr in ("src", "data-src"):
|
||||||
|
val = iframe.get(attr)
|
||||||
|
if val and "mxdrop.to/e/" in val:
|
||||||
|
print("[DOM] iframe", attr, "=", val)
|
||||||
|
found.add(val)
|
||||||
|
|
||||||
|
# 7) Regex over the full HTML (catches script-injected strings)
|
||||||
|
regex_hits = extract_from_html(html)
|
||||||
|
for u in regex_hits:
|
||||||
|
print("[HTML-REGEX]", u)
|
||||||
|
found.update(regex_hits)
|
||||||
|
|
||||||
|
# 8) Also list all frame URLs Playwright sees (nested frames)
|
||||||
|
for fr in page.frames:
|
||||||
|
if fr.url and "mxdrop.to/e/" in fr.url:
|
||||||
|
print("[FRAME] url:", fr.url)
|
||||||
|
found.add(fr.url)
|
||||||
|
|
||||||
|
# 9) Print final result
|
||||||
|
found = sorted(found)
|
||||||
|
print("\n==== MXDROP RESULTS ====")
|
||||||
|
if found:
|
||||||
|
for u in found:
|
||||||
|
print(u)
|
||||||
|
else:
|
||||||
|
title = soup.title.string.strip() if soup.title and soup.title.string else "(no title)"
|
||||||
|
print("No mxdrop links detected.")
|
||||||
|
print("Page title:", title)
|
||||||
|
# Quick hint if you hit a challenge:
|
||||||
|
snippet = html[:400].replace("\n", " ")
|
||||||
|
if "Just a moment" in snippet or "Cloudflare" in snippet or "cf-chl" in snippet:
|
||||||
|
print("Looks like a Cloudflare challenge / interstitial (human step required).")
|
||||||
|
|
||||||
|
# 10) Save results if any
|
||||||
|
if found:
|
||||||
|
with open("embedLinks.txt", "w", encoding="utf-8") as f:
|
||||||
|
for u in found:
|
||||||
|
f.write(u + "\n")
|
||||||
|
print("Saved -> embedLinks.txt")
|
||||||
|
|
||||||
|
browser.close()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
run()
|
||||||
@ -0,0 +1,140 @@
|
|||||||
|
https://striphub.cam/play/68f7256862f66877cc80e20b
|
||||||
|
https://striphub.cam/play/68f7256a62f66877cc80e211
|
||||||
|
https://striphub.cam/play/68f7257c62f66877cc80e215
|
||||||
|
https://striphub.cam/play/68f725ad62f66877cc80e21f
|
||||||
|
https://striphub.cam/play/68f7260862f66877cc80e229
|
||||||
|
https://striphub.cam/play/68f7260f62f66877cc80e22d
|
||||||
|
https://striphub.cam/play/68f7261e62f66877cc80e233
|
||||||
|
https://striphub.cam/play/68f7264762f66877cc80e23b
|
||||||
|
https://striphub.cam/play/68f7266562f66877cc80e241
|
||||||
|
https://striphub.cam/play/68f7266b62f66877cc80e245
|
||||||
|
https://striphub.cam/play/68f7266d62f66877cc80e249
|
||||||
|
https://striphub.cam/play/68f7269262f66877cc80e251
|
||||||
|
https://striphub.cam/play/68f7269462f66877cc80e255
|
||||||
|
https://striphub.cam/play/68f726ba62f66877cc80e25d
|
||||||
|
https://striphub.cam/play/68f726c362f66877cc80e263
|
||||||
|
https://striphub.cam/play/68f726e062f66877cc80e269
|
||||||
|
https://striphub.cam/play/68f726f762f66877cc80e26f
|
||||||
|
https://striphub.cam/play/68f7270c62f66877cc80e277
|
||||||
|
https://striphub.cam/play/68f7271c62f66877cc80e27b
|
||||||
|
https://striphub.cam/play/68f7272462f66877cc80e281
|
||||||
|
https://striphub.cam/play/68f7275362f66877cc80e289
|
||||||
|
https://striphub.cam/play/68f7279762f66877cc80e28f
|
||||||
|
https://striphub.cam/play/68f727a062f66877cc80e293
|
||||||
|
https://striphub.cam/play/68f727ad62f66877cc80e299
|
||||||
|
https://striphub.cam/play/68f727c162f66877cc80e29f
|
||||||
|
https://striphub.cam/play/68f727e062f66877cc80e2a5
|
||||||
|
https://striphub.cam/play/68f727e962f66877cc80e2ab
|
||||||
|
https://striphub.cam/play/68f727f062f66877cc80e2af
|
||||||
|
https://striphub.cam/play/68f727f562f66877cc80e2b3
|
||||||
|
https://striphub.cam/play/68f7281a62f66877cc80e2bb
|
||||||
|
https://striphub.cam/play/68f7282762f66877cc80e2c1
|
||||||
|
https://striphub.cam/play/68f7284462f66877cc80e2c7
|
||||||
|
https://striphub.cam/play/68f7284962f66877cc80e2cd
|
||||||
|
https://striphub.cam/play/68f7284a62f66877cc80e2d1
|
||||||
|
https://striphub.cam/play/68f7286362f66877cc80e2d7
|
||||||
|
https://striphub.cam/play/68f7287262f66877cc80e2dd
|
||||||
|
https://striphub.cam/play/68f7287d62f66877cc80e2e1
|
||||||
|
https://striphub.cam/play/68f7289862f66877cc80e2e9
|
||||||
|
https://striphub.cam/play/68f728a062f66877cc80e2ed
|
||||||
|
https://striphub.cam/play/68f728b062f66877cc80e2f3
|
||||||
|
https://striphub.cam/play/68f728b062f66877cc80e2f7
|
||||||
|
https://striphub.cam/play/68f728ea62f66877cc80e301
|
||||||
|
https://striphub.cam/play/68f7290762f66877cc80e309
|
||||||
|
https://striphub.cam/play/68f7291b62f66877cc80e30f
|
||||||
|
https://striphub.cam/play/68f7293062f66877cc80e315
|
||||||
|
https://striphub.cam/play/68f7293862f66877cc80e319
|
||||||
|
https://striphub.cam/play/68f7293f62f66877cc80e31f
|
||||||
|
https://striphub.cam/play/68f7295d62f66877cc80e325
|
||||||
|
https://striphub.cam/play/68f7296762f66877cc80e32b
|
||||||
|
https://striphub.cam/play/68f7299d62f66877cc80e335
|
||||||
|
https://striphub.cam/play/68f729b462f66877cc80e33b
|
||||||
|
https://striphub.cam/play/68f729ce62f66877cc80e341
|
||||||
|
https://striphub.cam/play/68f729df62f66877cc80e347
|
||||||
|
https://striphub.cam/play/68f72a0562f66877cc80e34f
|
||||||
|
https://striphub.cam/play/68f72a1862f66877cc80e355
|
||||||
|
https://striphub.cam/play/68f72a3562f66877cc80e35b
|
||||||
|
https://striphub.cam/play/68f72a4762f66877cc80e35f
|
||||||
|
https://striphub.cam/play/68f72a5062f66877cc80e365
|
||||||
|
https://striphub.cam/play/68f72a6662f66877cc80e36b
|
||||||
|
https://striphub.cam/play/68f72a8a62f66877cc80e373
|
||||||
|
https://striphub.cam/play/68f72a9c62f66877cc80e379
|
||||||
|
https://striphub.cam/play/68f72ac062f66877cc80e37f
|
||||||
|
https://striphub.cam/play/68f72ac162f66877cc80e383
|
||||||
|
https://striphub.cam/play/68f72ae362f66877cc80e389
|
||||||
|
https://striphub.cam/play/68f72aed62f66877cc80e38f
|
||||||
|
https://striphub.cam/play/68f72b1162f66877cc80e397
|
||||||
|
https://striphub.cam/play/68f72b1962f66877cc80e39b
|
||||||
|
https://striphub.cam/play/68f72b4362f66877cc80e3a3
|
||||||
|
https://striphub.cam/play/68f72b4d62f66877cc80e3a7
|
||||||
|
https://striphub.cam/play/68f72b7262f66877cc80e3af
|
||||||
|
https://striphub.cam/play/68f72b7362f66877cc80e3b3
|
||||||
|
https://striphub.cam/play/68f72b7762f66877cc80e3b7
|
||||||
|
https://striphub.cam/play/68f72baa62f66877cc80e3c1
|
||||||
|
https://striphub.cam/play/68f72bae62f66877cc80e3c5
|
||||||
|
https://striphub.cam/play/68f72bcf62f66877cc80e3cd
|
||||||
|
https://striphub.cam/play/68f72c1662f66877cc80e3d3
|
||||||
|
https://striphub.cam/play/68f72c1e62f66877cc80e3d7
|
||||||
|
https://striphub.cam/play/68f72c7a62f66877cc80e3df
|
||||||
|
https://striphub.cam/play/68f72c9062f66877cc80e3e5
|
||||||
|
https://striphub.cam/play/68f72cab62f66877cc80e3eb
|
||||||
|
https://striphub.cam/play/68f72cd662f66877cc80e3f1
|
||||||
|
https://striphub.cam/play/68f72cf162f66877cc80e3f7
|
||||||
|
https://striphub.cam/play/68f72cff62f66877cc80e3fb
|
||||||
|
https://striphub.cam/play/68f72d0062f66877cc80e3ff
|
||||||
|
https://striphub.cam/play/68f72d2262f66877cc80e407
|
||||||
|
https://striphub.cam/play/68f72d4162f66877cc80e40f
|
||||||
|
https://striphub.cam/play/68f72d4562f66877cc80e413
|
||||||
|
https://striphub.cam/play/68f72d5262f66877cc80e417
|
||||||
|
https://striphub.cam/play/68f72d8762f66877cc80e421
|
||||||
|
https://striphub.cam/play/68f72d9962f66877cc80e427
|
||||||
|
https://striphub.cam/play/68f72db262f66877cc80e42d
|
||||||
|
https://striphub.cam/play/68f72dc262f66877cc80e431
|
||||||
|
https://striphub.cam/play/68f72dd362f66877cc80e437
|
||||||
|
https://striphub.cam/play/68f72dde62f66877cc80e43d
|
||||||
|
https://striphub.cam/play/68f72df262f66877cc80e443
|
||||||
|
https://striphub.cam/play/68f72df562f66877cc80e449
|
||||||
|
https://striphub.cam/play/68f72dfc62f66877cc80e44d
|
||||||
|
https://striphub.cam/play/68f72e0e62f66877cc80e453
|
||||||
|
https://striphub.cam/play/68f72e3b62f66877cc80e45d
|
||||||
|
https://striphub.cam/play/68f72e5062f66877cc80e463
|
||||||
|
https://striphub.cam/play/68f72e5862f66877cc80e467
|
||||||
|
https://striphub.cam/play/68f72e8662f66877cc80e46f
|
||||||
|
https://striphub.cam/play/68f72e9162f66877cc80e473
|
||||||
|
https://striphub.cam/play/68f72e9362f66877cc80e477
|
||||||
|
https://striphub.cam/play/68f72e9f62f66877cc80e47d
|
||||||
|
https://striphub.cam/play/68f72ebe62f66877cc80e485
|
||||||
|
https://striphub.cam/play/68f72ec062f66877cc80e489
|
||||||
|
https://striphub.cam/play/68f72f1362f66877cc80e493
|
||||||
|
https://striphub.cam/play/68f72f2b62f66877cc80e499
|
||||||
|
https://striphub.cam/play/68f72f7962f66877cc80e49f
|
||||||
|
https://striphub.cam/play/68f72f8962f66877cc80e4a5
|
||||||
|
https://striphub.cam/play/68f72fa162f66877cc80e4ab
|
||||||
|
https://striphub.cam/play/68f72fac62f66877cc80e4af
|
||||||
|
https://striphub.cam/play/68f72fb062f66877cc80e4b3
|
||||||
|
https://striphub.cam/play/68f72fb562f66877cc80e4b9
|
||||||
|
https://striphub.cam/play/68f72fbb62f66877cc80e4bd
|
||||||
|
https://striphub.cam/play/68f72fbc62f66877cc80e4c1
|
||||||
|
https://striphub.cam/play/68f72fc562f66877cc80e4c7
|
||||||
|
https://striphub.cam/play/68f72fd162f66877cc80e4cb
|
||||||
|
https://striphub.cam/play/68f72fe762f66877cc80e4d3
|
||||||
|
https://striphub.cam/play/68f7306862f66877cc80e4e1
|
||||||
|
https://striphub.cam/play/68f7307662f66877cc80e4e5
|
||||||
|
https://striphub.cam/play/68f7309162f66877cc80e4ed
|
||||||
|
https://striphub.cam/play/68f730aa62f66877cc80e4f3
|
||||||
|
https://striphub.cam/play/68f730c562f66877cc80e4f9
|
||||||
|
https://striphub.cam/play/68f730e862f66877cc80e4ff
|
||||||
|
https://striphub.cam/play/68f730e962f66877cc80e503
|
||||||
|
https://striphub.cam/play/68f7310c62f66877cc80e50b
|
||||||
|
https://striphub.cam/play/68f7311562f66877cc80e50f
|
||||||
|
https://striphub.cam/play/68f7311762f66877cc80e513
|
||||||
|
https://striphub.cam/play/68f7315562f66877cc80e51d
|
||||||
|
https://striphub.cam/play/68f7316362f66877cc80e521
|
||||||
|
https://striphub.cam/play/68f7316462f66877cc80e527
|
||||||
|
https://striphub.cam/play/68f7318462f66877cc80e52f
|
||||||
|
https://striphub.cam/play/68f731a462f66877cc80e535
|
||||||
|
https://striphub.cam/play/68f731c462f66877cc80e53b
|
||||||
|
https://striphub.cam/play/68f731d162f66877cc80e541
|
||||||
|
https://striphub.cam/play/68f731e062f66877cc80e547
|
||||||
|
https://striphub.cam/play/68f731e662f66877cc80e54b
|
||||||
|
https://striphub.cam/play/68f731ea62f66877cc80e54f
|
||||||
Loading…
Reference in New Issue