Compare commits
8 Commits
fea885f6cf
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
380ebb283e | ||
|
|
acd3298c61 | ||
|
|
733607493a | ||
|
|
8bd35c425d | ||
|
|
5ad61853b4 | ||
|
|
272010d738 | ||
|
|
9e88de9902 | ||
|
|
fa14e752ac |
18
.drone.yml
18
.drone.yml
@@ -3,27 +3,13 @@ type: docker
|
|||||||
name: bogazici-api
|
name: bogazici-api
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
branch:
|
branch:
|
||||||
- develop
|
|
||||||
- test
|
- test
|
||||||
- main
|
- main
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: laravel-check
|
|
||||||
image: php:8.4-cli
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- develop
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y git unzip curl libzip-dev libicu-dev default-mysql-client
|
|
||||||
- docker-php-ext-install pdo_mysql zip intl
|
|
||||||
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
||||||
- cp .env.example .env || true
|
|
||||||
- composer install --no-interaction --prefer-dist --optimize-autoloader
|
|
||||||
- php artisan key:generate --force || true
|
|
||||||
- php artisan optimize:clear || true
|
|
||||||
- php artisan test || true
|
|
||||||
|
|
||||||
- name: deploy-test
|
- name: deploy-test
|
||||||
image: appleboy/drone-ssh
|
image: appleboy/drone-ssh
|
||||||
when:
|
when:
|
||||||
|
|||||||
131
README.md
131
README.md
@@ -1,59 +1,112 @@
|
|||||||
<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>
|
# Boğaziçi Denizcilik API
|
||||||
|
|
||||||
<p align="center">
|
Boğaziçi Denizcilik kurumsal web sitesi ve yönetim paneli için geliştirilmiş REST API backend uygulamasıdır.
|
||||||
<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
|
## Teknoloji
|
||||||
|
|
||||||
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:
|
- **PHP** 8.4 / **Laravel** 12
|
||||||
|
- **MySQL** (Eloquent ORM)
|
||||||
|
- **Laravel Sanctum** — API token tabanlı kimlik doğrulama
|
||||||
|
- **Spatie Permission** — Rol ve yetki yönetimi (RBAC)
|
||||||
|
- **Spatie ActivityLog** — Model değişiklik takibi
|
||||||
|
- **L5-Swagger** — OpenAPI/Swagger API dokümantasyonu
|
||||||
|
- **Pest** 4 / **PHPUnit** 12 — Test
|
||||||
|
- **Laravel Pint** — Kod formatlama
|
||||||
|
- **Docker** + **Apache** — Konteyner tabanlı deployment
|
||||||
|
- **Drone CI** — CI/CD pipeline
|
||||||
|
|
||||||
- [Simple, fast routing engine](https://laravel.com/docs/routing).
|
## Mimari
|
||||||
- [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.
|
Proje **Repository + DTO + Action** pattern'i kullanır:
|
||||||
|
|
||||||
## Learning Laravel
|
```
|
||||||
|
app/
|
||||||
|
├── Actions/ # İş mantığı (Create, Update, Delete)
|
||||||
|
├── DTOs/ # Veri transfer nesneleri
|
||||||
|
├── Http/
|
||||||
|
│ ├── Controllers/
|
||||||
|
│ │ ├── Api/Admin/ # Yönetim paneli API (auth gerekli)
|
||||||
|
│ │ └── Api/V1/ # Public API v1
|
||||||
|
│ ├── Requests/ # Form doğrulama
|
||||||
|
│ └── Resources/ # API response dönüştürücüler
|
||||||
|
├── Models/ # Eloquent modeller
|
||||||
|
├── Repositories/ # Veri erişim katmanı (Contracts + Eloquent)
|
||||||
|
└── Concerns/ # Tekrar kullanılabilir trait'ler
|
||||||
|
```
|
||||||
|
|
||||||
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.
|
## API Yapısı
|
||||||
|
|
||||||
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.
|
### Public API (`/api/v1`)
|
||||||
|
|
||||||
## Laravel Sponsors
|
| Endpoint | Açıklama |
|
||||||
|
|----------|----------|
|
||||||
|
| `GET /categories` | Kurs kategorileri |
|
||||||
|
| `GET /courses` | Kurslar (filtreleme, arama, sayfalama) |
|
||||||
|
| `GET /schedules` | Kurs programları |
|
||||||
|
| `GET /announcements` | Duyurular |
|
||||||
|
| `GET /hero-slides` | Anasayfa slider |
|
||||||
|
| `GET /faqs` | Sıkça sorulan sorular |
|
||||||
|
| `GET /menus/{location}` | Menüler |
|
||||||
|
| `GET /pages/{slug}` | Statik sayfalar |
|
||||||
|
| `GET /stories` | Başarı hikayeleri |
|
||||||
|
| `GET /settings` | Site ayarları |
|
||||||
|
| `GET /guide-cards` | Eğitim rehber kartları |
|
||||||
|
| `GET /sitemap-data` | SEO sitemap verisi |
|
||||||
|
| `POST /leads` | İletişim formu (rate limited) |
|
||||||
|
| `POST /comments` | Yorum gönderimi (rate limited) |
|
||||||
|
|
||||||
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).
|
### Admin API (`/api/admin`)
|
||||||
|
|
||||||
### Premium Partners
|
Sanctum token ile korunan yönetim endpointleri:
|
||||||
|
|
||||||
- **[Vehikl](https://vehikl.com)**
|
- **Kimlik doğrulama:** `login`, `logout`, `me`
|
||||||
- **[Tighten Co.](https://tighten.co)**
|
- **İçerik yönetimi:** Kurslar, kategoriler, programlar, duyurular, sayfalar, slider, FAQ, hikayeler
|
||||||
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
|
- **Kullanıcı yönetimi:** Kullanıcılar, roller, yetkiler
|
||||||
- **[64 Robots](https://64robots.com)**
|
- **Sistem:** Ayarlar, dosya yükleme, önizleme tokenları, önbellek temizleme
|
||||||
- **[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
|
API dokümantasyonu: `/api/documentation` (Swagger UI)
|
||||||
|
|
||||||
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
|
## Kurulum
|
||||||
|
|
||||||
## Code of Conduct
|
```bash
|
||||||
|
# Bağımlılıkları yükle
|
||||||
|
composer install
|
||||||
|
npm install
|
||||||
|
|
||||||
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).
|
# Ortam dosyasını hazırla
|
||||||
|
cp .env.example .env
|
||||||
|
php artisan key:generate
|
||||||
|
|
||||||
## Security Vulnerabilities
|
# Veritabanını oluştur ve seed et
|
||||||
|
php artisan migrate --seed
|
||||||
|
|
||||||
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.
|
# Geliştirme sunucusu (Laravel Herd ile)
|
||||||
|
# Site otomatik olarak https://bogazici-api.test adresinde erişilebilir
|
||||||
|
```
|
||||||
|
|
||||||
## License
|
## Geliştirme
|
||||||
|
|
||||||
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
|
```bash
|
||||||
|
# Testleri çalıştır
|
||||||
|
composer test
|
||||||
|
|
||||||
|
# Belirli bir testi çalıştır
|
||||||
|
php artisan test --compact --filter=testName
|
||||||
|
|
||||||
|
# Kod formatlama
|
||||||
|
vendor/bin/pint --dirty
|
||||||
|
|
||||||
|
# API route listesi
|
||||||
|
php artisan route:list --path=api
|
||||||
|
```
|
||||||
|
|
||||||
|
## Deployment
|
||||||
|
|
||||||
|
Drone CI ile otomatik deployment yapılır:
|
||||||
|
|
||||||
|
| Branch | Ortam | Yol |
|
||||||
|
|--------|-------|-----|
|
||||||
|
| `test` | Test | `/opt/projects/bogazici/corporate-api/test/api` |
|
||||||
|
| `main` | Production | `/opt/projects/bogazici/corporate-api/prod/api` |
|
||||||
|
|
||||||
|
Deployment Docker container içinde çalışır ve `scripts/deploy-test.sh` / `scripts/deploy-prod.sh` scriptleri kullanılır.
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ return [
|
|||||||
env('FRONTEND_URL', 'http://localhost:3000'),
|
env('FRONTEND_URL', 'http://localhost:3000'),
|
||||||
env('ADMIN_URL', 'http://localhost:3001'),
|
env('ADMIN_URL', 'http://localhost:3001'),
|
||||||
'http://localhost:5173',
|
'http://localhost:5173',
|
||||||
|
'https://admin.test.bogazicidenizcilik.com',
|
||||||
|
'https://test.bogazicidenizcilik.com',
|
||||||
],
|
],
|
||||||
|
|
||||||
'allowed_origins_patterns' => [],
|
'allowed_origins_patterns' => [],
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
|
name: bogazici-api-prod
|
||||||
|
|
||||||
services:
|
services:
|
||||||
bdc-api-prod:
|
bdc-api-prod:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
container_name: bdc-api-prod
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/var/www/html
|
- ./:/var/www/html
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
container_name: bdc-api-test
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- ./:/var/www/html
|
- ./:/var/www/html
|
||||||
|
|||||||
@@ -15,11 +15,10 @@ cd "$PROJECT_DIR"
|
|||||||
|
|
||||||
git config --global --add safe.directory "$PROJECT_DIR" || true
|
git config --global --add safe.directory "$PROJECT_DIR" || true
|
||||||
|
|
||||||
sudo chown -R "$USER":www-data storage bootstrap/cache 2>/dev/null || true
|
find storage -type d -exec chmod 2775 {} \; 2>/dev/null || true
|
||||||
sudo find storage -type d -exec chmod 2775 {} \; 2>/dev/null || true
|
find storage -type f -exec chmod 664 {} \; 2>/dev/null || true
|
||||||
sudo find storage -type f -exec chmod 664 {} \; 2>/dev/null || true
|
find bootstrap/cache -type d -exec chmod 2775 {} \; 2>/dev/null || true
|
||||||
sudo find bootstrap/cache -type d -exec chmod 2775 {} \; 2>/dev/null || true
|
find bootstrap/cache -type f -exec chmod 664 {} \; 2>/dev/null || true
|
||||||
sudo find bootstrap/cache -type f -exec chmod 664 {} \; 2>/dev/null || true
|
|
||||||
|
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git checkout "$BRANCH"
|
git checkout "$BRANCH"
|
||||||
@@ -38,15 +37,29 @@ if ! grep -q '^APP_KEY=base64:' .env; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sudo mkdir -p "$UPLOADS_DIR"/{images,videos,hero-slides,settings,pages,courses,announcements,categories}
|
|
||||||
sudo chown -R "$USER":www-data "$UPLOADS_DIR" 2>/dev/null || true
|
mkdir -p "$UPLOADS_DIR"
|
||||||
sudo find "$UPLOADS_DIR" -type d -exec chmod 2775 {} \; 2>/dev/null || true
|
chmod 2775 "$UPLOADS_DIR" 2>/dev/null || true
|
||||||
sudo find "$UPLOADS_DIR" -type f -exec chmod 664 {} \; 2>/dev/null || true
|
|
||||||
|
docker rm -f bogazici-api-prod-bdc-api-prod-1 2>/dev/null || true
|
||||||
|
docker rm -f bdc-api-prod 2>/dev/null || true
|
||||||
|
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" down --remove-orphans || true
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" down --remove-orphans || true
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" up -d --build
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" up -d --build
|
||||||
|
|
||||||
sleep 5
|
echo "⏳ Container hazır olması bekleniyor..."
|
||||||
|
for i in {1..30}; do
|
||||||
|
if docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" ps --status running | grep -q "$CONTAINER"; then
|
||||||
|
echo "✅ Container ayakta"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if [ "$i" -eq 30 ]; then
|
||||||
|
echo "❌ HATA: Container zamanında ayağa kalkmadı"
|
||||||
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" logs --tail=100
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" composer install --no-interaction --prefer-dist --optimize-autoloader --no-dev
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" composer install --no-interaction --prefer-dist --optimize-autoloader --no-dev
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" php artisan optimize:clear
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" php artisan optimize:clear
|
||||||
|
|||||||
@@ -37,14 +37,29 @@ if ! grep -q '^APP_KEY=base64:' .env; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p "$UPLOADS_DIR"/{images,videos,hero-slides,settings,pages,courses,announcements,categories}
|
mkdir -p "$UPLOADS_DIR"
|
||||||
find "$UPLOADS_DIR" -type d -exec chmod 2775 {} \; 2>/dev/null || true
|
chmod 2775 "$UPLOADS_DIR" 2>/dev/null || true
|
||||||
find "$UPLOADS_DIR" -type f -exec chmod 664 {} \; 2>/dev/null || true
|
|
||||||
|
docker rm -f bogazici-api-test-bdc-api-test-1 2>/dev/null || true
|
||||||
|
docker rm -f bdc-api-test 2>/dev/null || true
|
||||||
|
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" down --remove-orphans || true
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" down --remove-orphans || true
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" up -d --build
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" up -d --build
|
||||||
|
|
||||||
sleep 5
|
|
||||||
|
echo "⏳ Container hazır olması bekleniyor..."
|
||||||
|
for i in {1..30}; do
|
||||||
|
if docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" ps --status running | grep -q "$CONTAINER"; then
|
||||||
|
echo "✅ Container ayakta"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if [ "$i" -eq 30 ]; then
|
||||||
|
echo "❌ HATA: Container zamanında ayağa kalkmadı"
|
||||||
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" logs --tail=100
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" composer install --no-interaction --prefer-dist --optimize-autoloader
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" composer install --no-interaction --prefer-dist --optimize-autoloader
|
||||||
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" php artisan optimize:clear
|
docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" exec -T "$CONTAINER" php artisan optimize:clear
|
||||||
|
|||||||
Reference in New Issue
Block a user