Files
sam-manage/app/Providers/AppServiceProvider.php
김보곤 d1911265f4 feat: [approvals] 결재 알림 뱃지 시스템 구현
- 사이드바: 결재 대기/기안함/참조함 메뉴에 빨간 뱃지 표시
- 헤더: 알림 벨 클릭 시 결재 대기 목록 드롭다운 표시
- 드롭다운: 제목/기안자/양식/긴급 여부/일시 표시, 클릭 시 상세 이동
- 뱃지 건수 60초 자동 갱신 (API: /api/admin/approvals/badge-counts)
2026-02-28 15:08:57 +09:00

91 lines
3.1 KiB
PHP

<?php
namespace App\Providers;
use App\Models\Boards\File;
use App\Models\Boards\Post;
use App\Models\Tenants\Department;
use App\Models\User;
use App\Observers\FileObserver;
use App\Services\ApprovalService;
use App\Services\SidebarMenuService;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
// SidebarMenuService 싱글턴 등록
$this->app->singleton(SidebarMenuService::class);
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
// File Observer: 파일 생성/삭제 시 테넌트 저장소 사용량 자동 업데이트
File::observe(FileObserver::class);
// Morph Map: Polymorphic 관계 모델 등록
Relation::enforceMorphMap([
'user' => User::class,
'post' => Post::class,
'department' => Department::class,
]);
// 일회성 메뉴명 변경: 협력사관리 → 거래처 관리
if (! Cache::has('menu_rename_partner_to_vendor')) {
$updated = DB::table('menus')
->where('tenant_id', 1)
->whereIn('name', ['협력사관리', '협력사 관리'])
->update(['name' => '거래처 관리']);
if ($updated > 0) {
Cache::put('menu_rename_partner_to_vendor', true, now()->addYear());
}
}
// 사이드바에 메뉴 데이터 전달
View::composer('partials.sidebar', function ($view) {
$menuService = app(SidebarMenuService::class);
$menusBySection = $menuService->getMenusBySection();
// 결재 뱃지 건수
$menuBadges = ['byRoute' => [], 'byUrl' => []];
if (auth()->check()) {
try {
$counts = app(ApprovalService::class)->getBadgeCounts(auth()->id());
$menuBadges = [
'byRoute' => [
'approvals.pending' => $counts['pending'],
'approvals.drafts' => $counts['draft'],
'approvals.references' => $counts['reference_unread'],
],
'byUrl' => [
'/approval-mgmt/pending' => $counts['pending'],
'/approval-mgmt/drafts' => $counts['draft'],
'/approval-mgmt/references' => $counts['reference_unread'],
],
];
} catch (\Throwable $e) {
// 테이블 미존재 등 예외 무시
}
}
$view->with([
'mainMenus' => $menusBySection['main'],
'toolsMenus' => $menusBySection['tools'],
'labsMenus' => $menusBySection['labs'],
'menuBadges' => $menuBadges,
]);
});
}
}