⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dalily.dev-unit.com
/
app
/
Models
/
Setting
/
View File Name :
SocialAuthSetting.php
<?php /* * LaraClassifier - Classified Ads Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com * Author: Mayeul Akpovi (BeDigit - https://bedigit.com) * * LICENSE * ------- * This software is provided under a license agreement and may only be used or copied * in accordance with its terms, including the inclusion of the above copyright notice. * As this software is sold exclusively on CodeCanyon, * please review the full license details here: https://codecanyon.net/licenses/standard */ namespace App\Models\Setting; /* * settings.social_auth.option */ use App\Services\Auth\App\Helpers\SocialLogin\SocialLoginButton; class SocialAuthSetting { public static function getValues($value, $disk) { // Settings from Old versions $isSocialAuthEnabled = isOldSocialAuthEnabled(null, $value); $isFacebookEnabled = isOldSocialAuthEnabled('facebook', $value); $isLinkedInEnabled = isOldSocialAuthEnabled('linkedin', $value); $isTwitterOauth2Enabled = isOldSocialAuthEnabled('twitterOauth2', $value); $isTwitterOauth1Enabled = isOldSocialAuthEnabled('twitterOauth1', $value); $isGoogleEnabled = isOldSocialAuthEnabled('google', $value); if (empty($value)) { $value['social_auth_enabled'] = $isSocialAuthEnabled; $value['facebook_enabled'] = $isFacebookEnabled; $value['linkedin_enabled'] = $isLinkedInEnabled; $value['twitter_oauth_2_enabled'] = $isTwitterOauth2Enabled; $value['twitter_oauth_1_enabled'] = $isTwitterOauth1Enabled; $value['google_enabled'] = $isGoogleEnabled; } else { if (!array_key_exists('social_auth_enabled', $value)) { $value['social_auth_enabled'] = $isSocialAuthEnabled; } if (!array_key_exists('facebook_enabled', $value)) { $value['facebook_enabled'] = $isFacebookEnabled; } if (!array_key_exists('linkedin_enabled', $value)) { $value['linkedin_enabled'] = $isLinkedInEnabled; } if (!array_key_exists('twitter_oauth_2_enabled', $value)) { $value['twitter_oauth_2_enabled'] = $isTwitterOauth2Enabled; } if (!array_key_exists('twitter_oauth_1_enabled', $value)) { $value['twitter_oauth_1_enabled'] = $isTwitterOauth1Enabled; } if (!array_key_exists('google_enabled', $value)) { $value['google_enabled'] = $isGoogleEnabled; } } return $value; } public static function setValues($value, $setting) { return $value; } public static function getFields($diskName): array { $baseUrl = config('app.url'); $facebookInfo = trans('admin.facebook_oauth_info', ['baseUrl' => $baseUrl]); $linkedinInfo = trans('admin.linkedin_oauth_info', ['baseUrl' => $baseUrl]); $twitterOauth2Info = trans('admin.twitter_oauth_2_info', ['baseUrl' => $baseUrl]); $twitterOauth1Info = trans('admin.twitter_oauth_1_info', ['baseUrl' => $baseUrl]); $googleInfo = trans('admin.google_oauth_info', ['baseUrl' => $baseUrl]); if (config('plugins.domainmapping.installed')) { $facebookInfo .= trans('admin.facebook_oauth_domainmapping'); $linkedinInfo .= trans('admin.linkedin_oauth_domainmapping'); $twitterOauth2Info .= trans('admin.twitter_oauth_2_domainmapping'); $twitterOauth1Info .= trans('admin.twitter_oauth_1_domainmapping'); $googleInfo .= trans('admin.google_oauth_domainmapping'); } $twitterOauth2Info .= trans('admin.twitter_oauth_2_note'); $twitterOauth1Info .= trans('admin.twitter_oauth_1_note'); $facebookInfo = trans('admin.card_light_inverse', ['content' => $facebookInfo]); $linkedinInfo = trans('admin.card_light_inverse', ['content' => $linkedinInfo]); $twitterOauth2Info = trans('admin.card_light_inverse', ['content' => $twitterOauth2Info]); $twitterOauth1Info = trans('admin.card_light_inverse', ['content' => $twitterOauth1Info]); $googleInfo = trans('admin.card_light_inverse', ['content' => $googleInfo]); $buttonTypes = SocialLoginButton::all(); $buttonTypes = collect($buttonTypes) ->mapWithKeys(fn ($item, $key) => [$key => $item['label'] ?? $key]) ->toArray(); $fields = []; $fields = array_merge($fields, [ [ 'name' => 'social_auth_enabled', 'label' => trans('admin.social_auth_enabled_label'), 'type' => 'checkbox_switch', 'attributes' => [ 'data-social-network' => 'all', ], 'hint' => trans('admin.social_auth_enabled_hint'), ], ]); $fields = array_merge($fields, [ [ 'name' => 'generate_password', 'label' => trans('admin.social_auth_generate_password_label'), 'type' => 'checkbox_switch', 'hint' => trans('admin.social_auth_generate_password_hint', [ 'settingUrl' => urlGen()->adminUrl('settings/find/mail'), ]), 'wrapper' => [ 'class' => 'col-md-6', ], ], [ 'name' => 'button_type', 'label' => trans('admin.button_type_label'), 'type' => 'select2_from_array', 'options' => $buttonTypes, 'default' => SocialLoginButton::Default->value, 'hint' => trans('admin.button_type_hint'), 'wrapper' => [ 'class' => 'col-md-6', ], ], ]); // facebook $fields = array_merge($fields, [ [ 'name' => 'facebook_title', 'type' => 'custom_html', 'value' => trans('admin.facebook_title'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'facebook_enabled', 'label' => trans('admin.facebook_enabled_label'), 'type' => 'checkbox_switch', 'attributes' => [ 'data-social-network' => 'facebook', ], 'hint' => trans('admin.facebook_enabled_hint'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'facebook_oauth_info', 'type' => 'custom_html', 'value' => $facebookInfo, 'wrapper' => [ 'class' => 'col-md-12 facebook', ], ], [ 'name' => 'facebook_client_id', 'label' => trans('admin.facebook_client_id_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 facebook', ], ], [ 'name' => 'facebook_client_secret', 'label' => trans('admin.facebook_client_secret_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 facebook', ], ], ]); // linkedin $fields = array_merge($fields, [ [ 'name' => 'linkedin_title', 'type' => 'custom_html', 'value' => trans('admin.linkedin_title'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'linkedin_enabled', 'label' => trans('admin.linkedin_enabled_label'), 'type' => 'checkbox_switch', 'attributes' => [ 'data-social-network' => 'linkedin', ], 'hint' => trans('admin.linkedin_enabled_hint'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'linkedin_oauth_info', 'type' => 'custom_html', 'value' => $linkedinInfo, 'wrapper' => [ 'class' => 'col-md-12 linkedin', ], ], [ 'name' => 'linkedin_client_id', 'label' => trans('admin.linkedin_client_id_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 linkedin', ], ], [ 'name' => 'linkedin_client_secret', 'label' => trans('admin.linkedin_client_secret_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 linkedin', ], ], ]); // twitter (OAuth 2.0) $fields = array_merge($fields, [ [ 'name' => 'twitter_oauth_2_title', 'type' => 'custom_html', 'value' => trans('admin.twitter_oauth_2_title'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'twitter_oauth_2_enabled', 'label' => trans('admin.twitter_oauth_2_enabled_label'), 'type' => 'checkbox_switch', 'attributes' => [ 'data-social-network' => 'twitter-oauth-2', ], 'hint' => trans('admin.twitter_oauth_2_enabled_hint'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'twitter_oauth_2_info', 'type' => 'custom_html', 'value' => $twitterOauth2Info, 'wrapper' => [ 'class' => 'col-md-12 twitter-oauth-2', ], ], [ 'name' => 'twitter_oauth_2_client_id', 'label' => trans('admin.twitter_oauth_2_client_id_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 twitter-oauth-2', ], ], [ 'name' => 'twitter_oauth_2_client_secret', 'label' => trans('admin.twitter_oauth_2_client_secret_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 twitter-oauth-2', ], ], ]); // twitter (OAuth 1.0) $fields = array_merge($fields, [ [ 'name' => 'twitter_oauth_1_title', 'type' => 'custom_html', 'value' => trans('admin.twitter_oauth_1_title'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'twitter_oauth_1_enabled', 'label' => trans('admin.twitter_oauth_1_enabled_label'), 'type' => 'checkbox_switch', 'attributes' => [ 'data-social-network' => 'twitter-oauth-1', ], 'hint' => trans('admin.twitter_oauth_1_enabled_hint'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'twitter_oauth_1_info', 'type' => 'custom_html', 'value' => $twitterOauth1Info, 'wrapper' => [ 'class' => 'col-md-12 twitter-oauth-1', ], ], [ 'name' => 'twitter_client_id', 'label' => trans('admin.twitter_client_id_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 twitter-oauth-1', ], ], [ 'name' => 'twitter_client_secret', 'label' => trans('admin.twitter_client_secret_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 twitter-oauth-1', ], ], ]); // google $fields = array_merge($fields, [ [ 'name' => 'google_title', 'type' => 'custom_html', 'value' => trans('admin.google_title'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'google_enabled', 'label' => trans('admin.google_enabled_label'), 'type' => 'checkbox_switch', 'attributes' => [ 'data-social-network' => 'google', ], 'hint' => trans('admin.google_enabled_hint'), 'wrapper' => [ 'class' => 'col-md-12', ], ], [ 'name' => 'google_oauth_info', 'type' => 'custom_html', 'value' => $googleInfo, 'wrapper' => [ 'class' => 'col-md-12 google', ], ], [ 'name' => 'google_client_id', 'label' => trans('admin.google_client_id_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 google', ], ], [ 'name' => 'google_client_secret', 'label' => trans('admin.google_client_secret_label'), 'type' => 'text', 'wrapper' => [ 'class' => 'col-md-6 google', ], ], ]); return addOptionsGroupJavaScript(__NAMESPACE__, __CLASS__, $fields); } }