芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/app/Http/Controllers/AccountBaseController.php
runningInConsole() || config('app.seeding'))) { $this->currentRouteName = request()->route()->getName(); } $this->middleware(function ($request, $next) { abort_403(!user()->admin_approval && request()->ajax()); if (!user()->admin_approval && Route::currentRouteName() != 'account_unverified') { return redirect(route('account_unverified')); } $this->languageSettings = language_setting(); $this->adminTheme = admin_theme(); $this->pushSetting = push_setting(); $this->smtpSetting = smtp_setting(); $this->pusherSettings = pusher_settings(); $this->invoiceSetting = invoice_setting(); App::setLocale(user()->locale); Carbon::setLocale(user()->locale); setlocale(LC_TIME, user()->locale . '_' . mb_strtoupper($this->company->locale)); $this->user = user(); $this->modules = user_modules(); $this->unreadNotificationCount = count($this->user->unreadNotifications); if ((in_array('messages', user_modules()))) { $this->unreadMessagesCount = UserChat::where('to', user()->id) ->where('message_seen', 'no') ->count(); } $this->stickyNotes = $this->user->sticky; $this->viewTimelogPermission = user()->permission('view_timelogs'); $this->activeTimerCount = ProjectTimeLog::whereNull('end_time') ->join('users', 'users.id', 'project_time_logs.user_id') ->select('project_time_logs.id'); if ($this->viewTimelogPermission != 'all' && manage_active_timelogs() != 'all') { $this->activeTimerCount->where('project_time_logs.user_id', $this->user->id); } $this->activeTimerCount = $this->activeTimerCount->count(); $this->worksuitePlugins = worksuite_plugins(); $this->checkListTotal = GlobalSetting::CHECKLIST_TOTAL; if (in_array('admin', user_roles())) { $this->appTheme = admin_theme(); $this->checkListCompleted = GlobalSetting::checkListCompleted(); } else if (in_array('client', user_roles())) { $this->appTheme = client_theme(); } else { $this->appTheme = employee_theme(); } $this->sidebarUserPermissions = sidebar_user_perms(); return $next($request); }); } public function logProjectActivity($projectId, $text) { $activity = new ProjectActivity(); $activity->project_id = $projectId; $activity->activity = $text; $activity->save(); } public function logUserActivity($userId, $text) { $activity = new UserActivity(); $activity->user_id = $userId; $activity->activity = $text; $activity->save(); } public function logTaskActivity($taskID, $userID, $text, $boardColumnId = null, $subTaskId = null) { $activity = new TaskHistory(); $activity->task_id = $taskID; if (!is_null($subTaskId)) { $activity->sub_task_id = $subTaskId; } $activity->user_id = $userID; $activity->details = $text; if (!is_null($boardColumnId)) { $activity->board_column_id = $boardColumnId; } $activity->save(); } public function triggerPusher($channel, $event, $data) { if ($this->pusherSettings->status) { $pusher = new Pusher($this->pusherSettings->pusher_app_key, $this->pusherSettings->pusher_app_secret, $this->pusherSettings->pusher_app_id, array('cluster' => $this->pusherSettings->pusher_cluster, 'useTLS' => $this->pusherSettings->force_tls)); $pusher->trigger($channel, $event, $data); } } }