first commit
This commit is contained in:
28
.gitignore
vendored
Normal file
28
.gitignore
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
/.phpunit.cache
|
||||
/bootstrap/ssr
|
||||
/node_modules
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/storage/pail
|
||||
/resources/js/actions
|
||||
/resources/js/routes
|
||||
/resources/js/wayfinder
|
||||
/vendor
|
||||
.DS_Store
|
||||
.env
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
.phpunit.result.cache
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
/auth.json
|
||||
/.fleet
|
||||
/.idea
|
||||
/.nova
|
||||
/.vscode
|
||||
/.zed
|
||||
39
Makefile
Normal file
39
Makefile
Normal file
@@ -0,0 +1,39 @@
|
||||
.PHONY: help build up install run stop sh
|
||||
|
||||
CONTAINER_NAME=app
|
||||
LARAVEL_DIR=laravel
|
||||
|
||||
help:
|
||||
@echo "Доступные команды:"
|
||||
@echo " make build - Собрать образ без кэша"
|
||||
@echo " make up - Поднять контейнер"
|
||||
@echo " make install - Установка зависимостей"
|
||||
@echo " make run - Запуск db:seed и test в контейнере"
|
||||
@echo " make stop - Остановить контейнер"
|
||||
@echo " make sh - Войти в контейнер"
|
||||
|
||||
build:
|
||||
docker compose build --no-cache
|
||||
|
||||
up:
|
||||
docker compose up -d
|
||||
|
||||
install: up
|
||||
docker compose exec -T $(CONTAINER_NAME) composer install
|
||||
|
||||
docker compose exec -T $(CONTAINER_NAME) sh -c '\
|
||||
if [ ! -f .env ]; then cp .env.example .env; fi && \
|
||||
php artisan key:generate && \
|
||||
php artisan migrate --force \
|
||||
'
|
||||
|
||||
run:
|
||||
docker compose exec -T $(CONTAINER_NAME) sh -c "\
|
||||
php artisan db:seed && \
|
||||
php artisan test \
|
||||
"
|
||||
|
||||
stop:
|
||||
docker compose down
|
||||
sh:
|
||||
docker compose exec app sh
|
||||
57
README.md
Normal file
57
README.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Тестовое задание
|
||||
|
||||
**На хост машине**
|
||||
|
||||
```bash
|
||||
make help
|
||||
make build
|
||||
make install
|
||||
make run # заполнит базу и запустит тесты
|
||||
```
|
||||
|
||||
Необходимо задать переменные окружения
|
||||
|
||||
```dotenv
|
||||
WB_URL="url"
|
||||
WB_API_KEY="123"
|
||||
```
|
||||
|
||||
## Синхронизация
|
||||
|
||||
Инкрементальная
|
||||
|
||||
```php
|
||||
Schedule::command('sync:all')->dailyAt('00:10');
|
||||
```
|
||||
|
||||
Для ORDERS, SALES, INCOMES синхронизация берёт данные по завершённым дням
|
||||
|
||||
Первый запуск: берутся все данные с даты 2 года назад до вчерашнего дня
|
||||
|
||||
Последующие запуски: берётся только следующий завершённый день после последней успешной записи (date_to)
|
||||
|
||||
Для STOCKS всегда берётся только текущий день, так как API поддерживает только актуальные данные
|
||||
|
||||
Ручное управление
|
||||
|
||||
```bash
|
||||
make sh # для входа в контейнер
|
||||
```
|
||||
|
||||
```bash
|
||||
Available commands for the "sync" namespace:
|
||||
php artisan sync:all Command description
|
||||
php artisan sync:incomes Sync incomes from WB API
|
||||
php artisan sync:orders Sync orders from API
|
||||
php artisan sync:sales Sync sales from WB API
|
||||
php artisan sync:stocks Sync stocks from WB test API
|
||||
```
|
||||
|
||||
Расширение
|
||||
|
||||
[Конфиг](laravel/config/wb-sync.php)
|
||||
|
||||
### Комментарий:
|
||||
|
||||
Апи может присылать полные дубли строк, думал делать вставку через upsert + уникальный ключ
|
||||
например по хешу основных строк, но выбрал более простой вариант с обычным заполнением
|
||||
112
compose.yaml
Normal file
112
compose.yaml
Normal file
@@ -0,0 +1,112 @@
|
||||
services:
|
||||
app:
|
||||
image: laravel_frankenphp
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/Dockerfile
|
||||
container_name: laravel_frankenphp
|
||||
restart: unless-stopped
|
||||
working_dir: /var/www
|
||||
user: "${UID:-1000}:${GID:-1000}"
|
||||
volumes:
|
||||
- ./laravel:/var/www
|
||||
- ./docker/Caddyfile:/etc/frankenphp/Caddyfile
|
||||
- caddy_data:/data
|
||||
ports:
|
||||
- "127.0.0.1:8003:80"
|
||||
# - "8443:443"
|
||||
- "127.0.0.1:5173:5173"
|
||||
depends_on:
|
||||
mariadb:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- laravel_network
|
||||
mariadb:
|
||||
image: mariadb:11.7
|
||||
container_name: laravel_mariadb
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:3306:3306"
|
||||
environment:
|
||||
MARIADB_ROOT_PASSWORD: secret
|
||||
MARIADB_DATABASE: laravel
|
||||
MARIADB_USER: laravel
|
||||
MARIADB_PASSWORD: secret
|
||||
volumes:
|
||||
# - ./docker/mariadb/data:/var/lib/mysql
|
||||
- mariadb_data:/var/lib/mysql
|
||||
# - ./docker/my.cnf:/etc/mysql/conf.d/my.cnf
|
||||
networks:
|
||||
- laravel_network
|
||||
healthcheck:
|
||||
test: [ "CMD", "mariadb-admin", "ping", "-h", "localhost", "-u", "root", "-psecret" ]
|
||||
timeout: 20s
|
||||
retries: 10
|
||||
start_period: 30s
|
||||
phpmyadmin:
|
||||
image: phpmyadmin/phpmyadmin
|
||||
container_name: laravel_phpmyadmin
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:6969:80"
|
||||
environment:
|
||||
PMA_HOST: mariadb
|
||||
PMA_PORT: 3306
|
||||
PMA_USER: laravel
|
||||
PMA_PASSWORD: secret
|
||||
PMA_ARBITRARY: 1
|
||||
depends_on:
|
||||
mariadb:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- laravel_network
|
||||
queue:
|
||||
image: laravel_frankenphp
|
||||
container_name: laravel_queue
|
||||
working_dir: /var/www
|
||||
restart: unless-stopped
|
||||
command: php artisan queue:work --verbose --tries=3 --sleep=3
|
||||
healthcheck:
|
||||
test: [ "CMD", "php", "artisan", "queue:monitor", "default" ]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 60s
|
||||
volumes:
|
||||
- ./laravel:/var/www
|
||||
depends_on:
|
||||
mariadb:
|
||||
condition: service_healthy
|
||||
networks:
|
||||
- laravel_network
|
||||
schedule:
|
||||
image: laravel_frankenphp
|
||||
container_name: laravel_schedule
|
||||
restart: unless-stopped
|
||||
working_dir: /var/www
|
||||
user: "${UID:-1000}:${GID:-1000}"
|
||||
volumes:
|
||||
- ./laravel:/var/www
|
||||
- ./docker/cron:/etc/cron.d:ro
|
||||
command:
|
||||
- "go-crond"
|
||||
- "--default-user=${UID:-1000}"
|
||||
- "--allow-unprivileged"
|
||||
- "--include=/etc/cron.d"
|
||||
- "--verbose"
|
||||
healthcheck:
|
||||
test: [ "CMD", "pgrep", "-f", "go-crond" ]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
depends_on:
|
||||
- app
|
||||
networks:
|
||||
- laravel_network
|
||||
networks:
|
||||
laravel_network:
|
||||
driver: bridge
|
||||
volumes:
|
||||
caddy_data:
|
||||
mariadb_data:
|
||||
9
docker/Caddyfile
Normal file
9
docker/Caddyfile
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
auto_https off
|
||||
}
|
||||
|
||||
:80 {
|
||||
root * /var/www/public
|
||||
encode zstd br gzip
|
||||
php_server
|
||||
}
|
||||
38
docker/Dockerfile
Normal file
38
docker/Dockerfile
Normal file
@@ -0,0 +1,38 @@
|
||||
FROM dunglas/frankenphp:php8.5-alpine
|
||||
|
||||
ARG USER_ID=1000
|
||||
ARG GROUP_ID=1000
|
||||
ARG USER_NAME=appuser
|
||||
|
||||
RUN install-php-extensions \
|
||||
pdo_mysql \
|
||||
opcache
|
||||
|
||||
RUN GOCROND_VERSION=22.9.1 \
|
||||
GOCRON_OS=linux \
|
||||
GOCRON_ARCH=amd64 \
|
||||
&& wget -O /usr/local/bin/go-crond \
|
||||
https://github.com/webdevops/go-crond/releases/download/${GOCROND_VERSION}/go-crond.${GOCRON_OS}.${GOCRON_ARCH} \
|
||||
&& chmod +x /usr/local/bin/go-crond
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
|
||||
RUN addgroup -g ${GROUP_ID} ${USER_NAME} && \
|
||||
adduser -u ${USER_ID} -D -S -G ${USER_NAME} ${USER_NAME}
|
||||
|
||||
RUN setcap CAP_NET_BIND_SERVICE=+eip /usr/local/bin/frankenphp
|
||||
|
||||
RUN mkdir -p /data/caddy /config/caddy && \
|
||||
chown -R ${USER_NAME}:${USER_NAME} /data /config && \
|
||||
chmod -R 755 /data /config
|
||||
|
||||
WORKDIR /var/www
|
||||
|
||||
COPY --chown=${USER_NAME}:${USER_NAME} laravel/ /var/www/
|
||||
|
||||
RUN chown -R ${USER_NAME}:${USER_NAME} /var/www && \
|
||||
find /var/www -type f -exec chmod 644 {} \; && \
|
||||
find /var/www -type d -exec chmod 755 {} \; && \
|
||||
chmod -R 775 /var/www/storage /var/www/bootstrap
|
||||
|
||||
USER ${USER_NAME}
|
||||
1
docker/cron/laravel
Normal file
1
docker/cron/laravel
Normal file
@@ -0,0 +1 @@
|
||||
* * * * * appuser cd /var/www && /usr/local/bin/php artisan schedule:run >> /var/www/storage/logs/cron.log 2>&1
|
||||
18
laravel/.editorconfig
Normal file
18
laravel/.editorconfig
Normal file
@@ -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
|
||||
68
laravel/.env.example
Normal file
68
laravel/.env.example
Normal file
@@ -0,0 +1,68 @@
|
||||
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=mariadb
|
||||
DB_HOST=mariadb
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=laravel
|
||||
DB_USERNAME=laravel
|
||||
DB_PASSWORD=secret
|
||||
|
||||
WB_URL=
|
||||
WB_API_KEY=
|
||||
|
||||
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}"
|
||||
11
laravel/.gitattributes
vendored
Normal file
11
laravel/.gitattributes
vendored
Normal file
@@ -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
|
||||
25
laravel/.gitignore
vendored
Normal file
25
laravel/.gitignore
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
*.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
|
||||
_ide_helper.php
|
||||
59
laravel/README.md
Normal file
59
laravel/README.md
Normal file
@@ -0,0 +1,59 @@
|
||||
<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 can also check out [Laravel Learn](https://laravel.com/learn), where you will be guided through building a modern Laravel application.
|
||||
|
||||
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).
|
||||
101
laravel/app/Console/Commands/SyncAllCommand.php
Normal file
101
laravel/app/Console/Commands/SyncAllCommand.php
Normal file
@@ -0,0 +1,101 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Enums\SyncStatus;
|
||||
use Illuminate\Console\Command;
|
||||
use App\Enums\WbEndpoint;
|
||||
use App\Models\SyncState;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
final class SyncAllCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'sync:all';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Command description';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle(): int
|
||||
{
|
||||
$this->syncEndpoint(WbEndpoint::ORDERS, 'sync:orders');
|
||||
$this->syncEndpoint(WbEndpoint::SALES, 'sync:sales');
|
||||
$this->syncEndpoint(WbEndpoint::INCOMES, 'sync:incomes');
|
||||
|
||||
$this->syncStocks();
|
||||
|
||||
return self::SUCCESS;
|
||||
}
|
||||
|
||||
private function syncEndpoint(WbEndpoint $endpoint, string $command): void
|
||||
{
|
||||
$yesterday = Carbon::yesterday();
|
||||
|
||||
$lastSuccess = SyncState::query()
|
||||
->where('entity', $endpoint->name)
|
||||
->where('status', SyncStatus::SUCCESS)
|
||||
->orderByDesc('date_to')
|
||||
->first();
|
||||
|
||||
if (!$lastSuccess) {
|
||||
$dateFrom = Carbon::now()->subYears(2);
|
||||
$dateTo = $yesterday;
|
||||
} else {
|
||||
$dateFrom = Carbon::parse($lastSuccess->date_to);
|
||||
$dateTo = $dateFrom->copy()->addDay();
|
||||
|
||||
if ($dateTo->gt($yesterday)) {
|
||||
$dateTo = $yesterday->copy();
|
||||
}
|
||||
}
|
||||
|
||||
if ($dateFrom->gte($yesterday)) {
|
||||
$this->info("$endpoint->name already up-to-date");
|
||||
return;
|
||||
}
|
||||
|
||||
$this->info("Syncing $endpoint->name from {$dateFrom->toDateString()} to {$dateTo->toDateString()}");
|
||||
|
||||
Artisan::call($command, [
|
||||
'--dateFrom' => $dateFrom->toDateString(),
|
||||
'--dateTo' => $dateTo->toDateString(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
private function syncStocks(): void
|
||||
{
|
||||
$today = Carbon::today()->toDateString();
|
||||
|
||||
$lastSuccess = SyncState::query()
|
||||
->where('entity', WbEndpoint::STOCKS->name)
|
||||
->where('status', SyncStatus::SUCCESS)
|
||||
->where('date_from', $today)
|
||||
->first();
|
||||
|
||||
if ($lastSuccess) {
|
||||
$this->info("STOCKS already synced for today");
|
||||
return;
|
||||
}
|
||||
|
||||
$this->info("Syncing STOCKS for today");
|
||||
|
||||
Artisan::call('sync:stocks', [
|
||||
'--date' => $today,
|
||||
]);
|
||||
}
|
||||
}
|
||||
45
laravel/app/Console/Commands/SyncIncomesCommand.php
Normal file
45
laravel/app/Console/Commands/SyncIncomesCommand.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\Enums\WbEndpoint;
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
final class SyncIncomesCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'sync:incomes {--dateFrom=} {--dateTo=}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Sync incomes from WB API';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle(WbSyncManagerInterface $manager): int
|
||||
{
|
||||
$dateFrom = $this->option('dateFrom');
|
||||
$dateTo = $this->option('dateTo');
|
||||
|
||||
$dateFrom = $dateFrom ?: Carbon::now()->subYear()->toDateString();
|
||||
$dateTo = $dateTo ?: Carbon::yesterday()->toDateString();
|
||||
|
||||
$manager->start(WbEndpoint::INCOMES, $dateFrom, $dateTo);
|
||||
|
||||
$this->info('Sync started');
|
||||
|
||||
return self::SUCCESS;
|
||||
}
|
||||
}
|
||||
46
laravel/app/Console/Commands/SyncOrdersCommand.php
Normal file
46
laravel/app/Console/Commands/SyncOrdersCommand.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\Enums\WbEndpoint;
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
final class SyncOrdersCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'sync:orders {--dateFrom=} {--dateTo=}';
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Sync orders from API';
|
||||
|
||||
public function handle(WbSyncManagerInterface $manager): int
|
||||
{
|
||||
$dateFrom = $this->option('dateFrom')
|
||||
?: Carbon::now()->subYears(2)->toDateString();
|
||||
|
||||
$dateTo = $this->option('dateTo')
|
||||
?: Carbon::yesterday()->toDateString();
|
||||
|
||||
if ($dateFrom >= $dateTo) {
|
||||
$this->info('Nothing to sync');
|
||||
return self::SUCCESS;
|
||||
}
|
||||
|
||||
$this->info("Syncing ORDERS from $dateFrom to $dateTo");
|
||||
|
||||
$manager->start(WbEndpoint::ORDERS, $dateFrom, $dateTo);
|
||||
|
||||
return self::SUCCESS;
|
||||
}
|
||||
}
|
||||
45
laravel/app/Console/Commands/SyncSalesCommand.php
Normal file
45
laravel/app/Console/Commands/SyncSalesCommand.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\Enums\WbEndpoint;
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
final class SyncSalesCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'sync:sales {--dateFrom=} {--dateTo=}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Sync sales from WB API';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle(WbSyncManagerInterface $manager): int
|
||||
{
|
||||
$dateFrom = $this->option('dateFrom');
|
||||
$dateTo = $this->option('dateTo');
|
||||
|
||||
$dateFrom = $dateFrom ?: Carbon::now()->subYear()->toDateString();
|
||||
$dateTo = $dateTo ?: Carbon::yesterday()->toDateString();
|
||||
|
||||
$manager->start(WbEndpoint::SALES, $dateFrom, $dateTo);
|
||||
|
||||
$this->info('Sales sync started');
|
||||
|
||||
return self::SUCCESS;
|
||||
}
|
||||
}
|
||||
40
laravel/app/Console/Commands/SyncStocksCommand.php
Normal file
40
laravel/app/Console/Commands/SyncStocksCommand.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\Enums\WbEndpoint;
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
final class SyncStocksCommand extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'sync:stocks {--date=}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Sync stocks from WB test API';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
public function handle(WbSyncManagerInterface $manager): int
|
||||
{
|
||||
$date = (string)($this->option('date') ?? now()->toDateString());
|
||||
|
||||
$manager->start(WbEndpoint::STOCKS, $date);
|
||||
|
||||
$this->info('Sync started');
|
||||
|
||||
return self::SUCCESS;
|
||||
}
|
||||
}
|
||||
17
laravel/app/Contracts/WbClientInterface.php
Normal file
17
laravel/app/Contracts/WbClientInterface.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Contracts;
|
||||
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Exceptions\WbServiceException;
|
||||
|
||||
interface WbClientInterface
|
||||
{
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function fetch(WbRequestDTO $requestDTO): array;
|
||||
}
|
||||
12
laravel/app/Contracts/WbSyncFactoryInterface.php
Normal file
12
laravel/app/Contracts/WbSyncFactoryInterface.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Contracts;
|
||||
|
||||
use App\Enums\WbEndpoint;
|
||||
|
||||
interface WbSyncFactoryInterface
|
||||
{
|
||||
public function make(WbEndpoint $type): WbSyncInterface;
|
||||
}
|
||||
14
laravel/app/Contracts/WbSyncInterface.php
Normal file
14
laravel/app/Contracts/WbSyncInterface.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Contracts;
|
||||
|
||||
use App\DTO\WbRequestDTO;
|
||||
|
||||
interface WbSyncInterface
|
||||
{
|
||||
public function sync(WbRequestDTO $dto): array;
|
||||
|
||||
public function save(array $data): void;
|
||||
}
|
||||
41
laravel/app/Contracts/WbSyncManagerInterface.php
Normal file
41
laravel/app/Contracts/WbSyncManagerInterface.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Contracts;
|
||||
|
||||
use App\Enums\WbEndpoint;
|
||||
|
||||
interface WbSyncManagerInterface
|
||||
{
|
||||
public function start(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo = null
|
||||
): void;
|
||||
|
||||
public function handleFirstPage(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo,
|
||||
int $lastPage
|
||||
): void;
|
||||
|
||||
public function incrementProgress(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): void;
|
||||
|
||||
public function markSuccess(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): void;
|
||||
|
||||
public function markFailed(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): void;
|
||||
}
|
||||
19
laravel/app/DTO/WbRequestDTO.php
Normal file
19
laravel/app/DTO/WbRequestDTO.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\DTO;
|
||||
|
||||
use App\Enums\WbEndpoint;
|
||||
|
||||
final readonly class WbRequestDTO
|
||||
{
|
||||
public function __construct(
|
||||
public WbEndpoint $endpoint,
|
||||
public string $dateFrom,
|
||||
public ?string $dateTo,
|
||||
public int $page = 1,
|
||||
public int $limit = 500,
|
||||
) {
|
||||
}
|
||||
}
|
||||
12
laravel/app/Enums/SyncStatus.php
Normal file
12
laravel/app/Enums/SyncStatus.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum SyncStatus: string
|
||||
{
|
||||
case PENDING = 'pending';
|
||||
case SUCCESS = 'success';
|
||||
case FAILED = 'failed';
|
||||
}
|
||||
23
laravel/app/Enums/WbEndpoint.php
Normal file
23
laravel/app/Enums/WbEndpoint.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum WbEndpoint: string
|
||||
{
|
||||
case STOCKS = '/api/stocks';
|
||||
case SALES = '/api/sales';
|
||||
case ORDERS = '/api/orders';
|
||||
case INCOMES = '/api/incomes';
|
||||
|
||||
public function url(): string
|
||||
{
|
||||
return config('wb-sync.url') . $this->value;
|
||||
}
|
||||
|
||||
public function key(): string
|
||||
{
|
||||
return config('wb-sync.key');
|
||||
}
|
||||
}
|
||||
12
laravel/app/Exceptions/WbServiceException.php
Normal file
12
laravel/app/Exceptions/WbServiceException.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
final class WbServiceException extends Exception
|
||||
{
|
||||
|
||||
}
|
||||
8
laravel/app/Http/Controllers/Controller.php
Normal file
8
laravel/app/Http/Controllers/Controller.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
abstract class Controller
|
||||
{
|
||||
//
|
||||
}
|
||||
69
laravel/app/Jobs/WbSyncJob.php
Normal file
69
laravel/app/Jobs/WbSyncJob.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
use App\Contracts\WbSyncFactoryInterface;
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Enums\WbEndpoint;
|
||||
use Illuminate\Bus\Batchable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Log;
|
||||
|
||||
final class WbSyncJob implements ShouldQueue
|
||||
{
|
||||
use Queueable, Batchable;
|
||||
|
||||
public int $tries = 3;
|
||||
public array $backoff = [10, 30, 60];
|
||||
|
||||
public function __construct(
|
||||
private readonly WbEndpoint $endpoint,
|
||||
private readonly string $dateFrom,
|
||||
private readonly ?string $dateTo,
|
||||
private readonly int $page,
|
||||
) {
|
||||
}
|
||||
|
||||
public function handle(
|
||||
WbSyncFactoryInterface $factory,
|
||||
WbSyncManagerInterface $manager
|
||||
): void {
|
||||
$service = $factory->make($this->endpoint);
|
||||
|
||||
$dto = new WbRequestDTO(
|
||||
endpoint: $this->endpoint,
|
||||
dateFrom: $this->dateFrom,
|
||||
dateTo: $this->dateTo,
|
||||
page: $this->page,
|
||||
);
|
||||
|
||||
$response = $service->sync($dto);
|
||||
|
||||
$service->save($response['data']);
|
||||
|
||||
if ($this->page === 1) {
|
||||
$lastPage = (int)data_get($response, 'meta.last_page', 1);
|
||||
$manager->handleFirstPage(
|
||||
$this->endpoint,
|
||||
$this->dateFrom,
|
||||
$this->dateTo,
|
||||
$lastPage,
|
||||
);
|
||||
|
||||
return;
|
||||
}
|
||||
Log::info(
|
||||
"WB sync page $this->page for {$this->endpoint->name} date form: $this->dateFrom, to: $this->dateTo processed"
|
||||
);
|
||||
|
||||
$manager->incrementProgress(
|
||||
$this->endpoint,
|
||||
$this->dateFrom,
|
||||
$this->dateTo
|
||||
);
|
||||
}
|
||||
}
|
||||
70
laravel/app/Models/Income.php
Normal file
70
laravel/app/Models/Income.php
Normal file
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property int $income_id
|
||||
* @property string|null $number
|
||||
* @property \Illuminate\Support\Carbon $date
|
||||
* @property \Illuminate\Support\Carbon|null $last_change_date
|
||||
* @property string|null $supplier_article
|
||||
* @property string|null $tech_size
|
||||
* @property int|null $barcode
|
||||
* @property int $quantity
|
||||
* @property string|null $total_price
|
||||
* @property \Illuminate\Support\Carbon|null $date_close
|
||||
* @property string|null $warehouse_name
|
||||
* @property int|null $nm_id
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereBarcode($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereDateClose($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereIncomeId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereLastChangeDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereNmId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereNumber($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereQuantity($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereSupplierArticle($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereTechSize($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereTotalPrice($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Income whereWarehouseName($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Income extends Model
|
||||
{
|
||||
protected $table = 'incomes';
|
||||
|
||||
protected $fillable = [
|
||||
'income_id',
|
||||
'number',
|
||||
'date',
|
||||
'last_change_date',
|
||||
'supplier_article',
|
||||
'tech_size',
|
||||
'barcode',
|
||||
'quantity',
|
||||
'total_price',
|
||||
'date_close',
|
||||
'warehouse_name',
|
||||
'nm_id',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date' => 'date',
|
||||
'last_change_date' => 'date',
|
||||
'date_close' => 'date',
|
||||
];
|
||||
}
|
||||
}
|
||||
77
laravel/app/Models/Order.php
Normal file
77
laravel/app/Models/Order.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $g_number
|
||||
* @property string $date
|
||||
* @property string|null $last_change_date
|
||||
* @property string|null $supplier_article
|
||||
* @property string|null $tech_size
|
||||
* @property int|null $barcode
|
||||
* @property string|null $total_price
|
||||
* @property int|null $discount_percent
|
||||
* @property string|null $warehouse_name
|
||||
* @property string|null $oblast
|
||||
* @property int|null $income_id
|
||||
* @property int|null $odid
|
||||
* @property int|null $nm_id
|
||||
* @property string|null $subject
|
||||
* @property string|null $category
|
||||
* @property string|null $brand
|
||||
* @property int $is_cancel
|
||||
* @property string|null $cancel_dt
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereBarcode($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereBrand($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereCancelDt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereCategory($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereDiscountPercent($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereGNumber($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereIncomeId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereIsCancel($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereLastChangeDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereNmId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereOblast($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereOdid($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereSubject($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereSupplierArticle($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereTechSize($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereTotalPrice($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Order whereWarehouseName($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Order extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'g_number',
|
||||
'date',
|
||||
'last_change_date',
|
||||
'supplier_article',
|
||||
'tech_size',
|
||||
'barcode',
|
||||
'total_price',
|
||||
'discount_percent',
|
||||
'warehouse_name',
|
||||
'oblast',
|
||||
'income_id',
|
||||
'odid',
|
||||
'nm_id',
|
||||
'subject',
|
||||
'category',
|
||||
'brand',
|
||||
'is_cancel',
|
||||
'cancel_dt',
|
||||
];
|
||||
}
|
||||
117
laravel/app/Models/Sale.php
Normal file
117
laravel/app/Models/Sale.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $g_number
|
||||
* @property \Illuminate\Support\Carbon $date
|
||||
* @property \Illuminate\Support\Carbon|null $last_change_date
|
||||
* @property string|null $supplier_article
|
||||
* @property string|null $tech_size
|
||||
* @property int|null $barcode
|
||||
* @property string|null $total_price
|
||||
* @property int|null $discount_percent
|
||||
* @property bool $is_supply
|
||||
* @property bool $is_realization
|
||||
* @property string|null $promo_code_discount
|
||||
* @property string|null $warehouse_name
|
||||
* @property string|null $country_name
|
||||
* @property string|null $oblast_okrug_name
|
||||
* @property string|null $region_name
|
||||
* @property int|null $income_id
|
||||
* @property string|null $sale_id
|
||||
* @property int|null $odid
|
||||
* @property string|null $spp
|
||||
* @property numeric|null $for_pay
|
||||
* @property numeric|null $finished_price
|
||||
* @property numeric|null $price_with_disc
|
||||
* @property int|null $nm_id
|
||||
* @property string|null $subject
|
||||
* @property string|null $category
|
||||
* @property string|null $brand
|
||||
* @property bool|null $is_storno
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereBarcode($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereBrand($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereCategory($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereCountryName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereDiscountPercent($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereFinishedPrice($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereForPay($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereGNumber($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereIncomeId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereIsRealization($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereIsStorno($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereIsSupply($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereLastChangeDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereNmId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereOblastOkrugName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereOdid($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale wherePriceWithDisc($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale wherePromoCodeDiscount($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereRegionName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereSaleId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereSpp($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereSubject($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereSupplierArticle($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereTechSize($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereTotalPrice($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Sale whereWarehouseName($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Sale extends Model
|
||||
{
|
||||
protected $table = 'sales';
|
||||
|
||||
protected $fillable = [
|
||||
'g_number',
|
||||
'date',
|
||||
'last_change_date',
|
||||
'supplier_article',
|
||||
'tech_size',
|
||||
'barcode',
|
||||
'total_price',
|
||||
'discount_percent',
|
||||
'is_supply',
|
||||
'is_realization',
|
||||
'promo_code_discount',
|
||||
'warehouse_name',
|
||||
'country_name',
|
||||
'oblast_okrug_name',
|
||||
'region_name',
|
||||
'income_id',
|
||||
'sale_id',
|
||||
'odid',
|
||||
'spp',
|
||||
'for_pay',
|
||||
'finished_price',
|
||||
'price_with_disc',
|
||||
'nm_id',
|
||||
'subject',
|
||||
'category',
|
||||
'brand',
|
||||
'is_storno',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date' => 'date',
|
||||
'last_change_date' => 'date',
|
||||
'is_supply' => 'boolean',
|
||||
'is_realization' => 'boolean',
|
||||
'is_storno' => 'boolean',
|
||||
];
|
||||
}
|
||||
}
|
||||
97
laravel/app/Models/Stock.php
Normal file
97
laravel/app/Models/Stock.php
Normal file
@@ -0,0 +1,97 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property \Illuminate\Support\Carbon $date
|
||||
* @property \Illuminate\Support\Carbon|null $last_change_date
|
||||
* @property string|null $supplier_article
|
||||
* @property string|null $tech_size
|
||||
* @property string|null $barcode
|
||||
* @property int $quantity
|
||||
* @property bool|null $is_supply
|
||||
* @property bool|null $is_realization
|
||||
* @property int|null $quantity_full
|
||||
* @property string|null $warehouse_name
|
||||
* @property int|null $in_way_to_client
|
||||
* @property int|null $in_way_from_client
|
||||
* @property int|null $nm_id
|
||||
* @property string|null $subject
|
||||
* @property string|null $category
|
||||
* @property string|null $brand
|
||||
* @property string|null $sc_code
|
||||
* @property string|null $price
|
||||
* @property string|null $discount
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereBarcode($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereBrand($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereCategory($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereDiscount($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereInWayFromClient($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereInWayToClient($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereIsRealization($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereIsSupply($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereLastChangeDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereNmId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock wherePrice($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereQuantity($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereQuantityFull($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereScCode($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereSubject($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereSupplierArticle($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereTechSize($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|Stock whereWarehouseName($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Stock extends Model
|
||||
{
|
||||
protected $table = 'stocks';
|
||||
|
||||
protected $fillable = [
|
||||
'date',
|
||||
'last_change_date',
|
||||
'supplier_article',
|
||||
'tech_size',
|
||||
'barcode',
|
||||
'quantity',
|
||||
'is_supply',
|
||||
'is_realization',
|
||||
'quantity_full',
|
||||
'warehouse_name',
|
||||
'in_way_to_client',
|
||||
'in_way_from_client',
|
||||
'nm_id',
|
||||
'subject',
|
||||
'category',
|
||||
'brand',
|
||||
'sc_code',
|
||||
'price',
|
||||
'discount',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date' => 'date',
|
||||
'last_change_date' => 'date',
|
||||
'is_supply' => 'boolean',
|
||||
'is_realization' => 'boolean',
|
||||
'quantity' => 'integer',
|
||||
'quantity_full' => 'integer',
|
||||
'in_way_to_client' => 'integer',
|
||||
'in_way_from_client' => 'integer',
|
||||
'nm_id' => 'integer',
|
||||
];
|
||||
}
|
||||
}
|
||||
66
laravel/app/Models/SyncState.php
Normal file
66
laravel/app/Models/SyncState.php
Normal file
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Enums\SyncStatus;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $entity
|
||||
* @property \Illuminate\Support\Carbon|null $started_at
|
||||
* @property \Illuminate\Support\Carbon $date_from
|
||||
* @property \Illuminate\Support\Carbon|null $date_to
|
||||
* @property SyncStatus $status
|
||||
* @property string|null $batch_id
|
||||
* @property int|null $total_pages
|
||||
* @property int $processed_pages
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereBatchId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereDateFrom($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereDateTo($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereEntity($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereProcessedPages($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereStartedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereStatus($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereTotalPages($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|SyncState whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class SyncState extends Model
|
||||
{
|
||||
protected $table = 'sync_states';
|
||||
protected $fillable = [
|
||||
'entity',
|
||||
'date_from',
|
||||
'date_to',
|
||||
'status',
|
||||
'batch_id',
|
||||
'total_pages',
|
||||
'processed_pages',
|
||||
'started_at',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date_from' => 'date',
|
||||
'date_to' => 'date',
|
||||
'started_at' => 'datetime',
|
||||
'status' => SyncStatus::class,
|
||||
'total_pages' => 'integer',
|
||||
'processed_pages' => 'integer',
|
||||
];
|
||||
}
|
||||
|
||||
public function incrementProcessedPages(): void
|
||||
{
|
||||
$this->increment('processed_pages');
|
||||
}
|
||||
}
|
||||
73
laravel/app/Models/User.php
Normal file
73
laravel/app/Models/User.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<?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;
|
||||
|
||||
/**
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $email
|
||||
* @property \Illuminate\Support\Carbon|null $email_verified_at
|
||||
* @property string $password
|
||||
* @property string|null $remember_token
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
|
||||
* @property-read int|null $notifications_count
|
||||
* @method static \Database\Factories\UserFactory factory($count = null, $state = [])
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereEmail($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereEmailVerifiedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User wherePassword($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereRememberToken($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|User whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
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',
|
||||
];
|
||||
}
|
||||
}
|
||||
49
laravel/app/Providers/AppServiceProvider.php
Normal file
49
laravel/app/Providers/AppServiceProvider.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use App\Contracts\WbClientInterface;
|
||||
use App\Contracts\WbSyncFactoryInterface;
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\Services\WbService\WbClient;
|
||||
use App\Services\WbService\WbSyncFactory;
|
||||
use App\Services\WbService\WbSyncManager;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*/
|
||||
public function register(): void
|
||||
{
|
||||
$this->registerSyncServices();
|
||||
$this->app->bind(WbSyncManagerInterface::class, WbSyncManager::class);
|
||||
$this->app->bind(WbClientInterface::class, WbClient::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
private function registerSyncServices(): void
|
||||
{
|
||||
$syncServices = config('wb-sync.services');
|
||||
|
||||
foreach ($syncServices as $serviceClass) {
|
||||
$this->app->singleton($serviceClass);
|
||||
}
|
||||
|
||||
$this->app->singleton(WbSyncFactoryInterface::class, function ($app) use ($syncServices) {
|
||||
$services = array_map(function ($serviceClass) use ($app) {
|
||||
return $app->make($serviceClass);
|
||||
}, $syncServices);
|
||||
|
||||
return new WbSyncFactory($services);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService\SyncServices;
|
||||
|
||||
use App\Contracts\WbClientInterface;
|
||||
use App\Contracts\WbSyncInterface;
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Exceptions\WbServiceException;
|
||||
use App\Models\Income;
|
||||
|
||||
final readonly class IncomesSyncService implements WbSyncInterface
|
||||
{
|
||||
public function __construct(
|
||||
private WbClientInterface $client,
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function sync(WbRequestDTO $dto): array
|
||||
{
|
||||
return $this->client->fetch($dto);
|
||||
}
|
||||
|
||||
public function save(array $data): void
|
||||
{
|
||||
if (empty($data)) {
|
||||
return;
|
||||
}
|
||||
|
||||
collect($data)
|
||||
->chunk(500)
|
||||
->each(function ($chunk) {
|
||||
$rows = $chunk->map(function (array $row) {
|
||||
return [
|
||||
'income_id' => $row['income_id'],
|
||||
'number' => $row['number'],
|
||||
'date' => $row['date'],
|
||||
'last_change_date' => $row['last_change_date'],
|
||||
'supplier_article' => $row['supplier_article'],
|
||||
'tech_size' => $row['tech_size'],
|
||||
'barcode' => (string)$row['barcode'],
|
||||
'quantity' => $row['quantity'],
|
||||
'total_price' => $row['total_price'],
|
||||
'date_close' => $row['date_close'],
|
||||
'warehouse_name' => $row['warehouse_name'],
|
||||
'nm_id' => $row['nm_id'],
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
Income::insert($rows);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService\SyncServices;
|
||||
|
||||
use App\Contracts\WbClientInterface;
|
||||
use App\Contracts\WbSyncInterface;
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Exceptions\WbServiceException;
|
||||
use App\Models\Order;
|
||||
|
||||
final readonly class OrdersSyncService implements WbSyncInterface
|
||||
{
|
||||
public function __construct(
|
||||
private WbClientInterface $client,
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function sync(WbRequestDTO $dto): array
|
||||
{
|
||||
return $this->client->fetch($dto);
|
||||
}
|
||||
|
||||
public function save(array $data): void
|
||||
{
|
||||
if (empty($data)) {
|
||||
return;
|
||||
}
|
||||
|
||||
collect($data)
|
||||
->chunk(500)
|
||||
->each(function ($chunk) {
|
||||
$rows = $chunk->map(function (array $row) {
|
||||
return [
|
||||
'g_number' => $row['g_number'],
|
||||
'date' => !empty($row['date']) ? $row['date'] : now(),
|
||||
'last_change_date' => $row['last_change_date'],
|
||||
'supplier_article' => $row['supplier_article'],
|
||||
'tech_size' => $row['tech_size'],
|
||||
'barcode' => (int)$row['barcode'],
|
||||
'total_price' => $row['total_price'],
|
||||
'discount_percent' => $row['discount_percent'],
|
||||
'warehouse_name' => $row['warehouse_name'],
|
||||
'oblast' => $row['oblast'],
|
||||
'income_id' => $row['income_id'],
|
||||
'odid' => (int)$row['odid'],
|
||||
'nm_id' => $row['nm_id'],
|
||||
'subject' => $row['subject'],
|
||||
'category' => $row['category'],
|
||||
'brand' => $row['brand'],
|
||||
'is_cancel' => $row['is_cancel'],
|
||||
'cancel_dt' => $row['cancel_dt'],
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
try {
|
||||
Order::insert($rows);
|
||||
} catch (\Throwable $e) {
|
||||
\Log::error('Insert failed', [
|
||||
'error' => $e->getMessage(),
|
||||
'row_sample' => $rows[0] ?? null,
|
||||
]);
|
||||
|
||||
throw $e;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService\SyncServices;
|
||||
|
||||
use App\Contracts\WbClientInterface;
|
||||
use App\Contracts\WbSyncInterface;
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Exceptions\WbServiceException;
|
||||
use App\Models\Sale;
|
||||
|
||||
final readonly class SalesSyncService implements WbSyncInterface
|
||||
{
|
||||
public function __construct(
|
||||
private WbClientInterface $client,
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function sync(WbRequestDTO $dto): array
|
||||
{
|
||||
return $this->client->fetch($dto);
|
||||
}
|
||||
|
||||
public function save(array $data): void
|
||||
{
|
||||
if (empty($data)) {
|
||||
return;
|
||||
}
|
||||
|
||||
collect($data)
|
||||
->chunk(500)
|
||||
->each(function ($chunk) {
|
||||
$rows = $chunk->map(function (array $row) {
|
||||
return [
|
||||
'g_number' => $row['g_number'],
|
||||
'date' => $row['date'],
|
||||
'last_change_date' => $row['last_change_date'],
|
||||
'supplier_article' => $row['supplier_article'],
|
||||
'tech_size' => $row['tech_size'],
|
||||
'barcode' => (string)$row['barcode'],
|
||||
'total_price' => $row['total_price'],
|
||||
'discount_percent' => $row['discount_percent'],
|
||||
'is_supply' => $row['is_supply'],
|
||||
'is_realization' => $row['is_realization'],
|
||||
'promo_code_discount' => $row['promo_code_discount'],
|
||||
'warehouse_name' => $row['warehouse_name'],
|
||||
'country_name' => $row['country_name'],
|
||||
'oblast_okrug_name' => $row['oblast_okrug_name'],
|
||||
'region_name' => $row['region_name'],
|
||||
'income_id' => $row['income_id'],
|
||||
'sale_id' => $row['sale_id'],
|
||||
'odid' => $row['odid'],
|
||||
'spp' => $row['spp'],
|
||||
'for_pay' => $row['for_pay'],
|
||||
'finished_price' => $row['finished_price'],
|
||||
'price_with_disc' => $row['price_with_disc'],
|
||||
'nm_id' => $row['nm_id'],
|
||||
'subject' => $row['subject'],
|
||||
'category' => $row['category'],
|
||||
'brand' => $row['brand'],
|
||||
'is_storno' => $row['is_storno'],
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
Sale::insert($rows);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService\SyncServices;
|
||||
|
||||
use App\Contracts\WbClientInterface;
|
||||
use App\Contracts\WbSyncInterface;
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Exceptions\WbServiceException;
|
||||
use App\Models\Stock;
|
||||
|
||||
final readonly class StocksSyncService implements WbSyncInterface
|
||||
{
|
||||
public function __construct(
|
||||
private WbClientInterface $client,
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function sync(WbRequestDTO $dto): array
|
||||
{
|
||||
return $this->client->fetch($dto);
|
||||
}
|
||||
|
||||
public function save(array $data): void
|
||||
{
|
||||
if (empty($data)) {
|
||||
return;
|
||||
}
|
||||
|
||||
collect($data)
|
||||
->chunk(500)
|
||||
->each(function ($chunk) {
|
||||
$rows = $chunk->map(function (array $row) {
|
||||
return [
|
||||
'date' => $row['date'],
|
||||
'last_change_date' => $row['last_change_date'],
|
||||
'supplier_article' => $row['supplier_article'],
|
||||
'tech_size' => $row['tech_size'],
|
||||
'barcode' => (string)$row['barcode'],
|
||||
'quantity' => $row['quantity'],
|
||||
'is_supply' => $row['is_supply'],
|
||||
'is_realization' => $row['is_realization'],
|
||||
'quantity_full' => $row['quantity_full'],
|
||||
'warehouse_name' => $row['warehouse_name'],
|
||||
'in_way_to_client' => $row['in_way_to_client'],
|
||||
'in_way_from_client' => $row['in_way_from_client'],
|
||||
'nm_id' => $row['nm_id'],
|
||||
'subject' => $row['subject'],
|
||||
'category' => $row['category'],
|
||||
'brand' => $row['brand'],
|
||||
'sc_code' => (string)$row['sc_code'],
|
||||
'price' => $row['price'],
|
||||
'discount' => $row['discount'],
|
||||
'updated_at' => now(),
|
||||
'created_at' => now(),
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
Stock::insert($rows);// todo upsert
|
||||
});
|
||||
}
|
||||
}
|
||||
50
laravel/app/Services/WbService/WbClient.php
Normal file
50
laravel/app/Services/WbService/WbClient.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService;
|
||||
|
||||
use App\Contracts\WbClientInterface;
|
||||
use App\DTO\WbRequestDTO;
|
||||
use App\Exceptions\WbServiceException;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Throwable;
|
||||
|
||||
final class WbClient implements WbClientInterface
|
||||
{
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function fetch(WbRequestDTO $requestDTO): array
|
||||
{
|
||||
$query = [
|
||||
'dateFrom' => $requestDTO->dateFrom,
|
||||
'page' => $requestDTO->page,
|
||||
'limit' => $requestDTO->limit,
|
||||
'key' => $requestDTO->endpoint->key(),
|
||||
];
|
||||
|
||||
if ($requestDTO->dateTo !== null) {
|
||||
$query['dateTo'] = $requestDTO->dateTo;
|
||||
}
|
||||
|
||||
try {
|
||||
$response = Http::timeout(30)
|
||||
->retry(3, 500)
|
||||
->acceptJson()
|
||||
->get(
|
||||
$requestDTO->endpoint->url(),
|
||||
$query
|
||||
);
|
||||
|
||||
$response->throw();
|
||||
} catch (Throwable $e) {
|
||||
throw new WbServiceException(
|
||||
'WB API request failed: ' . $e->getMessage(),
|
||||
previous: $e
|
||||
);
|
||||
}
|
||||
|
||||
return $response->json();
|
||||
}
|
||||
}
|
||||
28
laravel/app/Services/WbService/WbSyncFactory.php
Normal file
28
laravel/app/Services/WbService/WbSyncFactory.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService;
|
||||
|
||||
use App\Contracts\WbSyncFactoryInterface;
|
||||
use App\Contracts\WbSyncInterface;
|
||||
use App\Enums\WbEndpoint;
|
||||
use App\Exceptions\WbServiceException;
|
||||
|
||||
final readonly class WbSyncFactory implements WbSyncFactoryInterface
|
||||
{
|
||||
public function __construct(
|
||||
/** @var array<string, WbSyncInterface> */
|
||||
private array $services
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws WbServiceException
|
||||
*/
|
||||
public function make(WbEndpoint $type): WbSyncInterface
|
||||
{
|
||||
return $this->services[$type->name]
|
||||
?? throw new WbServiceException("unknown sync type $type->name");
|
||||
}
|
||||
}
|
||||
213
laravel/app/Services/WbService/WbSyncManager.php
Normal file
213
laravel/app/Services/WbService/WbSyncManager.php
Normal file
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Services\WbService;
|
||||
|
||||
use App\Contracts\WbSyncManagerInterface;
|
||||
use App\Enums\SyncStatus;
|
||||
use App\Enums\WbEndpoint;
|
||||
use App\Jobs\WbSyncJob;
|
||||
use App\Models\SyncState;
|
||||
use Illuminate\Support\Facades\Bus;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Throwable;
|
||||
|
||||
final readonly class WbSyncManager implements WbSyncManagerInterface
|
||||
{
|
||||
/**
|
||||
* @throws Throwable
|
||||
*/
|
||||
public function start(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo = null
|
||||
): void {
|
||||
$now = now();
|
||||
|
||||
DB::transaction(function () use ($endpoint, $dateFrom, $dateTo, $now) {
|
||||
$sync = SyncState::query()
|
||||
->where('entity', $endpoint->name)
|
||||
->where('date_from', $dateFrom)
|
||||
->when(
|
||||
$dateTo === null,
|
||||
fn($q) => $q->whereNull('date_to'),
|
||||
fn($q) => $q->where('date_to', $dateTo)
|
||||
)
|
||||
->lockForUpdate()
|
||||
->first();
|
||||
|
||||
if (!$sync) {
|
||||
$sync = SyncState::create([
|
||||
'entity' => $endpoint->name,
|
||||
'date_from' => $dateFrom,
|
||||
'date_to' => $dateTo,
|
||||
'status' => SyncStatus::PENDING,
|
||||
'started_at' => $now,
|
||||
]);
|
||||
|
||||
Log::info('WB sync created', [
|
||||
'id' => $sync->id,
|
||||
'entity' => $endpoint->name,
|
||||
'date_from' => $dateFrom,
|
||||
]);
|
||||
|
||||
WbSyncJob::dispatch($endpoint, $dateFrom, $dateTo, 1);
|
||||
return;
|
||||
}
|
||||
|
||||
if ($sync->status === SyncStatus::SUCCESS) {
|
||||
Log::info('WB sync skipped, already SUCCESS', [
|
||||
'id' => $sync->id,
|
||||
]);
|
||||
return;
|
||||
}
|
||||
|
||||
if ($sync->status === SyncStatus::PENDING) {
|
||||
if ($sync->started_at && $sync->started_at->diffInMinutes($now) < config('wb-sync.timeout')) {
|
||||
Log::info('WB sync already PENDING, skipping', [
|
||||
'id' => $sync->id,
|
||||
]);
|
||||
return;
|
||||
}
|
||||
|
||||
Log::warning('WB sync stuck > wb-sync.timeout, restart', [
|
||||
'id' => $sync->id,
|
||||
'started_at' => $sync->started_at,
|
||||
]);
|
||||
}
|
||||
|
||||
$sync->update([
|
||||
'status' => SyncStatus::PENDING,
|
||||
'started_at' => $now,
|
||||
'updated_at' => $now,
|
||||
]);
|
||||
|
||||
Log::info('WB sync started', ['id' => $sync->id]);
|
||||
|
||||
WbSyncJob::dispatch($endpoint, $dateFrom, $dateTo, 1);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Throwable
|
||||
*/
|
||||
public function handleFirstPage(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo,
|
||||
int $lastPage
|
||||
): void {
|
||||
DB::transaction(function () use ($endpoint, $dateFrom, $dateTo, $lastPage) {
|
||||
$sync = $this->getSyncForUpdate($endpoint, $dateFrom, $dateTo);
|
||||
|
||||
if ($sync->batch_id) {
|
||||
Log::info('WB sync batch already created', [
|
||||
'id' => $sync->id,
|
||||
]);
|
||||
return;
|
||||
}
|
||||
|
||||
$sync->update([
|
||||
'total_pages' => $lastPage,
|
||||
'processed_pages' => 1,
|
||||
]);
|
||||
|
||||
if ($lastPage <= 1) {
|
||||
$this->markSuccess($endpoint, $dateFrom, $dateTo);
|
||||
return;
|
||||
}
|
||||
|
||||
$jobs = [];
|
||||
|
||||
for ($page = 2; $page <= $lastPage; $page++) {
|
||||
$jobs[] = new WbSyncJob(
|
||||
$endpoint,
|
||||
$dateFrom,
|
||||
$dateTo,
|
||||
$page
|
||||
);
|
||||
}
|
||||
|
||||
$batch = Bus::batch($jobs)
|
||||
->then(fn() => $this->markSuccess($endpoint, $dateFrom, $dateTo))
|
||||
->catch(fn() => $this->markFailed($endpoint, $dateFrom, $dateTo))
|
||||
->name("sync-$endpoint->name-$dateFrom")
|
||||
->dispatch();
|
||||
|
||||
$sync->update([
|
||||
'batch_id' => $batch->id,
|
||||
]);
|
||||
|
||||
Log::info('WB batch dispatched', [
|
||||
'batch_id' => $batch->id,
|
||||
'pages' => $lastPage,
|
||||
]);
|
||||
});
|
||||
}
|
||||
|
||||
public function incrementProgress(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): void {
|
||||
$sync = $this->getSyncForUpdate($endpoint, $dateFrom, $dateTo);
|
||||
|
||||
$sync->incrementProcessedPages();
|
||||
|
||||
Log::info('WB progress incremented', [
|
||||
'id' => $sync->id,
|
||||
'processed_pages' => $sync->processed_pages + 1,
|
||||
]);
|
||||
}
|
||||
|
||||
public function markSuccess(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): void {
|
||||
$sync = $this->getSyncForUpdate($endpoint, $dateFrom, $dateTo);
|
||||
|
||||
$sync->update([
|
||||
'status' => SyncStatus::SUCCESS,
|
||||
]);
|
||||
|
||||
Log::info('WB sync success', [
|
||||
'id' => $sync->id,
|
||||
]);
|
||||
}
|
||||
|
||||
public function markFailed(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): void {
|
||||
$sync = $this->getSyncForUpdate($endpoint, $dateFrom, $dateTo);
|
||||
|
||||
$sync->update([
|
||||
'status' => SyncStatus::FAILED,
|
||||
]);
|
||||
|
||||
Log::error('WB sync failed', [
|
||||
'id' => $sync->id,
|
||||
]);
|
||||
}
|
||||
|
||||
private function getSyncForUpdate(
|
||||
WbEndpoint $endpoint,
|
||||
string $dateFrom,
|
||||
?string $dateTo
|
||||
): SyncState {
|
||||
return SyncState::query()
|
||||
->where('entity', $endpoint->name)
|
||||
->where('date_from', $dateFrom)
|
||||
->when(
|
||||
$dateTo === null,
|
||||
fn($q) => $q->whereNull('date_to'),
|
||||
fn($q) => $q->where('date_to', $dateTo)
|
||||
)
|
||||
->lockForUpdate()
|
||||
->firstOrFail();
|
||||
}
|
||||
}
|
||||
18
laravel/artisan
Executable file
18
laravel/artisan
Executable file
@@ -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);
|
||||
18
laravel/bootstrap/app.php
Normal file
18
laravel/bootstrap/app.php
Normal file
@@ -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();
|
||||
2
laravel/bootstrap/cache/.gitignore
vendored
Normal file
2
laravel/bootstrap/cache/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
5
laravel/bootstrap/providers.php
Normal file
5
laravel/bootstrap/providers.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
App\Providers\AppServiceProvider::class,
|
||||
];
|
||||
90
laravel/composer.json
Normal file
90
laravel/composer.json
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"$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.5",
|
||||
"laravel/framework": "^12.0",
|
||||
"laravel/tinker": "^2.10.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-ide-helper": "^3.6",
|
||||
"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 --timeout=0\" \"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
|
||||
}
|
||||
8682
laravel/composer.lock
generated
Normal file
8682
laravel/composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
126
laravel/config/app.php
Normal file
126
laravel/config/app.php
Normal file
@@ -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'),
|
||||
],
|
||||
|
||||
];
|
||||
115
laravel/config/auth.php
Normal file
115
laravel/config/auth.php
Normal file
@@ -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),
|
||||
|
||||
];
|
||||
117
laravel/config/cache.php
Normal file
117
laravel/config/cache.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?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",
|
||||
| "failover", "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',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'driver' => 'failover',
|
||||
'stores' => [
|
||||
'database',
|
||||
'array',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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-'),
|
||||
|
||||
];
|
||||
183
laravel/config/database.php
Normal file
183
laravel/config/database.php
Normal file
@@ -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([
|
||||
(PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \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([
|
||||
(PHP_VERSION_ID >= 80500 ? \Pdo\Mysql::ATTR_SSL_CA : \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' => env('DB_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),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
80
laravel/config/filesystems.php
Normal file
80
laravel/config/filesystems.php
Normal file
@@ -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' => rtrim(env('APP_URL', 'http://localhost'), '/').'/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'),
|
||||
],
|
||||
|
||||
];
|
||||
132
laravel/config/logging.php
Normal file
132
laravel/config/logging.php
Normal file
@@ -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'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
118
laravel/config/mail.php
Normal file
118
laravel/config/mail.php
Normal file
@@ -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'),
|
||||
],
|
||||
|
||||
];
|
||||
129
laravel/config/queue.php
Normal file
129
laravel/config/queue.php
Normal file
@@ -0,0 +1,129 @@
|
||||
<?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",
|
||||
| "deferred", "background", "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,
|
||||
],
|
||||
|
||||
'deferred' => [
|
||||
'driver' => 'deferred',
|
||||
],
|
||||
|
||||
'background' => [
|
||||
'driver' => 'background',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'driver' => 'failover',
|
||||
'connections' => [
|
||||
'database',
|
||||
'deferred',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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',
|
||||
],
|
||||
|
||||
];
|
||||
37
laravel/config/services.php
Normal file
37
laravel/config/services.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?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' => [
|
||||
'key' => env('POSTMARK_API_KEY'),
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'key' => env('RESEND_API_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'),
|
||||
],
|
||||
],
|
||||
];
|
||||
217
laravel/config/session.php
Normal file
217
laravel/config/session.php
Normal file
@@ -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 without 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),
|
||||
|
||||
];
|
||||
14
laravel/config/wb-sync.php
Normal file
14
laravel/config/wb-sync.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'services' => [
|
||||
App\Enums\WbEndpoint::STOCKS->name => App\Services\WbService\SyncServices\StocksSyncService::class,
|
||||
App\Enums\WbEndpoint::INCOMES->name => App\Services\WbService\SyncServices\IncomesSyncService::class,
|
||||
App\Enums\WbEndpoint::SALES->name => App\Services\WbService\SyncServices\SalesSyncService::class,
|
||||
App\Enums\WbEndpoint::ORDERS->name => App\Services\WbService\SyncServices\OrdersSyncService::class,
|
||||
|
||||
],//
|
||||
'url' => env('WB_URL', 'wb_url'),
|
||||
'key' => env('WB_API_KEY', 'smeni_eto'),
|
||||
'timeout' => 30, // todo стоит убрать?
|
||||
];
|
||||
1
laravel/database/.gitignore
vendored
Normal file
1
laravel/database/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.sqlite*
|
||||
44
laravel/database/factories/UserFactory.php
Normal file
44
laravel/database/factories/UserFactory.php
Normal file
@@ -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')->index();
|
||||
});
|
||||
|
||||
Schema::create('cache_locks', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->string('owner');
|
||||
$table->integer('expiration')->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 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');
|
||||
}
|
||||
};
|
||||
84
laravel/database/migrations/2026_02_13_135452_stocks.php
Normal file
84
laravel/database/migrations/2026_02_13_135452_stocks.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
DB::statement(
|
||||
"
|
||||
CREATE TABLE stocks (
|
||||
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
date DATE NULL,
|
||||
last_change_date DATE NULL,
|
||||
supplier_article VARCHAR(255) NULL,
|
||||
tech_size VARCHAR(255) NULL,
|
||||
barcode VARCHAR(255) NULL,
|
||||
quantity INT NOT NULL DEFAULT 0,
|
||||
is_supply TINYINT(1) NULL,
|
||||
is_realization TINYINT(1) NULL,
|
||||
quantity_full INT NULL,
|
||||
warehouse_name VARCHAR(255) NULL,
|
||||
in_way_to_client INT NULL,
|
||||
in_way_from_client INT NULL,
|
||||
nm_id BIGINT NULL,
|
||||
subject VARCHAR(255) NULL,
|
||||
category VARCHAR(255) NULL,
|
||||
brand VARCHAR(255) NULL,
|
||||
sc_code VARCHAR(255) NULL,
|
||||
price VARCHAR(255) NULL,
|
||||
discount VARCHAR(255) NULL,
|
||||
created_at TIMESTAMP NULL,
|
||||
updated_at TIMESTAMP NULL,
|
||||
|
||||
PRIMARY KEY (id, date),
|
||||
|
||||
INDEX idx_warehouse_date (warehouse_name, date),
|
||||
INDEX idx_nm_id_date (nm_id, date),
|
||||
INDEX idx_barcode_date (barcode, date)
|
||||
|
||||
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
|
||||
|
||||
PARTITION BY RANGE COLUMNS(date) (
|
||||
PARTITION p202602 VALUES LESS THAN ('2026-03-01'),
|
||||
PARTITION p202603 VALUES LESS THAN ('2026-04-01'),
|
||||
PARTITION p202604 VALUES LESS THAN ('2026-05-01'),
|
||||
PARTITION p202605 VALUES LESS THAN ('2026-06-01'),
|
||||
PARTITION p202606 VALUES LESS THAN ('2026-07-01'),
|
||||
PARTITION p202607 VALUES LESS THAN ('2026-08-01'),
|
||||
PARTITION p202608 VALUES LESS THAN ('2026-09-01'),
|
||||
PARTITION p202609 VALUES LESS THAN ('2026-10-01'),
|
||||
PARTITION p202610 VALUES LESS THAN ('2026-11-01'),
|
||||
PARTITION p202611 VALUES LESS THAN ('2026-12-01'),
|
||||
PARTITION p202612 VALUES LESS THAN ('2027-01-01'),
|
||||
PARTITION p202701 VALUES LESS THAN ('2027-02-01'),
|
||||
PARTITION p202702 VALUES LESS THAN ('2027-03-01'),
|
||||
PARTITION p202703 VALUES LESS THAN ('2027-04-01'),
|
||||
PARTITION p202704 VALUES LESS THAN ('2027-05-01'),
|
||||
PARTITION p202705 VALUES LESS THAN ('2027-06-01'),
|
||||
PARTITION p202706 VALUES LESS THAN ('2027-07-01'),
|
||||
PARTITION p202707 VALUES LESS THAN ('2027-08-01'),
|
||||
PARTITION p202708 VALUES LESS THAN ('2027-09-01'),
|
||||
PARTITION p202709 VALUES LESS THAN ('2027-10-01'),
|
||||
PARTITION p202710 VALUES LESS THAN ('2027-11-01'),
|
||||
PARTITION p202711 VALUES LESS THAN ('2027-12-01'),
|
||||
PARTITION p202712 VALUES LESS THAN ('2028-01-01'),
|
||||
PARTITION future VALUES LESS THAN (MAXVALUE)
|
||||
)
|
||||
"
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('stocks');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,36 @@
|
||||
<?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('sync_states', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('entity');
|
||||
$table->timestamp('started_at')->nullable();
|
||||
$table->date('date_from');
|
||||
$table->date('date_to')->nullable();
|
||||
$table->string('status');
|
||||
$table->string('batch_id')->nullable();
|
||||
$table->integer('total_pages')->nullable();
|
||||
$table->integer('processed_pages')->default(0);
|
||||
$table->timestamps();
|
||||
|
||||
$table->unique(['entity', 'date_from', 'date_to']);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('sync_states');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,76 @@
|
||||
<?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
|
||||
{
|
||||
DB::statement(
|
||||
"
|
||||
CREATE TABLE incomes (
|
||||
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
income_id BIGINT NOT NULL,
|
||||
number VARCHAR(255) NULL,
|
||||
date DATE NULL,
|
||||
last_change_date DATE NULL,
|
||||
supplier_article VARCHAR(255) NULL,
|
||||
tech_size VARCHAR(255) NULL,
|
||||
barcode BIGINT NULL,
|
||||
quantity INT NOT NULL DEFAULT 0,
|
||||
total_price VARCHAR(255) NULL,
|
||||
date_close DATE NULL,
|
||||
warehouse_name VARCHAR(255) NULL,
|
||||
nm_id BIGINT NULL,
|
||||
created_at TIMESTAMP NULL,
|
||||
updated_at TIMESTAMP NULL,
|
||||
|
||||
PRIMARY KEY (id, date),
|
||||
|
||||
INDEX idx_warehouse_date (warehouse_name, date),
|
||||
INDEX idx_nm_id_date (nm_id, date),
|
||||
INDEX idx_barcode_date (barcode, date)
|
||||
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
|
||||
|
||||
PARTITION BY RANGE COLUMNS(date) (
|
||||
PARTITION p202602 VALUES LESS THAN ('2026-03-01'),
|
||||
PARTITION p202603 VALUES LESS THAN ('2026-04-01'),
|
||||
PARTITION p202604 VALUES LESS THAN ('2026-05-01'),
|
||||
PARTITION p202605 VALUES LESS THAN ('2026-06-01'),
|
||||
PARTITION p202606 VALUES LESS THAN ('2026-07-01'),
|
||||
PARTITION p202607 VALUES LESS THAN ('2026-08-01'),
|
||||
PARTITION p202608 VALUES LESS THAN ('2026-09-01'),
|
||||
PARTITION p202609 VALUES LESS THAN ('2026-10-01'),
|
||||
PARTITION p202610 VALUES LESS THAN ('2026-11-01'),
|
||||
PARTITION p202611 VALUES LESS THAN ('2026-12-01'),
|
||||
PARTITION p202612 VALUES LESS THAN ('2027-01-01'),
|
||||
PARTITION p202701 VALUES LESS THAN ('2027-02-01'),
|
||||
PARTITION p202702 VALUES LESS THAN ('2027-03-01'),
|
||||
PARTITION p202703 VALUES LESS THAN ('2027-04-01'),
|
||||
PARTITION p202704 VALUES LESS THAN ('2027-05-01'),
|
||||
PARTITION p202705 VALUES LESS THAN ('2027-06-01'),
|
||||
PARTITION p202706 VALUES LESS THAN ('2027-07-01'),
|
||||
PARTITION p202707 VALUES LESS THAN ('2027-08-01'),
|
||||
PARTITION p202708 VALUES LESS THAN ('2027-09-01'),
|
||||
PARTITION p202709 VALUES LESS THAN ('2027-10-01'),
|
||||
PARTITION p202710 VALUES LESS THAN ('2027-11-01'),
|
||||
PARTITION p202711 VALUES LESS THAN ('2027-12-01'),
|
||||
PARTITION p202712 VALUES LESS THAN ('2028-01-01'),
|
||||
PARTITION future VALUES LESS THAN (MAXVALUE)
|
||||
)
|
||||
"
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('incomes');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,80 @@
|
||||
<?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
|
||||
{
|
||||
DB::statement(
|
||||
"
|
||||
CREATE TABLE sales (
|
||||
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
g_number VARCHAR(255) NOT NULL,
|
||||
date DATE NULL,
|
||||
last_change_date DATE NULL,
|
||||
supplier_article VARCHAR(255) NULL,
|
||||
tech_size VARCHAR(255) NULL,
|
||||
barcode BIGINT NULL,
|
||||
total_price VARCHAR(255) NULL,
|
||||
discount_percent TINYINT NULL,
|
||||
is_supply BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
is_realization BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
promo_code_discount VARCHAR(255) NULL,
|
||||
warehouse_name VARCHAR(255) NULL,
|
||||
country_name VARCHAR(255) NULL,
|
||||
oblast_okrug_name VARCHAR(255) NULL,
|
||||
region_name VARCHAR(255) NULL,
|
||||
income_id BIGINT NULL,
|
||||
sale_id VARCHAR(255) NULL,
|
||||
odid BIGINT NULL,
|
||||
spp VARCHAR(10) NULL,
|
||||
for_pay DECIMAL(12,2) NULL,
|
||||
finished_price DECIMAL(12,2) NULL,
|
||||
price_with_disc DECIMAL(12,2) NULL,
|
||||
nm_id BIGINT NULL,
|
||||
subject VARCHAR(255) NULL,
|
||||
category VARCHAR(255) NULL,
|
||||
brand VARCHAR(255) NULL,
|
||||
is_storno BOOLEAN NULL,
|
||||
created_at TIMESTAMP NULL,
|
||||
updated_at TIMESTAMP NULL,
|
||||
|
||||
PRIMARY KEY (id, date),
|
||||
|
||||
INDEX idx_warehouse_date (warehouse_name, date),
|
||||
INDEX idx_nm_id_date (nm_id, date),
|
||||
INDEX idx_barcode_date (barcode, date)
|
||||
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
|
||||
|
||||
PARTITION BY RANGE COLUMNS(date) (
|
||||
PARTITION p202602 VALUES LESS THAN ('2026-03-01'),
|
||||
PARTITION p202603 VALUES LESS THAN ('2026-04-01'),
|
||||
PARTITION p202604 VALUES LESS THAN ('2026-05-01'),
|
||||
PARTITION p202605 VALUES LESS THAN ('2026-06-01'),
|
||||
PARTITION p202606 VALUES LESS THAN ('2026-07-01'),
|
||||
PARTITION p202607 VALUES LESS THAN ('2026-08-01'),
|
||||
PARTITION p202608 VALUES LESS THAN ('2026-09-01'),
|
||||
PARTITION p202609 VALUES LESS THAN ('2026-10-01'),
|
||||
PARTITION p202610 VALUES LESS THAN ('2026-11-01'),
|
||||
PARTITION p202611 VALUES LESS THAN ('2026-12-01'),
|
||||
PARTITION p202612 VALUES LESS THAN ('2027-01-01'),
|
||||
PARTITION p202701 VALUES LESS THAN ('2027-02-01'),
|
||||
PARTITION future VALUES LESS THAN (MAXVALUE)
|
||||
)
|
||||
"
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('sales');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,84 @@
|
||||
<?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
|
||||
{
|
||||
DB::statement(
|
||||
"
|
||||
CREATE TABLE orders (
|
||||
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
g_number VARCHAR(255) NOT NULL,
|
||||
date DATETIME NULL,
|
||||
last_change_date DATE NULL,
|
||||
supplier_article VARCHAR(255) NULL,
|
||||
tech_size VARCHAR(255) NULL,
|
||||
barcode BIGINT NULL,
|
||||
total_price VARCHAR(255) NULL,
|
||||
discount_percent TINYINT NULL,
|
||||
warehouse_name VARCHAR(255) NULL,
|
||||
oblast VARCHAR(255) NULL,
|
||||
income_id BIGINT NULL,
|
||||
odid BIGINT NULL,
|
||||
nm_id BIGINT NULL,
|
||||
subject VARCHAR(255) NULL,
|
||||
category VARCHAR(255) NULL,
|
||||
brand VARCHAR(255) NULL,
|
||||
is_cancel BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
cancel_dt DATETIME NULL,
|
||||
created_at TIMESTAMP NULL,
|
||||
updated_at TIMESTAMP NULL,
|
||||
|
||||
PRIMARY KEY (id, date),
|
||||
|
||||
INDEX idx_warehouse_date (warehouse_name, date),
|
||||
INDEX idx_nm_id_date (nm_id, date),
|
||||
INDEX idx_barcode_date (barcode, date)
|
||||
) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
|
||||
|
||||
PARTITION BY RANGE COLUMNS(date) (
|
||||
PARTITION p202402 VALUES LESS THAN ('2024-03-01'),
|
||||
PARTITION p202403 VALUES LESS THAN ('2024-04-01'),
|
||||
PARTITION p202404 VALUES LESS THAN ('2024-05-01'),
|
||||
PARTITION p202405 VALUES LESS THAN ('2024-06-01'),
|
||||
PARTITION p202406 VALUES LESS THAN ('2024-07-01'),
|
||||
PARTITION p202407 VALUES LESS THAN ('2024-08-01'),
|
||||
PARTITION p202408 VALUES LESS THAN ('2024-09-01'),
|
||||
PARTITION p202409 VALUES LESS THAN ('2024-10-01'),
|
||||
PARTITION p202410 VALUES LESS THAN ('2024-11-01'),
|
||||
PARTITION p202411 VALUES LESS THAN ('2024-12-01'),
|
||||
PARTITION p202412 VALUES LESS THAN ('2025-01-01'),
|
||||
PARTITION p202501 VALUES LESS THAN ('2025-02-01'),
|
||||
PARTITION p202502 VALUES LESS THAN ('2025-03-01'),
|
||||
PARTITION p202503 VALUES LESS THAN ('2025-04-01'),
|
||||
PARTITION p202504 VALUES LESS THAN ('2025-05-01'),
|
||||
PARTITION p202505 VALUES LESS THAN ('2025-06-01'),
|
||||
PARTITION p202506 VALUES LESS THAN ('2025-07-01'),
|
||||
PARTITION p202507 VALUES LESS THAN ('2025-08-01'),
|
||||
PARTITION p202508 VALUES LESS THAN ('2025-09-01'),
|
||||
PARTITION p202509 VALUES LESS THAN ('2025-10-01'),
|
||||
PARTITION p202510 VALUES LESS THAN ('2025-11-01'),
|
||||
PARTITION p202511 VALUES LESS THAN ('2025-12-01'),
|
||||
PARTITION p202512 VALUES LESS THAN ('2026-01-01'),
|
||||
PARTITION p202601 VALUES LESS THAN ('2026-02-01'),
|
||||
PARTITION p202602 VALUES LESS THAN ('2026-03-01'),
|
||||
PARTITION future VALUES LESS THAN (MAXVALUE)
|
||||
)
|
||||
"
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('orders');
|
||||
}
|
||||
};
|
||||
25
laravel/database/seeders/DatabaseSeeder.php
Normal file
25
laravel/database/seeders/DatabaseSeeder.php
Normal file
@@ -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',
|
||||
]);
|
||||
}
|
||||
}
|
||||
17
laravel/package.json
Normal file
17
laravel/package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"$schema": "https://www.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"
|
||||
}
|
||||
}
|
||||
35
laravel/phpunit.xml
Normal file
35
laravel/phpunit.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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="BROADCAST_CONNECTION" value="null"/>
|
||||
<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>
|
||||
25
laravel/public/.htaccess
Normal file
25
laravel/public/.htaccess
Normal file
@@ -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
laravel/public/favicon.ico
Normal file
0
laravel/public/favicon.ico
Normal file
20
laravel/public/index.php
Normal file
20
laravel/public/index.php
Normal file
@@ -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());
|
||||
2
laravel/public/robots.txt
Normal file
2
laravel/public/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
||||
11
laravel/resources/css/app.css
Normal file
11
laravel/resources/css/app.css
Normal file
@@ -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';
|
||||
}
|
||||
1
laravel/resources/js/app.js
Normal file
1
laravel/resources/js/app.js
Normal file
@@ -0,0 +1 @@
|
||||
import './bootstrap';
|
||||
4
laravel/resources/js/bootstrap.js
vendored
Normal file
4
laravel/resources/js/bootstrap.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
import axios from 'axios';
|
||||
window.axios = axios;
|
||||
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
277
laravel/resources/views/welcome.blade.php
Normal file
277
laravel/resources/views/welcome.blade.php
Normal file
File diff suppressed because one or more lines are too long
10
laravel/routes/console.php
Normal file
10
laravel/routes/console.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
|
||||
Schedule::command('sync:all')->dailyAt('00:10');
|
||||
7
laravel/routes/web.php
Normal file
7
laravel/routes/web.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
4
laravel/storage/app/.gitignore
vendored
Normal file
4
laravel/storage/app/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*
|
||||
!private/
|
||||
!public/
|
||||
!.gitignore
|
||||
2
laravel/storage/app/private/.gitignore
vendored
Normal file
2
laravel/storage/app/private/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
laravel/storage/app/public/.gitignore
vendored
Normal file
2
laravel/storage/app/public/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
9
laravel/storage/framework/.gitignore
vendored
Normal file
9
laravel/storage/framework/.gitignore
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
compiled.php
|
||||
config.php
|
||||
down
|
||||
events.scanned.php
|
||||
maintenance.php
|
||||
routes.php
|
||||
routes.scanned.php
|
||||
schedule-*
|
||||
services.json
|
||||
3
laravel/storage/framework/cache/.gitignore
vendored
Normal file
3
laravel/storage/framework/cache/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*
|
||||
!data/
|
||||
!.gitignore
|
||||
2
laravel/storage/framework/cache/data/.gitignore
vendored
Normal file
2
laravel/storage/framework/cache/data/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
laravel/storage/framework/sessions/.gitignore
vendored
Normal file
2
laravel/storage/framework/sessions/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
laravel/storage/framework/testing/.gitignore
vendored
Normal file
2
laravel/storage/framework/testing/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
laravel/storage/framework/views/.gitignore
vendored
Normal file
2
laravel/storage/framework/views/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
2
laravel/storage/logs/.gitignore
vendored
Normal file
2
laravel/storage/logs/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
19
laravel/tests/Feature/ExampleTest.php
Normal file
19
laravel/tests/Feature/ExampleTest.php
Normal file
@@ -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);
|
||||
}
|
||||
}
|
||||
10
laravel/tests/TestCase.php
Normal file
10
laravel/tests/TestCase.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Tests;
|
||||
|
||||
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||||
|
||||
abstract class TestCase extends BaseTestCase
|
||||
{
|
||||
//
|
||||
}
|
||||
16
laravel/tests/Unit/ExampleTest.php
Normal file
16
laravel/tests/Unit/ExampleTest.php
Normal file
@@ -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);
|
||||
}
|
||||
}
|
||||
18
laravel/vite.config.js
Normal file
18
laravel/vite.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
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(),
|
||||
],
|
||||
server: {
|
||||
watch: {
|
||||
ignored: ['**/storage/framework/views/**'],
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user